:root {
    --ink: #303fdc;
    --ink-deep: #161f78;
    --aqua: #40c4d3;
    --aqua-light: #e3f8fa;
    --accent: #40c4d3;
    --accent-soft: #eef0ff;
    --paper: #f7f8ff;
    --white: #ffffff;
    --muted: #5e6688;
    --line: #dfe2f6;
    --section-space: clamp(5rem, 8.8vw, 8rem);
    --page-gutter: clamp(1.25rem, 4vw, 3rem);
    --display: "Aptos", "Segoe UI Variable Display", "Segoe UI", sans-serif;
    --body: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 106.25%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

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

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

h1,
h2,
h3 {
    font-family: var(--display);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

h1 em,
h2 em {
    color: var(--aqua);
    font-family: var(--display);
    font-weight: 400;
}

.shell {
    width: min(1180px, calc(100% - (var(--page-gutter) * 2)));
    margin-inline: auto;
}

.section {
    padding-block: var(--section-space);
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 18px;
    left: 50%;
    display: grid;
    width: min(1180px, calc(100% - (var(--page-gutter) * 2)));
    min-height: 76px;
    padding: 6px 8px 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    margin-inline: auto;
    background: rgba(17, 27, 105, 0.22);
    box-shadow: 0 12px 36px rgba(10, 17, 74, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(-50%);
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    color: var(--white);
    transition: top 320ms ease, background 320ms ease, border-color 320ms ease, box-shadow 320ms ease, opacity 240ms ease;
}

.site-header.is-scrolled {
    top: 10px;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(17, 27, 105, 0.88);
    box-shadow: 0 18px 48px rgba(10, 17, 74, 0.24);
}

.site-header.is-scrolling-down {
    opacity: 0.78;
}

.site-header.is-scrolling-down:hover,
.site-header.is-scrolling-down:focus-within,
.site-header.is-scrolling-down.menu-open {
    opacity: 1;
}

.brand {
    display: inline-flex;
    width: max-content;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.brand-logo {
    width: auto;
    height: 62px;
    object-fit: contain;
    transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand:hover .brand-logo {
    transform: translateY(-2px) rotate(-1deg) scale(1.025);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 30px);
}

.main-nav a,
.header-cta {
    position: relative;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.header-cta {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-self: end;
    padding: 0 17px;
    gap: 8px;
    border-radius: 7px;
    background: var(--accent);
    color: var(--ink-deep);
    transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
    background: #79dce5;
    transform: translateY(-1px);
}

.header-cta-short {
    display: none;
}

.menu-toggle {
    display: none;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 7px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    font: inherit;
}

.menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.menu-toggle-icon {
    position: relative;
    width: 20px;
    height: 14px;
}

.menu-toggle-icon i {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: top 180ms ease, transform 180ms ease;
}

.menu-toggle-icon i:first-child {
    top: 3px;
}

.menu-toggle-icon i:last-child {
    top: 10px;
}

.hero {
    position: relative;
    display: flex;
    min-height: clamp(820px, 100svh, 900px);
    overflow: hidden;
    align-items: center;
    background: var(--ink-deep);
    color: var(--white);
}

.hero-media,
.hero-media img,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media img {
    object-fit: cover;
    object-position: center;
    animation: hero-breathe 18s ease-in-out infinite alternate;
    transform: scale(1.035);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(15, 22, 87, 0.96) 0%, rgba(20, 29, 111, 0.84) 34%, rgba(48, 63, 220, 0.22) 67%, rgba(48, 63, 220, 0.07) 100%),
        linear-gradient(0deg, rgba(15, 22, 87, 0.6) 0%, transparent 36%);
}

.hero-shade::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, transparent 35%, rgba(117, 226, 235, 0.07) 48%, transparent 60%);
    content: "";
    transform: translateX(-110%);
    animation: water-sheen 9s ease-in-out 1.4s infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 66px;
}

.hero-content > * {
    opacity: 0;
    transform: translateY(24px);
    animation: hero-rise 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content > :nth-child(1) { animation-delay: 120ms; }
.hero-content > :nth-child(2) { animation-delay: 240ms; }
.hero-content > :nth-child(3) { animation-delay: 380ms; }
.hero-content > :nth-child(4) { animation-delay: 520ms; }

.eyebrow {
    display: flex;
    margin-bottom: 26px;
    align-items: center;
    gap: 13px;
    color: var(--aqua);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 2px;
    background: currentColor;
    content: "";
}

.eyebrow.light {
    color: #8de4eb;
}

.hero h1 {
    max-width: 820px;
    margin-bottom: 27px;
    font-size: clamp(3rem, 6.15vw, 5.85rem);
    font-weight: 760;
}

.hero h1 em {
    display: block;
    letter-spacing: -0.055em;
}

.hero-intro {
    max-width: 650px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    line-height: 1.62;
}

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

.button {
    display: inline-flex;
    min-height: 54px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    gap: 26px;
    border: 0;
    border-radius: 4px;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
    background: var(--accent);
    color: var(--ink-deep);
}

.button-primary:hover {
    background: #71d5df;
}

.button-ghost {
    background: rgba(255, 255, 255, 0.13);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-proof {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 70px;
    align-items: center;
    gap: 0;
    background: linear-gradient(90deg, rgba(18, 26, 98, 0.42), rgba(48, 63, 220, 0.12));
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-proof span {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 13px;
}

.hero-proof span::before {
    animation: proof-pulse 3.2s ease-in-out infinite;
}

.hero-proof span:nth-child(2)::before { animation-delay: 500ms; }
.hero-proof span:nth-child(3)::before { animation-delay: 1s; }

.hero-proof span::before {
    width: 6px;
    height: 6px;
    border-radius: 40%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(64, 196, 211, 0.18);
    content: "";
}

.page-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 540px;
    padding: 178px 0 96px;
    align-items: flex-end;
    background:
        radial-gradient(circle at 82% 18%, rgba(64, 196, 211, 0.28), transparent 30%),
        linear-gradient(135deg, var(--ink-deep), var(--ink));
    color: var(--white);
}

.page-hero::before {
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 205deg at 70% 42%, transparent, rgba(99, 220, 231, 0.08), transparent 24%);
    content: "";
    animation: slow-current 18s linear infinite;
}

.page-hero > .shell {
    position: relative;
    z-index: 1;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero > .shell > p:last-child {
    opacity: 0;
    transform: translateY(22px);
    animation: hero-rise 720ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-hero h1 { animation-delay: 120ms; }
.page-hero > .shell > p:last-child { animation-delay: 240ms; }

.page-hero > .shell {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: clamp(3rem, 7vw, 6rem);
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 760;
}

.page-hero h1 em {
    color: #8de4eb;
}

.page-hero-copy > p:last-child {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.image-placeholder {
    display: flex;
    min-height: 270px;
    padding: 28px;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
}

.image-placeholder svg {
    margin-bottom: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.image-placeholder span {
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.image-placeholder small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
}

.page-overview {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 8%;
    align-items: start;
}

.overview-heading {
    position: sticky;
    top: 40px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.overview-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 30px;
    background: var(--white);
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(22, 31, 120, 0.04);
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), background 260ms ease, box-shadow 420ms ease;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 58px rgba(22, 31, 120, 0.13);
}

.overview-card::after,
.service-card::after,
.process-list li::after {
    position: absolute;
    inset: 0;
    background: radial-gradient(360px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(64, 196, 211, 0.17), transparent 58%);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}

.overview-card:hover::after,
.service-card:hover::after,
.process-list li:hover::after {
    opacity: 1;
}

.overview-card > span {
    color: var(--aqua);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.overview-card h3 {
    margin: 48px 0 12px;
    font-size: 1.65rem;
}

.overview-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.overview-card-accent {
    background: var(--accent);
    color: var(--ink-deep);
}

.overview-card-accent > span,
.overview-card-accent p {
    color: var(--ink-deep);
}

.contact-page {
    background: var(--paper);
}

.promise {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 10%;
    align-items: end;
}

.section-heading h2,
.process h2,
.faq h2,
.island-section h2,
.clarity h2,
.contact h2 {
    margin-bottom: 0;
    font-size: clamp(2.6rem, 4.6vw, 4.7rem);
    font-weight: 760;
}

.section-heading h2 em,
.process h2 em {
    color: var(--aqua);
}

.promise-copy {
    max-width: 580px;
    color: var(--muted);
    font-size: 1.05rem;
}

.promise-copy .lead {
    color: var(--ink);
    font-size: 1.27rem;
    line-height: 1.55;
}

.service-grid {
    display: grid;
    padding-bottom: var(--section-space);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 220px;
    padding: clamp(1.8rem, 3.2vw, 2.5rem);
    flex-direction: column;
    justify-content: space-between;
    background: #eef0ff;
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 420ms ease;
}

.service-card:hover {
    z-index: 1;
    transform: translateY(-7px) scale(1.012);
    box-shadow: 0 24px 58px rgba(22, 31, 120, 0.16);
}

.service-card-featured {
    min-height: 340px;
    grid-column: 1 / -1;
    background: var(--ink);
    color: var(--white);
}

@media (min-width: 901px) {
    .service-card-featured {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
        gap: clamp(3rem, 7vw, 6.5rem);
        align-items: end;
    }

    .service-card-featured h3 {
        margin-top: clamp(2.75rem, 5vw, 4.75rem);
    }

    .service-card-featured .meter {
        margin: 0 0 0.55rem;
    }
}

.service-card.aqua {
    background: var(--aqua-light);
}

.service-card.coral {
    background: var(--accent-soft);
}

.card-index {
    color: var(--aqua);
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0.16em;
}

.service-card-featured .card-index {
    color: #8de4eb;
}

.service-card h3 {
    max-width: 450px;
    margin: clamp(2rem, 4vw, 3.6rem) 0 16px;
    font-size: clamp(1.7rem, 2.5vw, 2.75rem);
}

.service-card p {
    max-width: 470px;
    margin-bottom: 0;
    color: var(--muted);
}

.service-card-featured p {
    color: rgba(255, 255, 255, 0.7);
}

.meter {
    position: relative;
    display: flex;
    margin-top: 58px;
    align-items: center;
    gap: 18px;
}

.meter-label {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.86rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.meter-line {
    position: relative;
    height: 4px;
    flex: 1;
    background: rgba(255, 255, 255, 0.18);
}

.meter-line i {
    position: absolute;
    top: 50%;
    left: 63%;
    width: 30px;
    height: 30px;
    border: 7px solid var(--aqua);
    border-radius: 50%;
    background: var(--white);
    transform: translate(-50%, -50%);
    animation: meter-travel 4.8s ease-in-out infinite alternate;
}

.island-section {
    padding-block: clamp(5rem, 8vw, 7.2rem);
    background: var(--ink);
    color: var(--white);
}

.island-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
    align-items: end;
}

.island-section h2 em {
    color: #8de4eb;
}

.island-copy > p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.13rem;
}

.island-tags {
    display: grid;
    margin-top: 34px;
    border-block: 1px solid rgba(255, 255, 255, 0.18);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.island-tags span {
    display: flex;
    min-height: 62px;
    padding: 14px 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.25;
}

.island-tags span:first-child {
    padding-left: 0;
    border-left: 0;
}

.island-tags span::before {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border: 2px solid #8de4eb;
    border-radius: 50%;
    content: "";
}

.about {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(3rem, 8vw, 7rem);
    align-items: center;
}

.about-profile {
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 5vw, 4.5rem);
    background: var(--aqua);
}

.about-profile::after {
    position: absolute;
    right: -120px;
    bottom: -210px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(48, 63, 220, 0.12);
    box-shadow: 0 0 0 54px rgba(48, 63, 220, 0.055), 0 0 0 108px rgba(48, 63, 220, 0.035);
    content: "";
    animation: profile-ripple 9s ease-in-out infinite alternate;
}

.about-profile .eyebrow,
.about-profile h2,
.about-name {
    position: relative;
    z-index: 1;
}

.about-profile .eyebrow {
    color: var(--ink-deep);
}

.about-profile h2 {
    margin-bottom: clamp(4rem, 8vw, 7rem);
    font-size: clamp(2.5rem, 4vw, 4.1rem);
    font-weight: 760;
}

.about-profile h2 em {
    color: var(--white);
}

.about-name {
    display: flex;
    flex-direction: column;
}

.about-name strong {
    font-size: 1.12rem;
}

.about-name span {
    margin-top: 3px;
    font-size: 0.8rem;
}

.about-copy {
    max-width: 590px;
}

.about-copy > p {
    color: var(--muted);
}

.about-copy .about-lead {
    margin-bottom: 24px;
    color: var(--ink);
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 700;
    line-height: 1.45;
}

.about-values {
    display: flex;
    margin: 30px 0 34px;
    gap: 9px;
    flex-wrap: wrap;
}

.about-values span {
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--ink);
    font-size: 0.77rem;
    font-weight: 750;
    transition: background 240ms ease, transform 240ms ease;
}

.about-values span:hover {
    background: var(--aqua-light);
    transform: translateY(-3px);
}

.values {
    padding-top: clamp(2.5rem, 4.5vw, 4rem);
}

.values-heading {
    max-width: 720px;
    margin-bottom: clamp(2.5rem, 5vw, 3.6rem);
}

.values-heading > p:last-child {
    max-width: 560px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.values .service-grid {
    padding-bottom: 0;
}

.company {
    padding-block: clamp(5rem, 8vw, 7.2rem);
    background: var(--ink);
    color: var(--white);
}

.company-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: start;
}

.company-intro h2 {
    margin-bottom: 22px;
    font-size: clamp(2.4rem, 4.2vw, 4rem);
    font-weight: 760;
}

.company-intro h2 em {
    color: #8de4eb;
}

.company-intro > p {
    max-width: 460px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
}

.company-facts {
    display: grid;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    grid-template-columns: 1fr 1fr;
}

.company-facts > div {
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.company-facts > div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
}

.company-facts dt {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.company-facts dd {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.process-section {
    --process-accent: #66d8e3;
    --process-line: rgba(141, 228, 235, 0.2);
    position: relative;
    overflow: clip;
    background:
        radial-gradient(circle at 15% 24%, rgba(64, 196, 211, 0.14), transparent 28%),
        linear-gradient(145deg, #11174e 0%, var(--ink-deep) 50%, #202d9a 140%);
    color: var(--white);
}

.process-section::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
    mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
    pointer-events: none;
}

.process-section > .shell {
    position: relative;
    z-index: 1;
}

.process-header {
    max-width: 760px;
    margin: 0 auto clamp(3.5rem, 7vw, 6.5rem);
    text-align: center;
}

.process-header .eyebrow {
    justify-content: center;
    margin-bottom: 22px;
}

.process-header h2 {
    margin-bottom: 24px;
    font-size: clamp(2.7rem, 5.4vw, 5rem);
    font-weight: 760;
}

.process-header h2 em {
    color: var(--process-accent);
}

.process-header > p:last-child {
    max-width: 660px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.08rem;
}

.process-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(290px, 0.85fr);
    gap: clamp(2rem, 6vw, 5.5rem);
    align-items: start;
}

.text-link {
    display: inline-flex;
    padding-bottom: 5px;
    gap: 12px;
    background-image: linear-gradient(var(--accent), var(--accent));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 42px 2px;
    font-weight: 800;
    text-decoration: none;
    transition: background-size 320ms ease, gap 320ms ease;
}

.text-link:hover {
    gap: 18px;
    background-size: 100% 2px;
}

.process-list {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list::before {
    position: absolute;
    top: 42px;
    bottom: 42px;
    left: 0;
    width: 1px;
    background: linear-gradient(transparent, var(--process-accent) 12%, var(--process-accent) 88%, transparent);
    content: "";
    opacity: 0.52;
}

.process-card {
    position: relative;
    overflow: visible;
    display: grid;
    min-height: 168px;
    margin: 0 0 16px 14px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid rgba(141, 228, 235, 0.1);
    border-radius: 10px;
    grid-template-columns: 66px 1fr;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
    opacity: 0.58;
    outline: none;
    transition: opacity 340ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1), border-color 340ms ease, background 340ms ease, box-shadow 340ms ease;
}

.process-card::before {
    position: absolute;
    top: 50%;
    left: -19px;
    width: 9px;
    height: 9px;
    border: 3px solid #15205e;
    border-radius: 50%;
    background: var(--process-accent);
    box-shadow: 0 0 0 5px rgba(102, 216, 227, 0.12);
    content: "";
    transform: translateY(-50%);
    transition: box-shadow 340ms ease, transform 340ms ease;
}

.process-card:hover,
.process-card:focus-visible,
.process-card.is-active,
.process-card.is-complete {
    opacity: 1;
}

.process-card.is-active {
    border-color: rgba(102, 216, 227, 0.62);
    background: linear-gradient(110deg, rgba(64, 196, 211, 0.13), rgba(255, 255, 255, 0.055));
    box-shadow: 0 24px 65px rgba(6, 10, 42, 0.26), inset 0 1px rgba(255, 255, 255, 0.06);
    transform: translateX(7px);
}

.process-card.is-active::before {
    box-shadow: 0 0 0 7px rgba(102, 216, 227, 0.16), 0 0 24px rgba(102, 216, 227, 0.8);
    transform: translateY(-50%) scale(1.16);
}

.process-card.is-complete {
    border-color: rgba(102, 216, 227, 0.26);
    background: rgba(64, 196, 211, 0.055);
}

.step-number {
    padding-top: 6px;
    color: var(--process-accent);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.16em;
}

.process-card h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.process-card p {
    max-width: 590px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.66);
}

.process-tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.process-tags span {
    padding: 5px 10px;
    border: 1px solid rgba(102, 216, 227, 0.24);
    border-radius: 4px;
    background: rgba(102, 216, 227, 0.06);
    color: var(--process-accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process-map {
    position: sticky;
    top: 122px;
}

.process-map-panel {
    position: relative;
    overflow: hidden;
    padding: 34px 32px;
    border: 1px solid rgba(141, 228, 235, 0.2);
    border-radius: 12px;
    background: rgba(7, 12, 42, 0.32);
    box-shadow: 0 28px 70px rgba(6, 10, 42, 0.24);
    backdrop-filter: blur(10px);
}

.process-map-panel::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(141, 228, 235, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141, 228, 235, 0.055) 1px, transparent 1px);
    background-size: 30px 30px;
    content: "";
    pointer-events: none;
}

.process-map ol {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-map ol::before {
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 6px;
    width: 1px;
    background: var(--process-line);
    content: "";
}

.process-map li {
    position: relative;
    display: grid;
    min-height: 54px;
    padding-left: 30px;
    align-items: center;
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.69rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 300ms ease;
}

.process-dot {
    position: absolute;
    z-index: 1;
    left: 0;
    width: 13px;
    height: 13px;
    border: 1px solid rgba(141, 228, 235, 0.36);
    border-radius: 50%;
    background: #10184e;
    transition: border-color 300ms ease, background 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.process-map li.is-complete,
.process-map li.is-active {
    color: rgba(255, 255, 255, 0.88);
}

.process-map li.is-complete .process-dot,
.process-map li.is-active .process-dot {
    border-color: var(--process-accent);
    background: var(--process-accent);
    box-shadow: 0 0 0 5px rgba(102, 216, 227, 0.12), 0 0 18px rgba(102, 216, 227, 0.55);
}

.process-map li.is-active .process-dot {
    transform: scale(1.18);
}

.process-map-caption {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-align: center;
    text-transform: uppercase;
}

.process-action {
    margin-top: 40px;
    padding-left: 14px;
}

.process-action .text-link {
    color: var(--white);
}

.clarity {
    display: grid;
    margin-bottom: var(--section-space);
    grid-template-columns: 1.05fr 0.95fr;
    background: var(--ink-deep);
    color: var(--white);
}

.clarity-main,
.clarity-list {
    padding: 64px;
}

.clarity-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clarity-main p:last-child {
    max-width: 510px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.clarity-list {
    background: var(--aqua-light);
    color: var(--ink);
}

.clarity-list h3 {
    margin-bottom: 24px;
    font-size: 1.35rem;
}

.clarity-list ul {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.clarity-list li {
    position: relative;
    padding: 12px 0 12px 30px;
}

.clarity-list li::before {
    position: absolute;
    top: 18px;
    left: 2px;
    width: 12px;
    height: 7px;
    border-bottom: 2px solid var(--aqua);
    border-left: 2px solid var(--aqua);
    content: "";
    transform: rotate(-45deg);
}

.fine-print {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.faq {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 11%;
}

.faq-heading > p:last-child {
    max-width: 380px;
    margin-top: 26px;
    color: var(--muted);
}

.faq-list details {
    margin-bottom: 10px;
    padding-inline: 28px;
    background: var(--white);
    transition: box-shadow 320ms ease, transform 320ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
    transform: translateX(5px);
    box-shadow: 0 16px 40px rgba(22, 31, 120, 0.09);
}

.faq-list summary {
    display: flex;
    min-height: 0;
    padding-block: 24px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-weight: 780;
    list-style: none;
}

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

.faq-list summary i {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.faq-list summary i::before,
.faq-list summary i::after {
    position: absolute;
    top: 8px;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    content: "";
    transition: transform 180ms ease;
}

.faq-list summary i::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
    transform: rotate(0);
}

.faq-list details p {
    max-width: 640px;
    margin: -4px 44px 24px 0;
    color: var(--muted);
}

.contact {
    display: grid;
    margin-bottom: 0;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: stretch;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(22, 31, 120, 0.12);
}

.contact-copy {
    position: relative;
    z-index: 0;
    overflow: hidden;
    padding: clamp(3rem, 5vw, 5rem);
    background: var(--ink-deep);
    color: var(--white);
}

.contact-copy::after {
    position: absolute;
    z-index: -1;
    right: -190px;
    bottom: -210px;
    width: 430px;
    height: 430px;
    border: 2px solid rgba(64, 196, 211, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 0 58px rgba(64, 196, 211, 0.06), 0 0 0 116px rgba(64, 196, 211, 0.035);
    content: "";
    animation: contact-rings 8s ease-in-out infinite alternate;
}

.contact-copy::before {
    position: absolute;
    z-index: -1;
    top: -120px;
    left: -90px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(64, 196, 211, 0.08);
    box-shadow: 0 0 0 48px rgba(64, 196, 211, 0.035);
    content: "";
    animation: contact-float 7s ease-in-out infinite alternate;
}

.contact .eyebrow {
    color: #8de4eb;
}

.contact h2 {
    max-width: 540px;
    margin-bottom: 26px;
    font-size: clamp(2.65rem, 4.5vw, 4.7rem);
}

.contact h2 em {
    color: var(--aqua);
}

.contact-lead {
    max-width: 520px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.03rem;
}

.contact-methods {
    display: grid;
    margin-bottom: 34px;
    gap: 8px;
}

.contact-method {
    display: grid;
    min-width: 0;
    padding: 15px 16px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    text-decoration: none;
    transition: border-color 260ms ease, background 260ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-method:hover {
    border-color: rgba(141, 228, 235, 0.5);
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(6px);
}

.contact-method-icon {
    color: var(--aqua);
    font-size: 0.69rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.contact-method > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contact-method small {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.69rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-method strong {
    overflow: hidden;
    color: var(--white);
    font-size: 0.92rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-method i {
    color: var(--aqua);
    font-style: normal;
    transition: transform 260ms ease;
}

.contact-method:hover i {
    transform: translate(3px, -3px);
}

.contact-assurances {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
}

.contact-assurances li {
    position: relative;
    padding: 7px 11px 7px 25px;
    border-radius: 999px;
    background: rgba(64, 196, 211, 0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
}

.contact-assurances li::before {
    position: absolute;
    top: 50%;
    left: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--aqua);
    box-shadow: 0 0 0 4px rgba(64, 196, 211, 0.12);
    content: "";
    transform: translateY(-50%);
}

.contact-form-card {
    position: relative;
    scroll-margin-top: 110px;
    padding: clamp(2rem, 4.5vw, 4.5rem);
    background: var(--white);
    color: var(--ink);
}

.contact-form-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--aqua), var(--ink));
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    animation: form-line-in 900ms 180ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.contact-form-heading {
    display: flex;
    margin-bottom: 32px;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.contact-form-heading > span {
    font-family: var(--display);
    font-size: clamp(1.75rem, 2.7vw, 2.35rem);
    font-weight: 780;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.contact-form-heading p {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 0.75rem;
}

.contact-form {
    position: relative;
}

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

.form-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
    color: var(--ink-deep);
    font-size: 0.78rem;
    font-weight: 780;
    letter-spacing: 0.02em;
}

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

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 6px;
    outline: none;
    background: #fbfbff;
    color: var(--ink-deep);
    font: 500 0.96rem/1.45 var(--body);
    transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.form-field textarea {
    min-height: 145px;
    padding-block: 14px;
    resize: vertical;
}

.form-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
    background-position: calc(100% - 18px) 23px, calc(100% - 13px) 23px;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #9399b7;
    opacity: 1;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
    border-color: #b9c0e9;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--aqua);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(64, 196, 211, 0.14), 0 10px 28px rgba(22, 31, 120, 0.06);
    transform: translateY(-1px);
}

.form-field [aria-invalid="true"] {
    border-color: #d95266;
    box-shadow: 0 0 0 3px rgba(217, 82, 102, 0.1);
}

.field-error {
    color: #b92f48;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0;
}

.form-consent {
    display: grid;
    margin-top: 22px;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    color: var(--muted);
    cursor: pointer;
    font-size: 0.78rem;
    line-height: 1.45;
}

.form-consent input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--ink);
}

.consent-error {
    display: block;
    margin: 5px 0 0 30px;
}

.form-submit {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    min-width: 225px;
    min-height: 56px;
    margin-top: 25px;
    padding: 0 21px;
    border: 0;
    border-radius: 5px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: var(--ink);
    color: var(--white);
    cursor: pointer;
    font: 800 0.9rem var(--body);
    transition: background 240ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 240ms ease;
}

.form-submit::before {
    position: absolute;
    top: -70%;
    left: -35%;
    width: 25%;
    height: 240%;
    background: rgba(255, 255, 255, 0.2);
    content: "";
    transform: rotate(18deg) translateX(-280%);
    transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.form-submit:hover {
    background: var(--ink-deep);
    box-shadow: 0 14px 30px rgba(22, 31, 120, 0.22);
    transform: translateY(-2px);
}

.form-submit:hover::before {
    transform: rotate(18deg) translateX(760%);
}

.form-submit i {
    font-style: normal;
    transition: transform 240ms ease;
}

.form-submit:hover i {
    transform: translateX(5px);
}

.form-footnote {
    display: inline-block;
    max-width: 250px;
    margin: 25px 0 0 14px;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.45;
    vertical-align: middle;
}

.form-notice {
    display: grid;
    margin-bottom: 24px;
    padding: 14px 16px;
    grid-template-columns: 32px 1fr;
    align-items: start;
    gap: 11px;
    border-radius: 7px;
    animation: notice-in 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.form-notice > span {
    display: grid;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    place-items: center;
    font-weight: 900;
}

.form-notice strong {
    display: block;
    font-size: 0.9rem;
}

.form-notice p {
    margin: 2px 0 0;
    font-size: 0.8rem;
}

.form-notice-success {
    background: #e5f9f5;
    color: #176858;
}

.form-notice-success > span {
    background: #c7f0e7;
}

.form-notice-error {
    background: #fff0f2;
    color: #963047;
}

.form-notice-error > span {
    background: #fbd9df;
}

.form-trap {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.button-light {
    background: var(--ink-deep);
    color: var(--white);
}

.button-light:hover {
    background: #202ca7;
}

.button-primary,
.button-light,
.header-cta {
    position: relative;
    overflow: hidden;
}

.button-primary::after,
.button-light::after,
.header-cta::after {
    position: absolute;
    top: -70%;
    left: -35%;
    width: 28%;
    height: 240%;
    background: rgba(255, 255, 255, 0.32);
    content: "";
    transform: rotate(18deg) translateX(-280%);
    transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button-primary:hover::after,
.button-light:hover::after,
.header-cta:hover::after {
    transform: rotate(18deg) translateX(650%);
}

.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 720ms ease, transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready .reveal.reveal-left {
    transform: translateX(-34px);
}

.reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Waterlaag: het caustics-canvas dat public/water.js in elk blauw vlak hangt.
   Screen-blending maakt van de lichte lijnen echt licht op het blauw. */
.water-layer {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity 1400ms ease;
}

.water-layer.is-ready {
    opacity: 1;
}

/* De hero's hebben een eigen stapelvolgorde: het licht ligt op de foto en de
   blauwe waas, maar blijft onder de tekst. */
.hero,
.page-hero {
    isolation: isolate;
}

.hero .water-layer {
    z-index: 1;
    -webkit-mask-image: linear-gradient(100deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.48) 34%, #000 66%);
    mask-image: linear-gradient(100deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.48) 34%, #000 66%);
}

.page-hero .water-layer {
    z-index: 0;
    -webkit-mask-image: linear-gradient(115deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.6) 38%, #000 72%);
    mask-image: linear-gradient(115deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.6) 38%, #000 72%);
}

/* Elders volstaat een laag onder de inhoud, binnen een eigen stapelcontext. */
.island-section,
.company,
.service-card-featured,
.process-section,
.clarity-main,
.contact-copy,
.site-footer {
    isolation: isolate;
}

.island-section,
.company,
.clarity-main,
.site-footer {
    position: relative;
}

.island-section,
.company,
.clarity-main {
    overflow: hidden;
}

.island-section .water-layer,
.company .water-layer,
.service-card-featured .water-layer,
.process-section .water-layer,
.clarity-main .water-layer,
.contact-copy .water-layer,
.site-footer .water-layer {
    z-index: -1;
}

.island-section .water-layer,
.company .water-layer,
.clarity-main .water-layer,
.service-card-featured .water-layer {
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), #000 58%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), #000 58%);
}

.process-section .water-layer {
    -webkit-mask-image: radial-gradient(125% 95% at 50% 104%, #000 10%, rgba(0, 0, 0, 0.28) 70%, transparent);
    mask-image: radial-gradient(125% 95% at 50% 104%, #000 10%, rgba(0, 0, 0, 0.28) 70%, transparent);
}

.contact-copy .water-layer {
    -webkit-mask-image: radial-gradient(115% 88% at 86% 96%, #000 6%, rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0.16));
    mask-image: radial-gradient(115% 88% at 86% 96%, #000 6%, rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0.16));
}

/* De footer loopt via clip-path over de volle breedte door; het water volgt. */
.site-footer .water-layer {
    right: auto;
    left: 50%;
    width: var(--water-viewport, 100vw);
    transform: translateX(-50%);
    -webkit-mask-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.12));
    mask-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.12));
}

@keyframes hero-rise {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-breathe {
    from { transform: scale(1.035); }
    to { transform: scale(1.095) translate3d(-0.7%, -0.5%, 0); }
}

@keyframes water-sheen {
    0%, 62% { transform: translateX(-110%); }
    84%, 100% { transform: translateX(110%); }
}

@keyframes proof-pulse {
    0%, 100% { box-shadow: 0 0 0 5px rgba(64, 196, 211, 0.18); }
    50% { box-shadow: 0 0 0 9px rgba(64, 196, 211, 0.05); }
}

@keyframes slow-current {
    to { transform: rotate(360deg); }
}

@keyframes meter-travel {
    from { left: 38%; }
    to { left: 72%; }
}

@keyframes profile-ripple {
    to { transform: translate(-18px, -12px) scale(1.05); }
}

@keyframes contact-rings {
    to { transform: translate(-24px, -18px) scale(1.04); }
}

@keyframes contact-float {
    to { transform: translate(22px, 16px) scale(1.04); }
}

@keyframes form-line-in {
    to { transform: scaleX(1); }
}

@keyframes notice-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.site-footer {
    display: grid;
    padding-block: 72px 42px;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 54px;
    background: var(--ink);
    box-shadow: 0 0 0 100vmax var(--ink);
    color: var(--white);
    clip-path: inset(0 -100vmax);
}

.site-footer .brand {
    margin-bottom: 18px;
}

.site-footer h2 {
    margin-bottom: 14px;
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer p,
.site-footer a {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.site-footer a:hover {
    color: var(--aqua);
}

.footer-legal {
    grid-column: 1 / -1;
    display: flex;
    padding-top: 30px;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.55);
}

/* Merkt de link aan als download, zodat niemand verrast wordt door een PDF. */
.footer-file {
    display: inline-block;
    padding: 1px 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    margin-left: 6px;
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    vertical-align: 1px;
}

.footer-button {
    padding: 0;
    border: 0;
    background: none;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.88rem;
    text-align: left;
}

.footer-button:hover {
    color: var(--aqua);
}

/* Cookiemelding
   ------------------------------------------------------------------------- */

.cookie-banner {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    padding-block: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: var(--ink-deep);
    box-shadow: 0 -18px 48px rgba(10, 17, 74, 0.28);
    color: var(--white);
    animation: cookie-rise 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cookie-banner-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 3rem);
}

.cookie-banner-copy h2 {
    margin-bottom: 7px;
    font-family: var(--body);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cookie-banner-copy h2:focus-visible {
    outline-offset: 6px;
}

.cookie-banner-copy p {
    max-width: 68ch;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
}

.cookie-banner-copy a {
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 3px;
}

.cookie-banner-copy a:hover {
    color: var(--aqua);
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Accepteren en weigeren krijgen bewust hetzelfde formaat en gewicht. */
.cookie-banner-actions .button {
    min-height: 48px;
    flex: 1 1 auto;
    justify-content: center;
    gap: 0;
    white-space: nowrap;
}

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

.button-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

@keyframes cookie-rise {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

/* Privacy- en cookieverklaring
   ------------------------------------------------------------------------- */

.legal {
    display: grid;
    grid-template-columns: minmax(0, 236px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(2.5rem, 5vw, 5rem);
}

.legal-toc {
    position: sticky;
    top: 118px;
    padding: 24px 22px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
}

.legal-toc h2 {
    margin-bottom: 14px;
    color: var(--muted);
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.legal-toc ol {
    padding: 0;
    margin: 0;
    counter-reset: legal-toc;
    list-style: none;
}

.legal-toc li {
    counter-increment: legal-toc;
}

.legal-toc a {
    display: flex;
    padding-block: 7px;
    gap: 10px;
    font-size: 0.86rem;
    text-decoration: none;
}

.legal-toc a::before {
    color: var(--aqua);
    content: counter(legal-toc) ".";
    font-weight: 800;
}

.legal-toc a:hover {
    color: var(--aqua);
}

.legal-body {
    max-width: 74ch;
}

.legal-intro {
    padding-bottom: 34px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 42px;
}

.legal-intro h2 {
    margin-bottom: 22px;
    font-size: clamp(2.1rem, 4.6vw, 3.2rem);
}

.legal-intro .lead {
    color: var(--muted);
    font-size: 1.08rem;
}

.legal-updated {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.legal-section {
    padding-top: 14px;
    margin-bottom: 46px;
    scroll-margin-top: 122px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h3 {
    margin-bottom: 16px;
    font-size: clamp(1.3rem, 2.4vw, 1.6rem);
}

.legal-section h4 {
    margin-bottom: 8px;
    font-family: var(--display);
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.legal-section p {
    margin-bottom: 16px;
}

.legal-list {
    padding: 0;
    margin: 0 0 22px;
    list-style: none;
}

.legal-list li {
    position: relative;
    padding: 7px 0 7px 26px;
}

.legal-list li::before {
    position: absolute;
    top: 18px;
    left: 2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--aqua);
    content: "";
}

.legal-callout {
    padding: 18px 20px;
    border-left: 3px solid var(--aqua);
    border-radius: 0 7px 7px 0;
    background: var(--aqua-light);
    color: var(--ink-deep);
    font-size: 0.92rem;
}

.legal-facts {
    display: grid;
    margin: 0 0 22px;
    border-top: 1px solid var(--line);
    grid-template-columns: 1fr 1fr;
}

.legal-facts > div {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.legal-facts > div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
}

.legal-facts dt {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.legal-facts dd {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 700;
}

.legal-table-wrap {
    overflow-x: auto;
    margin-bottom: 22px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.legal-table caption {
    padding-bottom: 12px;
    color: var(--muted);
    font-size: 0.78rem;
    text-align: left;
}

.legal-table th,
.legal-table td {
    padding: 13px 16px 13px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.legal-table thead th {
    border-bottom-color: var(--ink);
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Cookienamen horen op één regel te blijven; de tabel mag daarvoor liever
   horizontaal scrollen dan een naam middenin af te breken. */
.legal-table code {
    font-family: ui-monospace, "Cascadia Mono", "Consolas", monospace;
    font-size: 0.86em;
    white-space: nowrap;
}

.legal-table tbody th,
.legal-table tbody td:first-child {
    padding-right: 24px;
}

.legal-action {
    margin-top: 26px;
    margin-bottom: 0;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

@media (max-width: 900px) {
    .site-header {
        top: 12px;
        min-height: 68px;
        padding: 5px 6px 5px 10px;
        grid-template-columns: 1fr auto auto;
        gap: 7px;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        display: grid;
        padding: 10px;
        gap: 2px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 10px;
        background: rgba(17, 27, 105, 0.98);
        box-shadow: 0 18px 40px rgba(10, 17, 74, 0.3);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .has-js .site-header:not(.menu-open) .main-nav {
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
    }

    .has-js .main-nav {
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .main-nav a {
        min-height: 48px;
        padding: 0 14px;
        border-radius: 6px;
        font-size: 0.94rem;
    }

    .main-nav a:hover,
    .main-nav a:focus-visible,
    .main-nav a[aria-current="page"] {
        background: rgba(255, 255, 255, 0.1);
    }

    .main-nav a::after {
        top: 12px;
        right: auto;
        bottom: 12px;
        left: 0;
        width: 3px;
        height: auto;
        transform: scaleY(0);
        transform-origin: top;
    }

    .main-nav a:hover::after,
    .main-nav a:focus-visible::after,
    .main-nav a[aria-current="page"]::after {
        transform: scaleY(1);
    }

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

    .menu-open .menu-toggle-icon i:first-child {
        top: 6px;
        transform: rotate(45deg);
    }

    .menu-open .menu-toggle-icon i:last-child {
        top: 6px;
        transform: rotate(-45deg);
    }

    .hero {
        min-height: 780px;
    }

    .page-hero > .shell {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .image-placeholder {
        width: min(100%, 620px);
        min-height: 230px;
    }

    .promise,
    .island-layout,
    .about,
    .company-layout,
    .process-stage,
    .page-overview,
    .faq {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .overview-heading {
        position: static;
    }

    .process-map {
        position: static;
    }

    .about-copy {
        max-width: 680px;
    }

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

    .service-card-featured {
        min-height: 330px;
        grid-row: auto;
        grid-column: 1 / -1;
    }

    .service-card.coral {
        grid-column: 1 / -1;
    }

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

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

    .contact-copy {
        min-height: 580px;
    }

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

    .footer-brand,
    .footer-legal {
        grid-column: 1 / -1;
    }
}

@media (max-width: 650px) {
    .section {
        padding-block: 76px;
    }

    .site-header {
        width: calc(100% - 24px);
    }

    .header-cta {
        min-width: 48px;
        padding: 0 12px;
        font-size: 0.8rem;
    }

    .brand-logo {
        height: 54px;
    }

    .header-cta-short {
        display: inline;
    }

    .header-cta-number {
        display: none;
    }

    .hero {
        min-height: max(690px, 100svh);
        padding-bottom: 96px;
    }

    .hero-content {
        padding-top: 92px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(1.8rem, 8vw, 2.15rem);
        line-height: 0.98;
    }

    .hero-intro {
        font-size: 1rem;
        line-height: 1.52;
    }

    .hero-shade {
        background: linear-gradient(90deg, rgba(15, 22, 87, 0.95), rgba(48, 63, 220, 0.58));
    }

    .hero-media img {
        object-position: 62% center;
    }

    .hero-proof {
        display: grid;
        min-height: 84px;
        padding-block: 13px;
        grid-template-columns: 1fr 1fr;
        gap: 7px 16px;
        font-size: 0.62rem;
    }

    .hero-proof span:last-child {
        grid-column: 1 / -1;
    }

    .button {
        width: 100%;
    }

    .page-hero {
        min-height: 460px;
        padding: 150px 0 72px;
    }

    .page-hero h1 {
        font-size: clamp(2.5rem, 12vw, 3.35rem);
    }

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

    .overview-card {
        min-height: 0;
        padding: 26px 24px;
    }

    .overview-card h3 {
        margin-top: 34px;
    }

    .service-grid {
        padding-bottom: 76px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-card,
    .service-card-featured {
        min-height: 0;
        padding: 28px 24px;
        grid-row: auto;
        grid-column: auto;
    }

    .service-card h3 {
        margin-top: 30px;
        font-size: 1.65rem;
    }

    .service-card p {
        margin-bottom: 6px;
    }

    .meter {
        margin-top: 34px;
    }

    .island-tags {
        display: flex;
        border-block: 0;
        gap: 8px;
        flex-wrap: wrap;
    }

    .island-tags span,
    .island-tags span:first-child {
        min-height: 0;
        padding: 8px 13px;
        border: 0;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
        font-size: 0.77rem;
        font-weight: 500;
    }

    .island-tags span::before {
        display: none;
    }

    .island-section {
        padding-block: 76px;
    }

    .process-list li {
        margin-bottom: 8px;
        padding: 24px 20px;
        grid-template-columns: 42px 1fr;
    }

    .process-header {
        margin-bottom: 52px;
    }

    .process-stage {
        gap: 44px;
    }

    .process-card {
        margin-left: 10px;
    }

    .process-map-panel {
        padding: 26px 24px;
    }

    .process-action {
        margin-top: 30px;
        padding-left: 10px;
    }

    .about-profile {
        padding: 42px 24px;
    }

    .about-profile h2 {
        margin-bottom: 54px;
    }

    .about-values {
        margin-block: 26px 30px;
    }

    .company-facts {
        grid-template-columns: 1fr;
    }

    .company-facts > div {
        padding-inline: 0;
        border-left: 0;
    }

    .clarity {
        width: 100%;
        margin-bottom: 76px;
    }

    .clarity-main,
    .clarity-list {
        padding: 48px 24px;
    }

    .contact {
        width: 100%;
    }

    .contact-copy,
    .contact-form-card {
        padding: 48px 24px;
    }

    .contact-copy {
        min-height: 0;
    }

    .contact h2 {
        font-size: clamp(2.45rem, 12vw, 3.2rem);
    }

    .contact-form-heading {
        align-items: start;
        flex-direction: column;
        gap: 7px;
    }

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

    .form-field-wide {
        grid-column: auto;
    }

    .form-submit {
        width: 100%;
    }

    .form-footnote {
        display: block;
        max-width: none;
        margin: 12px 0 0;
        text-align: center;
    }

    .faq-list details {
        padding-inline: 18px;
    }

    .faq-list summary {
        padding-block: 20px;
    }

    .faq-list details p {
        margin: -2px 28px 20px 0;
    }

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

    .footer-brand,
    .footer-legal {
        grid-column: auto;
    }

    .footer-legal {
        flex-direction: column;
    }
}

@media (max-width: 370px) {
    .site-header {
        width: calc(100% - 20px);
    }

    .brand-logo {
        height: 48px;
    }

    .header-cta {
        width: 48px;
        padding: 0;
    }

    .header-cta-short {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-ready .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 900px) {
    .legal {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.25rem;
    }

    .legal-toc {
        position: static;
        padding: 20px;
    }

    .legal-toc ol {
        display: grid;
        gap: 0 22px;
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    }

    .legal-section {
        scroll-margin-top: 96px;
    }

    .cookie-banner-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
}

@media (max-width: 650px) {
    .cookie-banner {
        max-height: 78vh;
        padding-block: 18px;
        overflow-y: auto;
    }

    .cookie-banner-actions .button {
        flex: 1 1 100%;
    }

    .legal-facts {
        grid-template-columns: minmax(0, 1fr);
    }

    .legal-facts > div {
        padding: 14px 0;
        border-left: 0;
    }

    .legal-table th,
    .legal-table td {
        padding-right: 12px;
    }
}
