@font-face {
    font-family: "Quicksand";
    src: url("../fonts/Quicksand-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Regular-latin.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-SemiBold-latin.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Bold-latin.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    color-scheme: light;
    --navy: #0b2a4a;
    --ocean: #087c9c;
    --cyan: #11b8c7;
    --mint: #35d0a1;
    --ink-soft: #476776;
    --mist: #eaf7f7;
    --paper: #f7fbfb;
    --white: #fff;
    --line: #d5e9eb;
    --gradient: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 42%, var(--cyan) 72%, var(--mint) 100%);
    --gradient-accessible: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
    --shadow: 0 24px 70px rgb(11 42 74 / 12%);
    --glass: rgb(255 255 255 / 92%);
    --soft-glass-color: rgb(255 255 255 / 95%);
    --soft-glass-border: rgb(204 229 232 / 92%);
    --soft-glass-shadow:
        inset 0 1px 0 rgb(255 255 255 / 96%),
        0 18px 48px rgb(11 42 74 / 8%);
    --radius-large: 34px;
    --radius-medium: 22px;
    --container: 1180px;
    --section-gap: clamp(64px, 7vw, 88px);
    --mobile-hero-bottom-space: 36px;
    --mobile-hero-card-gap: 14px;
}

*, *::before, *::after { box-sizing: border-box; }

html { overflow-x: clip; scroll-behavior: smooth; }

body {
    margin: 0;
    overflow-x: clip;
    color: var(--navy);
    background:
        radial-gradient(circle at 8% 5%, rgb(53 208 161 / 10%), transparent 28rem),
        radial-gradient(circle at 95% 34%, rgb(17 184 199 / 9%), transparent 32rem),
        var(--paper);
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgb(8 124 156 / 6%) .7px, transparent .7px);
    background-size: 18px 18px;
    mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

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

a { color: inherit; }
a, button, summary { touch-action: manipulation; }
a, button, summary, input, select, textarea { -webkit-tap-highlight-color: rgb(53 208 161 / 24%); }

h1, h2, h3 {
    margin: 0;
    font-family: "Quicksand", "Segoe UI", sans-serif;
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: 1.04;
}

h1 { font-size: 3em; }
h2 { font-size: 2.5em; }
h3 { font-size: 2em; }

p { margin: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    color: #fff;
    background: var(--navy);
    border-radius: 12px;
    transform: translateY(-160%);
}

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

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

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    color: #fff;
    background: var(--navy);
    border: 1px solid var(--navy);
    border-radius: 14px;
    box-shadow: 0 13px 28px rgb(11 42 74 / 14%);
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible { color: #fff; background: var(--mint); border-color: var(--mint); transform: translateY(-2px); box-shadow: 0 18px 34px rgb(11 42 74 / 20%); }
.button > svg { width: 20px; height: 20px; flex: 0 0 20px; }
.button-secondary { color: var(--navy); background: var(--soft-glass-color); border-color: var(--soft-glass-border); box-shadow: none; }
.button-light { color: var(--navy); background: var(--soft-glass-color); border-color: var(--soft-glass-border); }
.button-secondary:hover,
.button-secondary:focus-visible,
.button-light:hover,
.button-light:focus-visible { color: #fff; background: var(--navy); border-color: var(--navy); }
.button-arrow { display: inline-block; flex: 0 0 auto; transition: transform 220ms ease; }
.button:hover .button-arrow,
.button:focus-visible .button-arrow,
.card-link:hover .button-arrow,
.card-link:focus-visible .button-arrow { transform: translateX(4px); }

.page-hero {
    display: grid;
    min-height: 620px;
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
    align-items: center;
    gap: clamp(44px, 8vw, 100px);
    padding-block: 50px 0;
}

.page-hero > * { min-width: 0; }

.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; color: var(--ink-soft); font-size: .82rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--mint); }
.eyebrow-light { color: #d9fff5; }
.page-hero h1 { max-width: 900px; }
.page-hero h1 span { position: relative; white-space: nowrap; }
.page-hero h1 span::after { content: ""; position: absolute; z-index: -1; left: -.02em; right: -.04em; bottom: .04em; height: .17em; background: linear-gradient(90deg, rgb(17 184 199 / 32%), rgb(53 208 161 / 56%)); border-radius: 999px; transform: rotate(-.5deg); }
.hero-intro { max-width: 660px; margin-top: 28px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.8vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-title-wide { white-space: nowrap; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 30px; color: var(--ink-soft); font-size: .9rem; font-weight: 700; }
.hero-points span { display: inline-flex; align-items: center; gap: 8px; }
.hero-points i { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; }

.hero-art {
    position: relative;
    width: 80%;
    min-height: 400px;
    overflow: hidden;
    justify-self: center;
    color: #fff;
    background: var(--gradient);
    border-radius: 46% 54% 43% 57% / 42% 40% 60% 58%;
    box-shadow: 0 34px 90px rgb(8 124 156 / 20%);
    animation: shape-breathe 10s ease-in-out infinite alternate;
}

.hero-art::before, .hero-art::after { content: ""; position: absolute; border: 1px solid rgb(255 255 255 / 20%); border-radius: 50%; }
.hero-art::before { width: 430px; height: 430px; right: -190px; bottom: -230px; box-shadow: 0 0 0 80px rgb(255 255 255 / 4%); }
.hero-art::after { width: 240px; height: 240px; left: -115px; top: -120px; box-shadow: 0 0 0 55px rgb(255 255 255 / 4%); }

.portrait-art { display: grid; width: 100%; justify-self: center; place-items: center; }
.portrait-composite { display: block; width: 100%; height: auto; }
.home-hero-portrait { display: grid; width: 80%; justify-self: center; justify-items: center; }

.hero-visual {
    position: relative;
    width: 80%;
    min-height: 448px;
    justify-self: center;
    isolation: isolate;
}

/* Gedeeld geometrisch raster voor de Websites- en ICT-hero. */
.solution-hero-visual {
    width: 100%;
    min-height: 560px;
    display: block;
}

.flow-shape {
    position: absolute;
    inset: 0 -9% 0 0;
    overflow: hidden;
    background: var(--gradient);
    background-size: 165% 165%;
    border-radius: 46% 54% 37% 63% / 29% 34% 66% 71%;
    box-shadow: 0 34px 90px rgb(8 124 156 / 20%);
    animation: gradient-drift 13s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes gradient-drift { from { background-position: 0% 35%; } to { background-position: 100% 65%; } }

.flow-shape::before {
    content: "";
    position: absolute;
    inset: -25%;
    background:
        radial-gradient(circle at 28% 30%, rgb(255 255 255 / 25%), transparent 23%),
        radial-gradient(circle at 72% 63%, rgb(53 208 161 / 28%), transparent 28%),
        linear-gradient(125deg, transparent 22%, rgb(255 255 255 / 12%) 47%, transparent 68%);
    transform: rotate(-8deg);
}

.hero-orbit { position: absolute; z-index: 1; aspect-ratio: 1; border: 1px solid rgb(255 255 255 / 24%); border-radius: 50%; pointer-events: none; will-change: transform; }
.hero-orbit-large { right: -85%; bottom: -110%; width: 155%; background: rgb(53 208 161 / 7%); }
.hero-orbit-small { right: -67%; bottom: -93%; width: 115%; background: rgb(255 255 255 / 4%); }

.hero-center-panel {
    position: absolute;
    z-index: 3;
    top: 17%;
    left: 14%;
    width: min(430px, 72%);
    padding: 12px;
    border-radius: 22px;
    will-change: transform;
}

.ict-workspace-window { overflow: hidden; }
.ict-workspace-scene { display: block; width: 100%; height: auto; border-radius: 14px; }

.browser-top { display: flex; gap: 6px; padding: 4px 3px 12px; }
.browser-top i { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
.browser-sitebar { display: flex; align-items: center; gap: 12px; padding: 0 16px 11px; color: #5b7480; border-bottom: 1px solid #e1eff0; font-size: .56rem; font-weight: 750; }
.browser-sitebar b { margin-right: auto; color: var(--navy); font-family: "Quicksand", sans-serif; font-size: .68rem; }
.browser-sitebar b::before { content: ""; display: inline-block; width: 10px; height: 10px; margin-right: 5px; vertical-align: -1px; background: var(--gradient); border-radius: 4px 6px 4px 6px; }
.browser-body { display: grid; min-height: 210px; grid-template-columns: .86fr 1.14fr; gap: 12px; padding: 18px; background: #f2fbfb; border-radius: 14px; }
.browser-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.browser-kicker { margin-bottom: 8px; color: var(--ocean); font-size: .54rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.browser-copy strong { max-width: 135px; color: var(--navy); font-family: "Quicksand", sans-serif; font-size: 1.05rem; line-height: 1.08; }
.browser-copy p { margin: 8px 0 12px; color: #527080; font-size: .58rem; line-height: 1.45; }
.browser-cta { display: inline-flex; min-height: 25px; align-items: center; padding: 5px 10px; color: var(--navy); background: var(--mint); border-radius: 8px; font-size: .55rem; font-style: normal; font-weight: 700; }
.browser-photo { position: relative; overflow: hidden; background: linear-gradient(145deg, #d9f7f4 0%, #fff 46%, #b7f2e1 100%); border-radius: 46% 54% 38% 62% / 42% 38% 62% 58%; }
.browser-photo::before { content: ""; position: absolute; z-index: 2; width: 22px; height: 22px; right: 12%; top: 16%; background: #fff; border-radius: 50%; }
.browser-photo::after { content: ""; position: absolute; z-index: 2; width: 27px; height: 27px; left: 10%; top: 17%; border: 6px solid rgb(17 184 199 / 22%); border-radius: 50%; }
.browser-person { position: absolute; z-index: 1; left: 50%; bottom: -10%; width: 88%; height: 104%; overflow: visible; filter: drop-shadow(0 12px 20px rgb(5 38 70 / 12%)); transform: translateX(-50%); }
.browser-person .person-shape { fill: url(#browser-person-gradient); }

.hero-icon-card {
    position: absolute;
    z-index: 4;
    display: grid;
    width: 108px;
    min-height: 108px;
    overflow: hidden;
    place-items: center;
    color: var(--ocean);
    border-radius: 30px;
    will-change: transform;
}

.hero-icon-card::before { content: ""; position: absolute; inset: -12%; background: linear-gradient(145deg, rgb(255 255 255 / 62%), transparent 46%); animation: glass-shimmer 7s ease-in-out infinite alternate; pointer-events: none; }
@keyframes glass-shimmer { from { transform: translate3d(-5%, -3%, 0); } to { transform: translate3d(7%, 4%, 0); } }
.hero-icon-card svg { position: relative; z-index: 1; width: 58px; height: 58px; }
.hero-card-top { top: -10%; left: 30%; }
.hero-card-lower-left { left: 28%; bottom: -4%; }
.hero-card-lower-right { right: 8%; bottom: 5%; }

/* Door Marijn aangeleverde Websites-compositie van 13 augustus 2026. */
.website-hero-visual .flow-shape { top: 10%; bottom: 10%; }
.website-hero-visual .hero-center-panel { top: 25%; left: 21%; padding: 10px; }
.website-hero-visual .browser-top { padding: 2px 2px 8px; }
.website-hero-visual .browser-sitebar { padding: 0 12px 8px; }
.website-hero-visual .browser-body { min-height: 180px; gap: 10px; padding: 28px 10px 10px; }
.website-hero-visual .browser-kicker { margin-bottom: 6px; }
.website-hero-visual .browser-copy p { margin: 5px 0 8px; }
.website-hero-visual .browser-cta { min-height: 23px; padding: 4px 9px; }
.website-hero-visual .hero-card-top { top: 0; left: 37%; }
.website-hero-visual .hero-card-lower-left { left: 28%; bottom: 6%; }
.website-hero-visual .hero-card-lower-right { right: -3%; bottom: 6%; }

/* De vorm en de illustratie blijven twee afzonderlijk aanpasbare lagen. */
.service-hero-layers {
    aspect-ratio: 1920 / 2112;
    min-height: 0;
}

.service-hero-layers .service-hero-shape {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    width: 100%;
    height: auto;
}

.ict-workplace-foreground,
.website-hero-foreground {
    position: absolute;
    z-index: 2;
    display: block;
    width: 85%;
    height: auto;
    filter: drop-shadow(0 24px 34px rgb(5 38 70 / 14%));
}

.ict-workplace-foreground {
    left: 7.29%;
    bottom: 14.66%;
}

.website-hero-foreground {
    left: 9%;
    bottom: 19%;
}

.art-card {
    position: absolute;
    z-index: 2;
    padding: 28px;
    border-radius: 24px;
}

.art-window { inset: 16% 10% 13% 12%; color: var(--navy); }
.window-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid #d9ecee; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 9px; height: 9px; background: #c9e7e9; border-radius: 50%; }
.window-brand { font-weight: 700; }
.window-body { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 24px; min-height: 270px; }
.window-copy small { color: var(--ocean); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.window-copy strong { display: block; max-width: 280px; margin-top: 12px; font-family: "Quicksand", sans-serif; font-size: clamp(1.65rem, 3vw, 2.45rem); line-height: 1.02; }
.window-copy p { margin-top: 12px; color: var(--ink-soft); font-size: .92rem; }
.window-portrait { display: grid; aspect-ratio: 1; place-items: center; background: linear-gradient(145deg, #eafafa, #d8f8ed); border-radius: 48% 52% 47% 53%; }
.window-portrait svg { width: 72%; color: var(--ocean); }

.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: -24px; padding-bottom: 0; }
.trust-item { padding: 22px; border-radius: 18px; }
.trust-item strong { display: block; font-family: "Quicksand", sans-serif; font-size: 1.12rem; }
.trust-item span { color: var(--ink-soft); font-size: .9rem; }

.section { padding-block: 0; }
main.section { padding-top: var(--section-gap); }
main > .page-hero + .section,
main > .package-topic-shell + .section,
main > .section + .section,
main > .trust-row + .section { margin-top: var(--section-gap); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading p:not(.eyebrow) { max-width: 660px; margin-top: 18px; color: var(--ink-soft); font-size: 1.08rem; }

.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 20px; }
.service-card { position: relative; min-height: 460px; overflow: hidden; padding: clamp(28px, 5vw, 52px); border-radius: 30px; transition: border-color 240ms ease, box-shadow 240ms ease, background 240ms ease; }
.service-card-primary:has(.card-link:hover)::after, .service-card-primary:has(.card-link:focus-visible)::after { transform: translate(-12px, -10px); }
.service-icon { display: grid; width: 64px; height: 64px; margin-bottom: 52px; place-items: center; color: var(--ocean); background: var(--mist); border-radius: 20px; }
.service-icon svg { width: 32px; height: 32px; }
.service-card h3 { max-width: 430px; margin-bottom: 16px; letter-spacing: -.04em; line-height: 1.08; }
.service-card p { max-width: 510px; margin-bottom: 26px; color: var(--ink-soft); line-height: 1.68; }
.service-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 34px; padding: 0; list-style: none; }
.service-list li { padding: 7px 10px; color: #305766; background: #f1f9f9; border: 1px solid #dceff0; border-radius: 9px; font-size: .78rem; font-weight: 700; }
.card-link { position: relative; z-index: 2; display: inline-flex; width: fit-content; min-height: 44px; align-items: center; gap: 10px; padding: 10px 14px; color: #fff; background: var(--navy); border-radius: 12px; font-weight: 700; text-decoration: none; transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease; }
.card-link svg { width: 18px; height: 18px; }
.card-link:hover, .card-link:focus-visible { color: #fff; background: var(--mint); transform: translateY(-2px); box-shadow: 0 12px 28px rgb(11 42 74 / 18%); }
.service-card-primary { order: -1; color: #fff; background: var(--gradient); border: 1px solid var(--line); box-shadow: 0 24px 70px rgb(8 124 156 / 18%); }
.service-card-primary::before, .service-card-primary::after { content: ""; position: absolute; }
.service-card-primary::before { width: 520px; height: 520px; right: -240px; bottom: -285px; }
.service-card-primary::after { width: 370px; height: 370px; right: -165px; bottom: -210px; transition: transform 320ms ease; }
.service-card-primary > * { position: relative; z-index: 1; }
.service-card-primary .service-icon { color: var(--navy); background: rgb(255 255 255 / 92%); }
.service-card-primary p { color: rgb(255 255 255 / 84%); }
.service-card-primary .service-list li { color: #fff; background: rgb(255 255 255 / 12%); border-color: rgb(255 255 255 / 24%); }
.service-card-primary .card-link { color: var(--navy); background: var(--soft-glass-color); }
.service-card-primary .card-link:hover, .service-card-primary .card-link:focus-visible { color: #fff; background: var(--navy); }
.service-card-secondary { min-height: 420px; padding-inline: clamp(26px, 4vw, 42px); }
.service-card-secondary .service-icon { margin-bottom: 42px; }
#diensten,
#wat-je-krijgt,
#mogelijkheden,
#contact,
#inbegrepen,
#extra-diensten { scroll-margin-top: 150px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 280px; padding: 30px; border-radius: var(--radius-medium); }
.feature-icon { display: grid; width: 54px; height: 54px; margin-bottom: 42px; place-items: center; color: var(--ocean); background: var(--mist); border-radius: 17px; font-size: 1.35rem; font-weight: 700; }
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--ink-soft); }
.feature-card .feature-icon svg { width: 28px; height: 28px; }
.feature-grid-two { grid-template-columns: repeat(2, 1fr); }
.feature-card-inverse { color: #fff; background: var(--navy); border-color: var(--navy); box-shadow: 0 24px 64px rgb(11 42 74 / 16%); }
.feature-card-inverse .feature-icon { color: #fff; background: rgb(255 255 255 / 12%); }
.feature-card-inverse p { color: rgb(255 255 255 / 78%); }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 16px; margin: 24px 0 0; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 700; }
.feature-list li::before { content: ""; width: 7px; height: 7px; flex: 0 0 7px; background: var(--mint); border-radius: 50%; }
.feature-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 28px; color: var(--navy); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.feature-card-inverse .feature-link { color: #fff; }
.feature-link svg { width: 19px; transition: transform 180ms ease; }
.feature-link:hover svg, .feature-link:focus-visible svg { transform: translateX(4px); }

.ict-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
}

.ict-service-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: clamp(28px, 4vw, 42px);
    border-radius: var(--radius-medium);
}

.ict-service-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
    place-items: center;
    color: var(--ocean);
    background: var(--mist);
    border: 1px solid rgb(8 124 156 / 8%);
    border-radius: 20px;
}

.ict-service-icon svg { width: 36px; height: 36px; }
.ict-service-card h3 { max-width: 520px; margin-bottom: 16px; }
.ict-service-card > p { color: var(--ink-soft); }

.ict-example-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.ict-example-list li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    color: var(--ink-soft);
}

.ict-example-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: .62em;
    background: var(--mint);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgb(53 208 161 / 13%);
}

.ict-services-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 26px;
    padding: 10px 0;
}

.ict-services-action p { max-width: 650px; color: var(--ink-soft); font-size: 1.03rem; }
.ict-services-action .button { flex: 0 0 auto; }
.included.ict-control {
    --lens-opacity: .4;
    background: linear-gradient(135deg, var(--navy) 0%, #07536d 62%, #075f7c 100%);
}
.ict-control .eyebrow,
.ict-control p { color: #fff; }
.ict-control p { max-width: 820px; margin-top: 20px; font-size: 1.08rem; }

.media-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 300px); align-items: start; gap: clamp(28px, 3vw, 40px); padding-inline-end: clamp(28px, 3vw, 40px); }
.media-copy h2 { margin-bottom: 22px; }
.media-copy > p:not(.eyebrow) { max-width: 680px; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.72; }
.media-copy .hero-actions { margin-top: 30px; }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px, 7vw, 92px); align-items: start; }
.sticky-heading { position: sticky; top: 130px; }
.sticky-heading p { margin-top: 20px; color: var(--ink-soft); }

.stack { display: grid; gap: 16px; }
.stack-card { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 26px; border-radius: 19px; }
.stack-number { display: grid; width: 42px; height: 42px; place-items: center; color: #fff; background: var(--gradient-accessible); border-radius: 13px; font-weight: 700; }
.stack-card h3 { margin-bottom: 8px; }
.stack-card p { color: var(--ink-soft); }

.included {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 6vw, 68px);
    color: #fff;
    background: var(--gradient);
    border-radius: var(--radius-large);
    box-shadow: 0 28px 70px rgb(8 124 156 / 18%);
}

.included::before, .included::after { content: ""; position: absolute; }
.included::before { width: 390px; height: 390px; right: -165px; bottom: -240px; }
.included::after { width: 245px; height: 245px; right: -92.5px; bottom: -167.5px; }
.included > * { position: relative; z-index: 1; }
.included h2 { position: relative; z-index: 1; max-width: 700px; }
.check-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; margin: 36px 0 0; padding: 0; list-style: none; }
.check-grid li { display: flex; align-items: flex-start; gap: 11px; }
.check-grid li::before { content: "✓"; display: grid; flex: 0 0 24px; width: 24px; height: 24px; place-items: center; color: var(--navy); background: #fff; border-radius: 50%; font-size: .8rem; font-weight: 700; }

.faq-list { display: grid; gap: 12px; }
.faq-list details { border-radius: 17px; }
.faq-list summary { display: flex; min-height: 64px; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 22px; cursor: pointer; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--ocean); font-size: 1.5rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 22px 22px; color: var(--ink-soft); }

.cta-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 34px; padding: clamp(34px, 6vw, 66px); border-radius: var(--radius-large); }
.cta-panel h2 { max-width: 760px; }
.cta-panel p { max-width: 680px; margin-top: 15px; color: var(--ink-soft); }

.price-card { position: relative; overflow: hidden; padding: clamp(34px, 6vw, 64px); color: #fff; background: var(--gradient); border-radius: var(--radius-large); box-shadow: var(--shadow); }
.price-card::before, .price-card::after { content: ""; position: absolute; }
.price-card::before { width: 340px; height: 340px; right: -150px; bottom: -200px; }
.price-card::after { width: 220px; height: 220px; right: -90px; bottom: -140px; }
.price-card > * { position: relative; z-index: 1; }
.price-card small { font-weight: 700; }
.price-card strong { display: block; margin-block: 18px 4px; font-family: "Quicksand", sans-serif; font-size: clamp(4rem, 9vw, 7.2rem); line-height: .9; }
.price-card p { font-size: 1.12rem; }
.price-card .button { margin-top: 30px; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-card { padding: clamp(28px, 4vw, 42px); border-radius: var(--radius-medium); }
.contact-card h2, .contact-card h3 { margin-bottom: 14px; }
.contact-card p { color: var(--ink-soft); }
.contact-card .button { margin-top: 24px; }

.compact-about { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; gap: clamp(38px, 7vw, 88px); }
.compact-about .section-heading { margin-bottom: 0; }
.about-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-facts span { padding: 9px 12px; color: var(--navy); background: var(--mist); border: 1px solid var(--line); border-radius: 11px; font-size: .86rem; font-weight: 700; }
.compact-process { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.compact-step { min-height: 190px; padding: 24px; border-radius: 20px; }
.compact-step strong { display: grid; width: 38px; height: 38px; margin-bottom: 24px; place-items: center; color: #fff; background: var(--gradient-accessible); border-radius: 12px; }
.compact-step h3 { margin-bottom: 8px; }
.compact-step p { color: var(--ink-soft); }

.contact-shell { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: hidden; border-radius: 34px; }
.contact-form-panel { padding: clamp(30px, 6vw, 66px); }
.contact-form-panel .section-heading { margin-bottom: 34px; }
.contact-form { display: grid; gap: 20px; }
.contact-website-field { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.form-field,
.flow-field { display: grid; gap: 8px; }
.form-field label,
.flow-field > label { color: var(--navy); font-weight: 750; }
.form-field input,
.form-field select,
.form-field textarea,
.flow-field > input:not([type]),
.flow-field > input[type="text"],
.flow-field > input[type="email"],
.flow-field > input[type="tel"],
.flow-field > input[type="url"],
.flow-field > input[type="number"],
.flow-field > input[type="date"],
.flow-field > input[type="search"],
.flow-field > select,
.flow-field > textarea { width: 100%; min-height: 52px; padding: 13px 15px; color: var(--navy); background: #f8fcfc; border: 1px solid #badadd; border-radius: 13px; font: inherit; }
.form-field textarea,
.flow-field > textarea { min-height: 144px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.flow-field > input:not([type]):focus,
.flow-field > input[type="text"]:focus,
.flow-field > input[type="email"]:focus,
.flow-field > input[type="tel"]:focus,
.flow-field > input[type="url"]:focus,
.flow-field > input[type="number"]:focus,
.flow-field > input[type="date"]:focus,
.flow-field > input[type="search"]:focus,
.flow-field > select:focus,
.flow-field > textarea:focus { border-color: var(--ocean); outline: 3px solid rgb(17 184 199 / 20%); outline-offset: 1px; }
.form-note { color: var(--ink-soft); font-size: .85rem; }
.form-note a { color: var(--navy); font-weight: 700; text-underline-offset: 3px; }
.contact-form button[aria-busy="true"] { cursor: wait; opacity: .76; }
.form-status { min-height: 1.5em; color: var(--ocean); font-weight: 700; }
.form-status[data-state="error"] { color: #9f2525; }
.form-status[data-state="success"] { color: #08745d; }
.contact-aside { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; overflow: hidden; padding: clamp(32px, 5vw, 58px); color: #fff; background: linear-gradient(150deg, var(--navy) 0%, #087c9c 58%, #20bcae 100%); }
.contact-aside::before, .contact-aside::after { content: ""; position: absolute; }
.contact-aside::before { width: 420px; height: 420px; right: -210px; bottom: -235px; }
.contact-aside::after { width: 265px; height: 265px; right: -132.5px; bottom: -157.5px; }
.contact-aside > * { position: relative; z-index: 1; }
.contact-aside h2 { max-width: 520px; color: #fff; }
.contact-aside p { margin-top: 18px; color: rgb(255 255 255 / 78%); }
.contact-whatsapp { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.contact-whatsapp p { color: var(--ink-soft); font-size: .92rem; }
.whatsapp-button { margin-top: 30px; color: #073b24; background: #25d366; border-color: #25d366; box-shadow: 0 14px 34px rgb(3 51 37 / 22%); }
.contact-whatsapp .whatsapp-button { width: fit-content; margin-top: 12px; }
.whatsapp-button:hover { color: #052a1d; background: #7bedb4; }
.whatsapp-button svg { display: block; flex: 0 0 22px; width: 22px; height: 22px; overflow: visible; }
.hero-actions .whatsapp-button { margin-top: 0; }
.hero-actions a[href^="https://wa.me/"] {
    color: #073b24;
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 14px 34px rgb(3 51 37 / 18%);
}
.hero-actions a[href^="https://wa.me/"]::before {
    content: "";
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.47 14.38c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.16-.17.2-.35.22-.64.08-.3-.15-1.26-.46-2.39-1.48-.88-.79-1.48-1.76-1.65-2.06-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.03-.52-.07-.15-.67-1.61-.92-2.21-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.07 2.88 1.21 3.07c.15.2 2.1 3.2 5.08 4.49.71.31 1.26.49 1.69.63.71.23 1.36.19 1.87.12.57-.09 1.76-.72 2.01-1.41.25-.69.25-1.29.17-1.41-.07-.12-.27-.2-.57-.35M12.05 21.79h-.01a9.84 9.84 0 0 1-5.03-1.38l-.36-.21-3.74.98 1-3.65-.24-.37A9.83 9.83 0 0 1 2.16 11.9C2.16 6.45 6.6 2 12.06 2a9.83 9.83 0 0 1 7 2.91 9.82 9.82 0 0 1 2.9 7c0 5.45-4.45 9.88-9.91 9.88m8.42-18.37A11.82 11.82 0 0 0 12.06 0C5.5 0 .17 5.33.17 11.9c0 2.1.55 4.15 1.6 5.95L.06 24l6.3-1.65a11.9 11.9 0 0 0 5.69 1.45h.01c6.56 0 11.89-5.34 11.89-11.9 0-3.18-1.24-6.17-3.48-8.48'/%3E%3C/svg%3E") center / contain no-repeat;
}
.hero-actions a[href^="https://wa.me/"]:hover { color: #052a1d; background: #7bedb4; }
.contact-details { margin-top: 54px; padding-top: 24px; border-top: 1px solid rgb(255 255 255 / 20%); font-size: .88rem; }

.consultation-panel { justify-content: flex-start; gap: 24px; scroll-margin-top: 130px; }
.consultation-panel .eyebrow { color: #8be9d0; }
.consultation-panel > div > p:last-child { max-width: 48ch; }
.consultation-calendar { padding: clamp(18px, 2.5vw, 26px); color: var(--navy); background: rgb(255 255 255 / 95%); border: 1px solid rgb(255 255 255 / 55%); border-radius: 22px; box-shadow: 0 22px 48px rgb(7 30 56 / 18%); }
.consultation-calendar-header { display: grid; grid-template-columns: 44px minmax(0, 1fr) 44px; align-items: center; gap: 10px; }
.consultation-calendar .consultation-month-title { margin-top: 0; color: var(--navy); font-family: "Quicksand", sans-serif; font-size: 1.18rem; font-weight: 700; text-align: center; text-transform: capitalize; }
.consultation-month-button { display: grid; width: 44px; height: 44px; place-items: center; padding: 0; color: var(--navy); background: #eef8f7; border: 1px solid #cce5e8; border-radius: 12px; cursor: pointer; font: inherit; font-size: 1.05rem; font-weight: 750; }
.consultation-month-button:hover:not(:disabled) { color: #fff; background: var(--navy); border-color: var(--navy); }
.consultation-month-button:focus-visible { outline: 3px solid var(--ocean); outline-offset: 3px; }
.consultation-month-button:disabled { cursor: default; opacity: .35; }
.consultation-weekdays,
.consultation-days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 5px; }
.consultation-weekdays { margin-top: 16px; color: #67818f; font-size: .72rem; font-weight: 750; text-align: center; text-transform: uppercase; }
.consultation-days { margin-top: 7px; }
.consultation-day-placeholder { min-height: 44px; }
.consultation-day { display: grid; min-width: 0; min-height: 44px; place-items: center; padding: 0; color: #667d89; background: transparent; border: 1px solid transparent; border-radius: 12px; font: inherit; font-size: .88rem; }
.consultation-day:disabled { opacity: .58; }
.consultation-day.is-today { border-color: #b8d8dc; }
.consultation-day.is-available { color: #073b35; background: #c9f3e4; border-color: #85dbc2; cursor: pointer; font-weight: 800; box-shadow: inset 0 0 0 1px rgb(255 255 255 / 55%); }
.consultation-day.is-available:hover { color: #fff; background: #087f83; border-color: #087f83; }
.consultation-day.is-available:focus-visible { outline: 3px solid var(--ocean); outline-offset: 2px; }
.consultation-day.is-selected { color: #fff; background: var(--navy); border-color: var(--navy); }
.contact-aside .consultation-calendar-note { min-height: 1.35em; margin-top: 14px; color: #617a87; font-size: .78rem; line-height: 1.45; }
.consultation-time-panel { padding: 17px 18px; background: rgb(255 255 255 / 10%); border: 1px solid rgb(255 255 255 / 24%); border-radius: 16px; }
.consultation-time-panel[hidden] { display: none; }
.consultation-time-panel .consultation-time-title { margin: 0 0 10px; color: #fff; font-size: .9rem; font-weight: 750; text-transform: capitalize; }
.consultation-form { display: grid; gap: 16px; }
.consultation-form[hidden] { display: none; }
.consultation-form .form-field { gap: 6px; }
.consultation-form .form-field label { color: #fff; font-weight: 750; }
.consultation-form .form-field input,
.consultation-form .form-field select { min-height: 48px; background: rgb(255 255 255 / 96%); border-color: rgb(255 255 255 / 35%); }
.consultation-form .form-field input:focus,
.consultation-form .form-field select:focus { border-color: #8be9d0; outline-color: rgb(139 233 208 / 34%); }
.consultation-form .form-note { color: rgb(255 255 255 / 76%); }
.consultation-form .form-note a { color: #fff; }
.consultation-form-status { color: #fff; }
.consultation-form-status[data-state="error"] { color: #ffe2e2; }
.consultation-form-status[data-state="success"] { color: #d4ffed; }
.consultation-times { display: grid; grid-template-columns: repeat(auto-fit, minmax(82px, 104px)); gap: 8px; }
.consultation-slot { position: relative; min-width: 0; }
.consultation-slot input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.consultation-slot label { display: grid; min-height: 46px; place-items: center; padding: 9px 8px; color: #fff; background: rgb(255 255 255 / 10%); border: 1px solid rgb(255 255 255 / 28%); border-radius: 12px; cursor: pointer; font-size: .9rem; font-weight: 750; transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease; }
.consultation-slot label:hover { background: rgb(255 255 255 / 17%); border-color: rgb(255 255 255 / 52%); }
.consultation-slot input:checked + label { color: var(--navy); background: #fff; border-color: #fff; box-shadow: 0 9px 24px rgb(7 30 56 / 18%); }
.consultation-slot input:focus-visible + label { outline: 3px solid #8be9d0; outline-offset: 3px; }
.consultation-form button[aria-busy="true"] { cursor: wait; opacity: .76; }

.websitepilot-page { overflow: clip; }
.package-stage { position: relative; display: grid; min-height: 610px; grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr); align-items: center; gap: clamp(38px, 7vw, 88px); overflow: hidden; margin-top: clamp(40px, 5vw, 64px); padding: clamp(42px, 7vw, 82px); color: #fff; background: radial-gradient(circle at 96% 8%, rgb(53 208 161 / 42%), transparent 25rem), var(--gradient); border-radius: 42px; box-shadow: 0 38px 90px rgb(11 42 74 / 22%); scroll-margin-top: 150px; }
.package-stage::before { content: ""; position: absolute; width: 590px; height: 590px; right: -260px; top: -325px; }
.package-stage::after { content: ""; position: absolute; width: 370px; height: 370px; right: -150px; top: -215px; }
.package-stage > * { position: relative; z-index: 1; min-width: 0; }
.package-stage .eyebrow { color: #8be9d0; }
.package-stage h2 { max-width: 650px; color: #fff; }
.package-stage-copy > p:not(.eyebrow) { max-width: 620px; margin-top: 24px; color: rgb(255 255 255 / 78%); font-size: clamp(1.06rem, 1.8vw, 1.24rem); }
@media (min-width: 641px) {
    .package-stage-intro span { display: block; white-space: nowrap; }
}
.package-stage-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.package-stage-facts span { padding: 9px 12px; color: #fff; background: rgb(255 255 255 / 10%); border: 1px solid rgb(255 255 255 / 18%); border-radius: 11px; font-size: .86rem; font-weight: 700; backdrop-filter: blur(10px); }
.package-stage-facts strong { font-family: "Quicksand", sans-serif; }
.package-stage-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 34px; }
.package-stage-actions .button { padding-inline: 14px; font-size: .9rem; }
.package-stage .button-ghost { color: #fff; background: transparent; border-color: rgb(255 255 255 / 35%); box-shadow: none; }
.package-stage .button-light:hover,
.package-stage .button-light:focus-visible { color: #fff; background: var(--navy); border-color: var(--navy); box-shadow: 0 18px 34px rgb(11 42 74 / 20%); }
.package-stage .button-ghost:hover,
.package-stage .button-ghost:focus-visible { color: var(--navy); background: var(--soft-glass-color); border-color: var(--soft-glass-border); box-shadow: 0 13px 28px rgb(11 42 74 / 14%); }
.package-ticket { position: relative; min-height: 440px; padding: clamp(30px, 3.2vw, 38px); background: rgb(3 32 54 / 31%); border: 1px solid rgb(255 255 255 / 20%); border-radius: 30px; box-shadow: inset 0 1px 0 rgb(255 255 255 / 18%), 0 24px 50px rgb(0 17 34 / 22%); backdrop-filter: blur(18px) saturate(1.18); }
.package-ticket-main { position: relative; min-height: 476px; }
.package-ticket-label { color: #8be9d0; font-size: .8rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.package-price { display: flex; align-items: flex-end; gap: 14px; margin-top: 28px; }
.package-price strong { font-family: "Quicksand", sans-serif; font-size: clamp(4.8rem, 9vw, 7.2rem); letter-spacing: -.07em; line-height: .82; }
.package-price span { padding-bottom: 7px; color: #fff; font-size: .9rem; line-height: 1.45; }
.package-ticket ul { display: grid; gap: 15px; max-width: none; margin: 34px 0 0; padding: 0; list-style: none; }
.package-ticket li { display: flex; gap: 11px; align-items: center; color: rgb(255 255 255 / 91%); }
.package-ticket li:nth-child(-n+5) span { white-space: nowrap; }
.package-ticket li:last-child { align-items: flex-start; padding-right: 90px; }
.package-ticket li:last-child::before { margin-top: 1.7px; }
.package-referral-copy > span { display: block; white-space: nowrap; }
.package-ticket li::before { content: "✓"; display: grid; flex: 0 0 23px; height: 23px; place-items: center; color: var(--navy); background: #82efd1; border-radius: 50%; font-size: .72rem; font-weight: 900; }
.package-person { position: absolute; right: -80px; bottom: -70px; z-index: 2; width: 176px; padding: 0; color: #fff; background: transparent; border: 0; cursor: pointer; filter: drop-shadow(0 16px 26px rgb(0 15 34 / 25%)); }
.package-person-visual { display: block; border-radius: 50%; transition: transform 220ms cubic-bezier(.2, .75, .25, 1), filter 220ms ease; }
.package-person img { display: block; width: 100%; height: auto; }
.package-person-label { position: absolute; right: 50%; bottom: 8px; padding: 7px 11px; color: var(--navy); background: rgb(255 255 255 / 94%); border: 1px solid rgb(255 255 255 / 70%); border-radius: 999px; box-shadow: 0 10px 24px rgb(0 24 44 / 24%); font-family: "Quicksand", sans-serif; font-size: .76rem; font-weight: 800; opacity: 1; pointer-events: none; transform: translate(50%, 0); transition: color 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease; white-space: nowrap; }
.package-person:hover .package-person-visual,
.package-person:focus-visible .package-person-visual { filter: brightness(1.04); transform: scale(1.075); }
.package-person:hover .package-person-label,
.package-person:focus-visible .package-person-label { color: #fff; background: var(--navy); border-color: var(--navy); opacity: 1; transform: translate(50%, 0); }
.package-person:focus-visible { outline: none; }
.package-person:focus-visible .package-person-visual { box-shadow: 0 0 0 4px #fff, 0 0 0 8px var(--mint); }
.package-about-panel { position: relative; display: grid; min-height: 476px; align-content: center; justify-items: center; gap: 11px; padding-inline: 12px; text-align: center; }
.package-about-panel[hidden] { display: none; }
.package-about-close { position: absolute; top: -14px; right: -14px; display: grid; width: 46px; height: 46px; place-items: center; color: #fff; background: rgb(255 255 255 / 10%); border: 1px solid rgb(255 255 255 / 32%); border-radius: 50%; cursor: pointer; transition: color 180ms ease, background 180ms ease, transform 180ms ease; }
.package-about-close svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.package-about-close:hover { color: var(--navy); background: #82efd1; transform: rotate(4deg); }
.package-about-close:focus-visible { outline-color: #fff; }
.package-about-portrait { display: block; width: 220px; height: auto; margin-bottom: 2px; filter: drop-shadow(0 16px 28px rgb(0 17 34 / 28%)); }
.package-about-panel h3 { max-width: 390px; color: #fff; }
.package-about-panel > p:last-child { max-width: 430px; color: rgb(255 255 255 / 82%); font-size: .91rem; line-height: 1.65; }

.package-topic-shell { position: relative; z-index: 2; margin-top: -30px; scroll-margin-top: 144px; }
.package-topic-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); align-items: start; gap: 10px; }
.package-topic { min-width: 0; min-height: 154px; overflow: hidden; border-radius: 18px; transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease; }
.package-topic[open] { border-color: #a9deda; box-shadow: 0 22px 54px rgb(11 42 74 / 12%); }
.package-topic summary { position: relative; display: grid; min-height: 152px; align-content: start; gap: 9px; padding: 22px 42px 20px 18px; cursor: pointer; list-style: none; }
.package-topic[open] summary { min-height: auto; }
.package-topic summary::-webkit-details-marker { display: none; }
.package-topic summary:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: -4px; border-radius: 16px; }
.package-topic summary strong { color: var(--navy); font-family: "Quicksand", sans-serif; font-size: 1rem; line-height: 1.25; }
.package-topic-domain-title { width: calc(100% + 24px); }
.package-topic-domain-title > span { display: block; white-space: nowrap; }
.package-topic-intro { color: var(--ink-soft); font-size: .79rem; line-height: 1.55; }
.package-topic-toggle { position: absolute; right: 15px; bottom: 15px; display: grid; width: 27px; height: 27px; place-items: center; color: var(--ocean); background: #e7f8f7; border: 1px solid #ccebea; border-radius: 50%; font-size: 1.15rem; line-height: 1; transition: transform 200ms ease, color 200ms ease, background 200ms ease; }
.package-topic[open] .package-topic-toggle { color: #fff; background: var(--ocean); border-color: var(--ocean); transform: none; }
.package-topic-details { padding: 0 22px 24px; border-top: 1px solid var(--line); }
.package-topic-details ul { display: grid; gap: 10px; margin: 20px 0 0; padding-left: 18px; color: var(--ink-soft); font-size: .88rem; }
.package-topic-next { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--ocean); font-family: "Quicksand", sans-serif; font-size: .84rem; font-weight: 700; text-decoration: none; text-underline-offset: 4px; }
.package-topic-next:hover { text-decoration: underline; }
.package-topic-next:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 4px; border-radius: 4px; }
.package-topic-next:hover .button-arrow,
.package-topic-next:focus-visible .button-arrow { transform: translateX(4px); }
@media (hover: hover) {
    .package-topic:hover { border-color: #b8dfdd; box-shadow: 0 20px 48px rgb(11 42 74 / 12%); transform: translateY(-3px); }
}
@media (min-width: 981px) {
    .package-topic-grid:has(.package-topic[open]) { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .package-topic[open] { grid-column: 1 / -1; order: -1; }
}
@media (max-width: 1100px) {
    .package-stage { grid-template-columns: 1fr; }
    .package-ticket { width: min(620px, 100%); justify-self: center; }
}
.customer-input { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(36px, 7vw, 86px); align-items: start; padding: clamp(38px, 6vw, 70px); border-radius: 32px; }
.customer-input-copy { max-width: 530px; margin-top: 18px; color: var(--ink-soft); }
.customer-input-help { display: grid; justify-items: start; gap: 10px; margin-top: 28px; }
.customer-input-help-title { color: var(--navy); font-family: "Quicksand", sans-serif; font-size: 1rem; font-weight: 700; line-height: 1.25; }
.customer-input-help .button { min-height: 44px; padding: 10px 16px; border-radius: 12px; font-size: .88rem; }
.customer-input-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.customer-input-list > div { min-height: 196px; padding: 22px; border-radius: 19px; }
.customer-input-list span { display: grid; width: 52px; height: 52px; place-items: center; margin: -1px 0 20px -1px; color: #fff; background: linear-gradient(135deg, #0b2a4a, #174f70); border: 5px solid #fff; border-radius: 50%; box-shadow: 0 6px 18px rgb(11 42 74 / 16%); font-family: "Quicksand", sans-serif; font-size: .73rem; font-weight: 700; letter-spacing: .04em; }
.customer-input-list > div:nth-child(2) span { background: linear-gradient(135deg, #075f7d, #087c9c); }
.customer-input-list > div:nth-child(3) span { background: linear-gradient(135deg, #087c9c, #0f9db2); }
.customer-input-list > div:nth-child(4) span { background: linear-gradient(135deg, #087f83, #22ad9a); }
.customer-input-list strong { display: block; color: var(--navy); font-family: "Quicksand", sans-serif; font-size: 1.2rem; }
.customer-input-list p { margin-top: 7px; color: var(--ink-soft); font-size: .88rem; }

.extras-section { position: relative; overflow: hidden; padding: clamp(38px, 6vw, 70px); color: #fff; background: radial-gradient(circle at 96% 8%, rgb(53 208 161 / 42%), transparent 25rem), var(--gradient); border-radius: 32px; box-shadow: var(--shadow); }
.extras-section::before, .extras-section::after { content: ""; position: absolute; }
.extras-section::before { width: 820px; height: 820px; right: -400px; bottom: -440px; }
.extras-section::after { width: 580px; height: 580px; right: -280px; bottom: -320px; }
.extras-section > * { position: relative; z-index: 1; }
.extras-section .section-heading h2 { color: #fff; }
.extras-section .section-heading .eyebrow { color: #d9fff5; }
.extras-section .section-heading p:not(.eyebrow) { color: rgb(255 255 255 / 82%); }
.extras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; }
.extra-card { min-height: 340px; padding: clamp(25px, 3vw, 34px); color: var(--navy); border-radius: 24px; }
.extra-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.extra-card-top span { padding: 7px 10px; color: #fff; background: var(--navy); border-radius: 9px; font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.extra-card-top strong { color: var(--navy); font-family: "Quicksand", sans-serif; font-size: 1.45rem; }
.extra-card h3 { margin-bottom: 14px; }
.extra-card p { color: var(--ink-soft); font-size: .92rem; }
.custom-work-note { display: grid; grid-template-columns: minmax(230px, .65fr) 1.35fr; gap: 32px; align-items: center; margin-top: 18px; padding: 28px 32px; color: var(--navy); border-radius: 20px; }
.custom-work-note > p { color: var(--ink-soft); }

.process-section { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(42px, 8vw, 105px); align-items: start; }
.process-intro { position: static; }
.process-intro > p:last-child { margin-top: 18px; color: var(--ink-soft); }
.process-track { position: relative; display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.process-track::before { content: ""; position: absolute; left: 38px; top: 32px; bottom: 32px; width: 1px; background: linear-gradient(var(--ocean), #b9e8dd); }
.process-track li { position: relative; display: grid; grid-template-columns: 76px 1fr; gap: 0; align-items: center; padding: 23px 24px 23px 0; border-radius: 20px; }
.process-track li > span { position: relative; z-index: 1; display: grid; width: 52px; height: 52px; place-items: center; margin-inline: auto; color: #fff; background: linear-gradient(135deg, #0b2a4a, #174f70); border: 4px solid #fff; border-radius: 50%; box-shadow: 0 6px 18px rgb(11 42 74 / 16%); font-family: "Quicksand", sans-serif; font-size: .73rem; font-weight: 700; }
.process-track li:nth-child(2) > span { background: linear-gradient(135deg, #075f7d, #087c9c); }
.process-track li:nth-child(3) > span { background: linear-gradient(135deg, #087c9c, #0f9db2); }
.process-track li:nth-child(4) > span { background: linear-gradient(135deg, #087f83, #22ad9a); }
.process-track li:nth-child(5) > span { background: linear-gradient(135deg, #13745f, #35a97f); }
.process-track li:nth-child(6) > span { background: linear-gradient(135deg, #176b50, #4cae78); }
.process-track h3 { margin-bottom: 6px; }
.process-track p { color: var(--ink-soft); font-size: .92rem; }
.pilot-final { --lens-opacity: .52; position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; overflow: hidden; padding: clamp(38px, 6vw, 68px); color: #fff; background: var(--gradient); border-radius: 32px; box-shadow: var(--shadow); }
.pilot-final::before, .pilot-final::after { content: ""; position: absolute; }
.pilot-final::before { width: 560px; height: 560px; right: -250px; bottom: -310px; }
.pilot-final::after { width: 400px; height: 400px; right: -170px; bottom: -230px; }
.pilot-final > * { position: relative; z-index: 1; }
.pilot-final h2 { max-width: 720px; color: #fff; }
.pilot-final p { max-width: 650px; margin-top: 14px; color: rgb(255 255 255 / 78%); }

/* Marijn Media-signatuur: gevulde transparante lensvlakken, geen contourringen. */
.service-card-primary::after,
.service-card-primary::before,
.included::after,
.included::before,
.price-card::after,
.price-card::before,
.contact-aside::after,
.contact-aside::before,
.package-stage::before,
.package-stage::after,
.extras-section::before,
.extras-section::after,
.pilot-final::after,
.pilot-final::before {
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 27% 23%, rgb(255 255 255 / 15%) 0 7%, transparent 34%),
        linear-gradient(145deg, rgb(255 255 255 / 12%) 0%, rgb(17 184 199 / 7%) 48%, rgb(53 208 161 / 14%) 100%);
    background-color: rgb(255 255 255 / 4%);
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 50%;
    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 17%),
        inset -24px -20px 48px rgb(7 30 56 / 5%),
        0 14px 38px rgb(7 30 56 / 5%);
    backdrop-filter: blur(4px) saturate(1.1);
    opacity: var(--lens-opacity, .64);
}

.service-card-primary::after,
.included::after,
.price-card::after,
.contact-aside::after,
.package-stage::after,
.extras-section::after,
.pilot-final::after {
    background-color: rgb(255 255 255 / 5%);
}
.pilot-final .button { color: var(--navy); background: var(--soft-glass-color); border-color: var(--soft-glass-border); }
.pilot-final .button:hover,
.pilot-final .button:focus-visible { color: #fff; background: var(--navy); border-color: var(--navy); }

/* Eén rustige, bijna-ondoorzichtige materiaalstijl voor structurele witte vlakken. */
.hero-center-panel,
.hero-icon-card,
.art-card,
.trust-item,
.service-card:not(.service-card-primary),
.feature-card:not(.feature-card-inverse),
.ict-service-card,
.stack-card,
.faq-list details,
.cta-panel,
.contact-card,
.compact-step,
.contact-shell,
.package-topic,
.customer-input-list > div,
.extra-card,
.custom-work-note,
.process-track li {
    background: var(--soft-glass-color);
    border: 1px solid var(--soft-glass-border);
    box-shadow: var(--soft-glass-shadow);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.legal { max-width: 900px; overflow-wrap: anywhere; }
.legal h2 { margin: 52px 0 16px; }
.legal h3 { margin: 30px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul, .legal ol { display: grid; gap: 9px; padding-left: 24px; }
.legal-draft-notice { margin-bottom: 34px; padding: 20px 24px; color: var(--navy); background: #fff7d7; border: 1px solid #eadb9d; border-radius: 16px; }

.site-footer { position: relative; isolation: isolate; display: grid; grid-template-columns: 1fr; margin-top: var(--section-gap); padding-bottom: 24px; color: var(--ink-soft); background: var(--glass); border-top: 1px solid var(--line); }
.site-footer::before { position: absolute; z-index: -1; inset-block: 0; left: 50%; width: 100vw; content: ""; transform: translateX(-50%); background: var(--glass); }
.footer-main { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(400px, .9fr); align-items: center; gap: clamp(36px, 4vw, 56px); padding-block: clamp(34px, 4vw, 50px); }
.footer-contact { display: grid; grid-template-columns: clamp(144px, 11vw, 156px) minmax(0, 1fr); align-items: center; gap: clamp(22px, 2.5vw, 34px); }
.footer-portrait { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; }
.footer-contact-copy { max-width: 540px; }
.footer-contact-title { color: var(--navy); font-family: "Quicksand", sans-serif; font-size: clamp(1.7rem, 2.2vw, 2.05rem); font-weight: 700; line-height: 1.08; letter-spacing: -.035em; }
.footer-contact-text { max-width: 52ch; margin-top: 10px; font-size: clamp(.98rem, 1.15vw, 1.04rem); line-height: 1.55; }
.footer-contact-button { width: fit-content; min-height: 44px; margin-top: 16px; padding: 9px 16px; border-radius: 12px; font-size: .92rem; }
.footer-brand-panel { --footer-brand-width: clamp(210px, 21vw, 272px); --footer-logo-visible-right-inset: clamp(24.15px, 2.415vw, 31.28px); display: grid; align-content: center; justify-items: end; min-height: 0; text-align: right; }
.site-footer .brand { display: inline-flex; width: var(--footer-brand-width); }
.site-footer .brand img { width: 100%; height: auto; }
.footer-brand-copy { display: grid; justify-items: end; gap: 2px; box-sizing: border-box; width: var(--footer-brand-width); max-width: none; margin-top: 12px; padding-right: var(--footer-logo-visible-right-inset); color: var(--ink-soft); font-size: clamp(.98rem, 1.15vw, 1.04rem); line-height: 1.55; text-align: right; }
.footer-brand-copy span { display: block; }
.analytics-badge { display: none; }
.analytics-badge img { display: none; width: 210px; height: 50px; }
.footer-meta { display: flex; grid-column: 1 / -1; align-items: center; justify-content: space-between; gap: 12px 28px; width: 100%; max-width: none; padding-top: 22px; border-top: 1px solid var(--line); font-size: .83rem; }
.footer-email { color: var(--brand-cyan-dark); text-decoration-thickness: 1px; text-underline-offset: 4px; }
.footer-legal-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 22px; }
.footer-legal-links a { text-decoration-thickness: 1px; text-underline-offset: 4px; }

@media (min-width: 981px) {
    .site-footer .brand { transform: scale(.8); transform-origin: 88.5% center; }
}

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 480ms ease, transform 480ms cubic-bezier(.2, .7, .2, 1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 90ms; }
[data-reveal-delay="2"] { transition-delay: 180ms; }

@keyframes shape-breathe {
    from { border-radius: 46% 54% 43% 57% / 42% 40% 60% 58%; transform: translateY(-4px); }
    to { border-radius: 52% 48% 55% 45% / 49% 55% 45% 51%; transform: translateY(7px); }
}

@media (max-width: 980px) {
    .page-hero { min-height: auto; grid-template-columns: 1fr; padding-top: 50px; }
    .hero-art { width: min(680px, 100%); min-height: 520px; margin-inline: auto; }
    .portrait-art { width: min(680px, 80%); margin-inline: auto; }
    .home-hero-portrait { width: min(680px, 100%); margin-inline: auto; }
    .hero-visual { width: min(680px, 100%); min-height: 520px; margin-inline: auto; }
    .flow-shape { inset: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .feature-grid:not(.feature-grid-two) { grid-template-columns: repeat(2, 1fr); }
    .ict-service-grid { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; }
    .sticky-heading { position: static; }
    .cta-panel { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 28px; }
    .footer-contact { grid-template-columns: 144px minmax(0, 1fr); }
    .footer-brand-panel { justify-items: start; min-height: auto; text-align: left; }
    .compact-about, .contact-shell, .media-split { grid-template-columns: 1fr; }
    .media-split { padding-inline-end: 0; }
    .media-split > .portrait-art { order: -1; }
    .contact-aside { min-height: 520px; }
    .consultation-panel { min-height: auto; }
    .customer-input, .process-section { grid-template-columns: 1fr; }
    .package-topic-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .package-topic[open] { grid-column: span 3; }
    .extras-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .page-hero { gap: 14px; padding-block: 16px var(--mobile-hero-bottom-space); }
    .page-hero > :last-child { order: -1; margin-top: -24px; }
    .page-hero.about-hero > .portrait-art { margin-top: -38px; }
    .page-hero > :first-child { margin-top: -34px; }
    .page-hero .eyebrow { margin-bottom: 12px; }
    .page-hero h1 span { white-space: normal; }
    .hero-title-wide { white-space: normal; }
    .hero-actions { display: grid; }
    .hero-actions .button { width: 100%; }
    .home-hero-portrait { width: min(460px, 100%); }
    .hero-visual { min-height: 420px; }
    .flow-shape { border-radius: 44% 56% 42% 58% / 36% 38% 62% 64%; }
    .hero-center-panel { top: 15%; left: 9%; width: 82%; }
    .browser-body { min-height: 158px; padding: 12px; }
    .browser-sitebar { gap: 8px; padding-inline: 10px; }
    .browser-copy strong { font-size: .85rem; }
    .browser-copy p { margin-block: 6px 9px; }
    .hero-icon-card { width: 88px; min-height: 88px; border-radius: 25px; }
    .hero-icon-card svg { width: 48px; height: 48px; }
    .hero-card-top { top: -9%; left: 27%; }
    .hero-card-lower-left { left: 28%; bottom: -3%; }
    .hero-card-lower-right { right: 6%; bottom: 4%; }
    .website-hero-visual:not(.service-hero-layers) { min-height: 520px; }
    .website-hero-visual .hero-center-panel { top: 27%; left: 9%; width: 82%; }
    .website-hero-visual .browser-body { min-height: 158px; padding-top: 20px; }
    .website-hero-visual .hero-card-top { top: 0; left: 35%; }
    .website-hero-visual .hero-card-lower-left { left: 20%; bottom: 2%; }
    .website-hero-visual .hero-card-lower-right { right: 0; bottom: 2%; }
    .hero-art { min-height: 390px; border-radius: 43% 57% 48% 52% / 39% 43% 57% 61%; }
    .art-card { padding: 17px; border-radius: 18px; }
    .art-window { inset: 15% 6% 14%; }
    .window-bar { padding-bottom: 12px; }
    .window-body { min-height: 230px; grid-template-columns: 1fr .65fr; gap: 10px; }
    .window-copy strong { font-size: 1.35rem; }
    .window-copy p { font-size: .76rem; }
    .trust-row { grid-template-columns: 1fr; margin-top: var(--mobile-hero-card-gap); }
    .feature-grid, .feature-grid-two, .check-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 420px; padding: 30px 24px; }
    .service-icon { margin-bottom: 42px; }
    #diensten,
    #wat-je-krijgt,
    #mogelijkheden,
    #contact,
    #kennismaking,
    #inbegrepen,
    #basis-websitepakket,
    #extra-diensten,
    #zo-werkt-het { scroll-margin-top: 120px; }
    .feature-list { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: auto; }
    .service-hero-layers { min-height: 0; }
    .ict-service-card { padding: 26px 22px; }
    .ict-service-icon { width: 58px; height: 58px; margin-bottom: 24px; border-radius: 18px; }
    .ict-service-icon svg { width: 32px; height: 32px; }
    .ict-example-list li { grid-template-columns: 16px minmax(0, 1fr); overflow-wrap: anywhere; }
    .ict-services-action { align-items: stretch; flex-direction: column; gap: 18px; padding-top: 4px; }
    .ict-services-action .button { width: 100%; }
    .compact-process { grid-template-columns: 1fr; }
    .contact-shell { border-radius: 24px; }
    .contact-aside { min-height: 460px; }
    .consultation-panel { min-height: auto; padding: 34px 22px 40px; }
    .package-stage { min-height: auto; margin-top: 40px; padding: 38px 22px 48px; border-radius: 28px; }
    .package-stage-actions { display: grid; margin-top: 19px; }
    .package-stage-actions .button { width: 100%; }
    .package-ticket { min-height: 430px; padding: 28px 12px; }
    .package-ticket li { gap: 14px; font-size: .97rem; }
    .package-ticket-main { min-height: 0; }
    .package-ticket li:nth-child(-n+5) span { white-space: normal; }
    .package-ticket li:last-child { padding-right: 0; }
    .package-person { position: relative; right: auto; bottom: auto; display: block; width: 184px; margin: 4px -38px -68px auto; }
    .package-about-panel { min-height: 500px; padding: 18px 4px 8px; }
    .package-about-close { top: -12px; right: 0; }
    .package-about-portrait { width: 220px; }
    .package-topic-shell { margin-top: 14px; }
    .package-topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .package-topic { min-height: 132px; }
    .package-topic[open] { grid-column: span 2; }
    .package-topic summary { min-height: 130px; padding: 18px 38px 17px 15px; }
    .package-topic summary strong { font-size: .94rem; }
    .package-topic-intro { font-size: .75rem; }
    .package-topic-toggle { right: 12px; bottom: 12px; }
    .package-topic-details { padding: 0 18px 22px; }
    .extras-grid { grid-template-columns: 1fr; }
    .customer-input { padding: 32px 22px; border-radius: 24px; }
    .customer-input-list { grid-template-columns: 1fr; }
    .extra-card { min-height: auto; }
    .custom-work-note { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
    .extras-section { padding: 34px 20px; border-radius: 24px; }
    .process-track::before { left: 34px; }
    .process-track li { grid-template-columns: 68px 1fr; padding-right: 18px; }
    .process-track li > span { width: 48px; height: 48px; }
    .pilot-final { grid-template-columns: 1fr; padding: 34px 24px; border-radius: 24px; }
    /* Alle inhoudelijke merkkleur-gradients gebruiken op mobiel één schermbrede, hoekloze oppervlakregel. */
    html .brand-gradient-block {
        box-sizing: border-box;
        width: 100vw;
        max-width: none;
        margin-inline: calc(50% - 50vw);
        border-radius: 0;
    }
    .contact-shell:has(> .brand-gradient-block) { overflow: visible; }
    .footer-meta { align-items: flex-start; }
}

@media (max-width: 640px) {
    .footer-main { gap: 30px; padding-block: 34px 30px; }
    .footer-contact { grid-template-columns: 1fr; justify-items: center; gap: 12px; text-align: center; }
    .footer-portrait { width: 104px; }
    .footer-contact-copy { display: grid; justify-items: center; max-width: 380px; }
    .footer-contact-title { max-width: 16ch; }
    .footer-contact-text { max-width: 32ch; }
    .footer-brand-panel { justify-items: center; text-align: center; }
    .site-footer .brand { transform: translateX(calc(var(--footer-logo-visible-right-inset) / 2)); }
    .footer-brand-copy { justify-items: end; width: calc(var(--footer-brand-width) - var(--footer-logo-visible-right-inset)); padding-right: 0; text-align: right; }
    .footer-meta { align-items: center; flex-direction: column; gap: 10px; text-align: center; }
    .footer-legal-links { justify-content: center; gap: 8px 16px; }
    .footer-legal-links a { display: inline-flex; align-items: center; min-height: 44px; padding-inline: 4px; }
}

@media (max-width: 480px) {
    .footer-main { padding-block: 32px 28px; }
    .footer-portrait { width: 96px; }
    .footer-contact-title { font-size: 1.65rem; }
    .footer-brand-panel { --footer-brand-width: min(220px, 100%); --footer-logo-visible-right-inset: 25.3px; }
}

.frontend-management-controls {
    position: fixed;
    right: max(18px, env(safe-area-inset-right, 0px));
    bottom: max(18px, env(safe-area-inset-bottom, 0px));
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 10px;
}

.frontend-management-form { margin: 0; }

.frontend-management-button {
    display: grid;
    width: 56px;
    height: 56px;
    margin: 0;
    padding: 0;
    place-items: center;
    color: var(--navy);
    background: rgb(255 255 255 / 96%);
    border: 1px solid var(--soft-glass-border);
    border-radius: 50%;
    box-shadow: 0 14px 32px rgb(11 42 74 / 18%);
    cursor: pointer;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.frontend-management-button.is-primary {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.frontend-management-button.is-primary.is-active {
    color: var(--navy);
    background: var(--mint);
    border-color: var(--mint);
}

.frontend-management-button:hover,
.frontend-management-button:focus-visible {
    color: var(--white);
    background: var(--ocean);
    border-color: var(--ocean);
    box-shadow: 0 18px 38px rgb(11 42 74 / 26%);
    transform: translateY(-2px);
}

.frontend-management-button:focus-visible {
    outline-color: var(--navy);
}

.frontend-management-button.is-primary:hover,
.frontend-management-button.is-primary:focus-visible {
    color: var(--navy);
    background: var(--mint);
    border-color: var(--mint);
}

.frontend-management-button svg {
    width: 25px;
    height: 25px;
    stroke: currentcolor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (min-width: 768px) {
    .frontend-management-controls {
        right: max(28px, env(safe-area-inset-right, 0px));
        bottom: max(28px, env(safe-area-inset-bottom, 0px));
    }

    .frontend-management-button {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 390px) {
    .feature-grid { min-width: 0; }
    .feature-card { min-width: 0; padding: 22px 18px; }
    .hero-visual { min-height: 370px; }
    .website-hero-visual:not(.service-hero-layers) { min-height: 450px; }
    .hero-center-panel { left: 8%; width: 84%; padding: 8px; border-radius: 16px; }
    .browser-body { min-height: 135px; }
    .website-hero-visual .hero-center-panel { left: 8%; width: 84%; }
    .website-hero-visual .browser-body { min-height: 144px; padding-top: 18px; }
    .website-hero-visual .hero-card-lower-left { bottom: -3%; }
    .website-hero-visual .hero-card-lower-right { bottom: -3%; }
    .hero-icon-card { width: 78px; min-height: 78px; }
    .hero-icon-card svg { width: 43px; height: 43px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-art,
    .flow-shape,
    .hero-icon-card::before { animation: none; }
    .button,
    .button-arrow,
    .service-card,
    .service-card-primary::after,
    .card-link,
    .feature-link svg,
    .package-person-visual,
    .package-person-label,
    .package-about-close,
    .package-topic,
    .package-topic-toggle,
    .frontend-management-button,
    [data-reveal] { transition-duration: .01ms; }
    .hero-art, [data-reveal] { opacity: 1; transform: none; }
}

/* Vastgezette Websites-compositie: op elk scherm schaalt het complete beeld als een geheel. */
.home-hero-artwork,
.website-hero-composite,
.ict-hero-composite {
    aspect-ratio: 1920 / 2112;
    min-height: 0;
}

.home-hero-image,
.website-hero-master,
.ict-hero-master {
    display: block;
    width: 100%;
    height: auto;
}

.website-hero-composite > :not(.website-hero-master),
.ict-hero-composite > :not(.ict-hero-master) {
    display: none;
}

@media (min-width: 1200px) {
    .home-hero-artwork,
    .website-hero-composite,
    .ict-hero-composite,
    .service-hero-layers {
        width: 120%;
        justify-self: center;
    }
}
