/* =====================================================================
   Preventiehuis - design system
   Palette: white (#ffffff) dominant, electric blue (#0036f7) for CTAs and
   accents, near-black ink for text, dark band (#11141b) for editorial pace.
   Bold Hanken Grotesk display type, generous rhythm.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
    --white: #ffffff;
    --surface: #ffffff;
    --surface-alt: #f6f4f1;     /* warm off-white for alternating sections */
    --surface-warm: #faf8f4;
    --dark: #11141b;            /* high-contrast editorial band */
    --dark-2: #1a1a1a;          /* footer */

    --blue: #0036f7;            /* CTA / interactive */
    --blue-700: #0029d0;
    --accent: #0036f7;          /* accent = brand blue (eyebrows, accent lines, labels) */
    --accent-soft: #9fb2ff;     /* light blue for accents on dark backgrounds */

    --text: #1a1a1a;
    --text-soft: #545454;
    --text-mute: #7c7670;
    --on-dark: #ffffff;
    --on-dark-soft: rgba(255, 255, 255, 0.74);

    --border: #e7e2db;
    --border-strong: #d8d2c8;

    --success: #2e7d52;
    --success-bg: #eaf5ef;
    --error: #c8362f;
    --error-bg: #fceceb;

    --dot: rgba(0, 54, 247, 0.18);

    --radius-btn: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(20, 18, 15, 0.05), 0 2px 8px rgba(20, 18, 15, 0.04);
    --shadow-md: 0 8px 30px rgba(20, 18, 15, 0.08);
    --shadow-lg: 0 24px 60px rgba(20, 18, 15, 0.13);
    --shadow-blue: 0 10px 24px rgba(0, 54, 247, 0.22);

    --container: 1200px;
    --container-narrow: 760px;
    --section-pad: clamp(3.5rem, 2.4rem + 5vw, 6.5rem);
    --header-h: 104px; /* set precisely by JS; fallback for no-JS */

    --font: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1); /* expo-out, like the inspiration */
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
    font-family: var(--font);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    /* Prevent the off-screen mobile nav overlay (translateX 100%) and
       any decorative overflow from causing horizontal page scroll. */
    overflow-x: clip;
}
html { overflow-x: clip; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
/* Default icon size; component rules below override where needed. */
.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 2px;
    border-radius: 3px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -100px;
    z-index: 200;
    background: var(--blue);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-btn);
    font-weight: 600;
    transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    text-wrap: balance;
}
h1, .h1 { font-size: clamp(2.2rem, 1.35rem + 3.7vw, 3.65rem); }
h2, .h2 { font-size: clamp(1.7rem, 1.2rem + 2.1vw, 2.6rem); }
h3, .h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem); font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { text-wrap: pretty; }
strong, b { font-weight: 700; }

.lead {
    font-size: clamp(1.12rem, 1.02rem + 0.5vw, 1.32rem);
    line-height: 1.55;
    color: var(--text-soft);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.eyebrow::before {
    content: "";
    width: 1.75rem;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.eyebrow--center { justify-content: center; }
.section--dark .eyebrow { color: var(--accent-soft); }
.section--dark .eyebrow::before { background: var(--accent-soft); }

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1.1rem, 0.5rem + 2.5vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-pad); }
.section--alt { background: var(--surface-alt); }
.section--warm { background: var(--surface-warm); }
.section--dark { background: var(--dark); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--on-dark); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 2.5vw, 4rem); }

.section-head { max-width: 620px; margin-bottom: clamp(2rem, 1.5rem + 1.5vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 0.9rem; color: var(--text-soft); font-size: 1.1rem; }
.section--dark .section-head p { color: var(--on-dark-soft); }

.stack > * + * { margin-top: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1;
    padding: 0.95rem 1.5rem;
    border-radius: var(--radius-btn);
    border: 2px solid transparent;
    text-decoration: none;
    transition: background 0.18s var(--ease), color 0.18s var(--ease),
                border-color 0.18s var(--ease), transform 0.18s var(--ease),
                box-shadow 0.18s var(--ease);
    min-height: 48px;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 1.15em; height: 1.15em; }

.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--blue-700); }
.btn--outline { background: transparent; border-color: var(--blue); color: var(--blue); }
.btn--outline:hover { background: rgba(0, 54, 247, 0.06); }
.btn--ghost { background: transparent; color: var(--text); padding-inline: 0.4rem; }
.btn--ghost:hover { color: var(--blue); transform: none; }
.btn--light { background: #fff; color: var(--blue); }
.btn--light:hover { background: #f1f0ee; }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,0.55); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn--sm { padding: 0.7rem 1.15rem; min-height: 42px; font-size: 0.92rem; }
.btn--lg { padding: 1.1rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

/* Inline text link with arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--blue);
}
.link-arrow .icon { width: 1.1em; height: 1.1em; transition: transform 0.18s var(--ease); }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover .icon { transform: translateX(4px); }

/* ---------- Header / nav (floating pill) ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding-top: clamp(0.6rem, 0.3rem + 0.8vw, 1.1rem);
    pointer-events: none; /* let the gap above the pill be click-through */
}
.nav-shell {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 0.5rem + 2vw, 2rem);
}
.site-header__pill {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 64px;
    padding: 0.5rem 0.6rem 0.5rem 1.35rem;
    background: rgba(255, 255, 255, 0.86);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    backdrop-filter: saturate(160%) blur(14px);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 24px rgba(20, 18, 15, 0.06);
    transition: box-shadow 0.3s var(--ease-expo), background 0.3s var(--ease-expo);
}
.site-header.is-scrolled .site-header__pill {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 38px rgba(20, 18, 15, 0.13);
}

.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--text); font-weight: 800; letter-spacing: -0.02em; }
.brand:hover { text-decoration: none; }
.brand__logo { height: 72px; width: auto; display: block; }
.brand__mark { width: 34px; height: 34px; color: var(--blue); flex-shrink: 0; }
.brand__name { font-size: 1.28rem; }
.brand--light { color: #fff; }
.brand--light .brand__mark { color: var(--accent-soft); }
/* Footer: real logo on a white rounded chip so it reads on the dark footer */
.brand--chip { background: #fff; padding: 0.7rem 0.95rem; border-radius: 14px; }
.brand--chip .brand__logo { height: 64px; }
/* (kept for backwards compatibility if used elsewhere) */
.brand--invert .brand__logo { height: 64px; filter: brightness(0) invert(1); }

.primary-nav { margin-left: auto; }
.primary-nav__list { display: flex; align-items: center; gap: 0.35rem; }
.primary-nav__link {
    display: inline-block;
    padding: 0.6rem 0.85rem;
    color: var(--text);
    font-weight: 500;
    border-radius: var(--radius-btn);
    position: relative;
}
.primary-nav__link:hover { color: var(--blue); text-decoration: none; }
.primary-nav__link.is-active { color: var(--blue); }
.primary-nav__link.is-active::after {
    content: "";
    position: absolute;
    left: 0.85rem; right: 0.85rem; bottom: 0.3rem;
    height: 2px; background: var(--blue); border-radius: 2px;
}
.primary-nav__cta-item { margin-left: 0.6rem; }
/* Nav CTA uses the same full rounding as the pill navbar */
.primary-nav__cta-item .btn { border-radius: var(--radius-pill); }

/* Desktop dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    min-width: 320px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 0.6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown__list { display: grid; gap: 0.15rem; }
.dropdown__list a {
    display: flex; align-items: center; gap: 0.7rem;
    padding: 0.7rem 0.8rem; border-radius: 10px;
    color: var(--text); font-weight: 500; font-size: 0.97rem;
}
.dropdown__list a:hover { background: var(--surface-alt); text-decoration: none; color: var(--blue); }
.dropdown__icon { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }

/* Nav toggle (mobile) */
.nav-toggle {
    display: none;
    margin-left: auto;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-btn);
    padding: 0.55rem 0.85rem;
    font-weight: 600;
    color: var(--text);
}
.nav-toggle__bars { display: inline-grid; gap: 4px; width: 20px; }
.nav-toggle__bars span { height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.2s var(--ease), opacity 0.2s var(--ease); }

@media (max-width: 959px) {
    /* Drop backdrop-filter on mobile: it creates a containing block that would
       trap the position:fixed nav overlay inside the header instead of the viewport. */
    .site-header__pill {
        flex-wrap: wrap;
        border-radius: 18px;
        background: #fff;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .js .nav-toggle { display: inline-flex; }
    .js .primary-nav {
        position: fixed;
        inset: 0;
        margin: 0;
        background: #fff;
        padding: 6rem 1.5rem 2.5rem;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s var(--ease);
        box-shadow: var(--shadow-lg);
    }
    .js .site-header.nav-open .primary-nav { transform: translateX(0); }
    /* Keep the logo and close button above the full-screen overlay. */
    .js .site-header.nav-open .brand,
    .js .nav-toggle { position: relative; z-index: 110; }
    .js .site-header.nav-open .nav-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .js .site-header.nav-open .nav-toggle__bars span:nth-child(2) { opacity: 0; }
    .js .site-header.nav-open .nav-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .primary-nav__list { flex-direction: column; align-items: stretch; gap: 0.2rem; }
    .primary-nav__link { font-size: 1.15rem; padding: 0.85rem 0.5rem; border-bottom: 1px solid var(--border); border-radius: 0; }
    .primary-nav__link.is-active::after { display: none; }
    .primary-nav__cta-item { margin: 1.2rem 0 0; }
    .primary-nav__cta-item .btn { width: 100%; }

    /* Dropdown becomes an inline sublist on mobile */
    .dropdown {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: 0; padding: 0.3rem 0 0.6rem 0.6rem; min-width: 0;
        border-bottom: 1px solid var(--border);
    }
    .dropdown__list a { padding: 0.55rem 0.4rem; font-size: 1.02rem; }

    /* No-JS fallback: nav stacks under the header, fully reachable */
    .no-js .primary-nav { width: 100%; margin: 0; order: 3; padding-block: 0.5rem 1rem; }
    .no-js .primary-nav__list { flex-direction: column; align-items: stretch; }
    .no-js .primary-nav__link { padding: 0.7rem 0.3rem; border-bottom: 1px solid var(--border); }
    .no-js .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 0.6rem; min-width: 0; }
}

/* ---------- Hero ---------- */
/* Pulled up under the sticky floating nav so the background fills the area
   behind and above the nav; content is padded back down to clear it. */
.hero { position: relative; overflow: hidden; background: var(--surface); margin-top: calc(-1 * var(--header-h)); }
.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 1rem + 4vw, 4.5rem);
    align-items: center;
    padding-top: calc(var(--header-h) + clamp(1.25rem, 0.8rem + 2vw, 2.75rem));
    padding-bottom: clamp(2.8rem, 2rem + 4vw, 5rem);
}
.hero__title { margin-bottom: 1.1rem; }
.hero__title .accent { color: var(--blue); }
.hero__lead { max-width: 46ch; margin-bottom: 1.6rem; }
.hero__cta { margin-bottom: 1.8rem; }

.hero__media { position: relative; }
.media-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--surface-alt);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.media-frame--tall img { aspect-ratio: 3 / 4; }
.hero__media .dot-grid {
    position: absolute;
    width: 46%;
    height: 55%;
    right: -1.5rem;
    bottom: -1.5rem;
    z-index: -1;
    border-radius: var(--radius-lg);
}
.dot-grid {
    background-image: radial-gradient(var(--dot) 1.6px, transparent 1.6px);
    background-size: 17px 17px;
}

/* Floating stat badge over hero image */
.hero__badge {
    position: absolute;
    left: -1.1rem;
    bottom: 1.6rem;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    max-width: 17rem;
    border-top: 3px solid var(--accent);
}
.hero__badge .num { font-size: 2.3rem; font-weight: 800; color: var(--blue); line-height: 1; letter-spacing: -0.03em; }
.hero__badge .txt { font-size: 0.9rem; color: var(--text-soft); line-height: 1.35; }
.hero__badge .txt strong { color: var(--text); display: block; }
.hero__badge-ic { width: 40px; height: 40px; border-radius: 50%; background: rgba(0, 54, 247, 0.1); color: var(--blue); display: grid; place-items: center; flex-shrink: 0; }
.hero__badge-ic .icon { width: 22px; height: 22px; }

/* ---------- Stat callout ---------- */
.stat-callout { display: flex; flex-direction: column; }
.stat-callout .stat-label {
    font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
    font-weight: 700; color: var(--accent); margin-bottom: 0.25rem;
}
.stat-callout .stat-number { font-size: clamp(3rem, 2.2rem + 3vw, 4.4rem); font-weight: 800; color: var(--blue); line-height: 0.95; letter-spacing: -0.03em; }
.stat-callout .stat-desc { font-size: 1rem; color: var(--text); margin-top: 0.35rem; }

.hero__stat {
    display: flex; align-items: center; gap: 1.1rem;
    padding: 1rem 1.25rem; border-left: 3px solid var(--accent);
    background: var(--surface-alt); border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 1.6rem; width: fit-content;
}
.hero__stat .stat-number { font-size: clamp(2.6rem, 2rem + 2vw, 3.4rem); font-weight: 800; color: var(--blue); line-height: 1; letter-spacing: -0.03em; }
.hero__stat .stat-text { font-size: 0.95rem; color: var(--text-soft); max-width: 16ch; }
.hero__stat .stat-text strong { color: var(--text); }

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.trust-strip__inner { display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; align-items: center; padding-block: 1.15rem; justify-content: space-between; }
.trust-item { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 0.95rem; color: var(--text); }
.trust-item .icon { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }

/* ---------- Cost / dark band ---------- */
.cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.cost-card { padding: 1.6rem 0; border-top: 1px solid rgba(255,255,255,0.16); }
.cost-card .num { font-size: clamp(2rem, 1.5rem + 1.8vw, 2.9rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1; color: #fff; }
.cost-card .lbl { margin-top: 0.6rem; color: var(--on-dark-soft); font-size: 0.98rem; }

/* ---------- Service cards ---------- */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.service-grid--3 { grid-template-columns: repeat(3, 1fr); }
.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 1.2rem + 1vw, 2rem);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card__icon {
    width: 52px; height: 52px; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--surface-alt); color: var(--text);
    margin-bottom: 1.1rem;
}
.service-card__icon .icon { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card__eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.13em; font-weight: 700; color: var(--accent); margin-bottom: 0.7rem; }
.service-card p { color: var(--text-soft); font-size: 0.98rem; }
.service-card__outcome {
    margin-top: 1rem; padding-top: 0.9rem; border-top: 1px dashed var(--border-strong);
    display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.92rem; color: var(--text); font-weight: 600;
}
.service-card__outcome .icon { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.service-card__link { margin-top: 1.2rem; }
.service-card__cta-cover { position: absolute; inset: 0; border-radius: var(--radius); }
.service-card__cta-cover span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Steps (process) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; counter-reset: step; }
.step { position: relative; padding-top: 0.5rem; }
.step__num {
    display: inline-grid; place-items: center;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--surface-alt); color: var(--blue);
    font-weight: 800; font-size: 1.15rem; margin-bottom: 1rem;
    border: 1px solid var(--border);
}
.section--dark .step__num { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.18); }
.step h3 { margin-bottom: 0.45rem; }
.step p { color: var(--text-soft); font-size: 0.98rem; }
.section--dark .step p { color: var(--on-dark-soft); }

/* ---------- Case study / quote ---------- */
.case-study {
    display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 1rem + 3vw, 4rem);
    align-items: center;
}
.case-study__stat { border-left: 4px solid var(--accent); padding-left: 1.5rem; }
.case-study__stat .stat-number { font-size: clamp(4rem, 3rem + 4vw, 6.5rem); font-weight: 800; color: var(--blue); line-height: 0.9; letter-spacing: -0.04em; }
.case-study__stat .stat-desc { font-size: 1.2rem; font-weight: 600; margin-top: 0.4rem; }
.case-study__stat .stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); font-weight: 700; margin-bottom: 0.6rem; }
.case-study__quote blockquote { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.75rem); line-height: 1.4; font-weight: 600; letter-spacing: -0.01em; }
.case-study__quote cite { display: block; margin-top: 1.3rem; font-style: normal; font-size: 1rem; color: var(--text-soft); }
.case-study__quote cite strong { color: var(--text); display: block; font-size: 1.05rem; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testi-card {
    background: var(--surface-alt);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.7rem 1.6rem;
    display: flex; flex-direction: column;
}
.testi-card blockquote { font-size: 1.05rem; line-height: 1.55; font-style: italic; color: var(--text); }
.testi-card__author { margin-top: 1.2rem; }
.testi-card__author .name { font-weight: 700; }
.testi-card__author .role { color: var(--text-soft); font-size: 0.92rem; }
.testi-card__badge {
    align-self: flex-start; margin-bottom: 1rem;
    display: inline-flex; align-items: baseline; gap: 0.4rem;
}
.testi-card__badge .num { font-size: 1.9rem; font-weight: 800; color: var(--blue); letter-spacing: -0.03em; }
.testi-card__badge .lbl { font-size: 0.85rem; color: var(--text-soft); font-weight: 600; }

/* ---------- Pull quote (centered) ---------- */
.pullquote { max-width: 780px; margin-inline: auto; text-align: center; }
.pullquote blockquote { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.95rem); line-height: 1.4; font-weight: 600; letter-spacing: -0.01em; }
.pullquote figcaption { margin-top: 1.3rem; color: var(--text-soft); }
.pullquote figcaption strong { color: var(--text); }
.pullquote .link-arrow { margin-top: 1.3rem; justify-content: center; }

/* ---------- About / Bob teaser ---------- */
.about-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.about-split__media { position: relative; }
.about-split__media .dot-grid { position: absolute; left: -1.4rem; top: -1.4rem; width: 45%; height: 50%; z-index: -1; border-radius: var(--radius-lg); }
.about-credentials { display: grid; gap: 0.75rem; margin-top: 1.6rem; }
.about-credentials li { display: flex; gap: 0.7rem; align-items: flex-start; }
.about-credentials .icon { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; transition: transform 0.4s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-note {
    grid-column: 1 / -1; padding: 1.5rem; border: 1px dashed var(--border-strong);
    border-radius: var(--radius); background: var(--surface-warm); color: var(--text-soft); font-size: 0.95rem;
}

/* ---------- FAQ (native disclosure, works without JS) ---------- */
.faq-list { display: grid; gap: 0.8rem; max-width: 820px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }
.faq-item summary {
    list-style: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.15rem 1.3rem; font-weight: 700; font-size: 1.08rem; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: ""; flex-shrink: 0; width: 12px; height: 12px;
    border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
    transform: rotate(45deg); transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item__body { padding: 0 1.3rem 1.3rem; color: var(--text-soft); }
.faq-item__body p + p { margin-top: 0.8rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--dark); color: var(--on-dark); border-radius: var(--radius-lg); padding: clamp(2.2rem, 1.6rem + 3vw, 4rem); position: relative; overflow: hidden; }
.cta-band__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; max-width: 720px; }
.cta-band h2 { color: #fff; margin-bottom: 0.8rem; }
.cta-band p { color: var(--on-dark-soft); font-size: 1.1rem; }
.cta-band__proof { text-align: right; }
.cta-band__proof .num { font-size: clamp(3rem, 2.2rem + 3vw, 4.5rem); font-weight: 800; color: #fff; line-height: 0.9; letter-spacing: -0.03em; }
.cta-band__proof .lbl { color: var(--accent-soft); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; margin-top: 0.5rem; }
.cta-band .dot-grid-bg { position: absolute; inset: 0; opacity: 0.5; --dot: rgba(255,255,255,0.07); z-index: 0; }
.cta-band > * { position: relative; z-index: 1; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--surface-alt); border-bottom: 1px solid var(--border); margin-top: calc(-1 * var(--header-h)); }
.page-hero__inner { padding-top: calc(var(--header-h) + clamp(1.5rem, 1rem + 2vw, 3rem)); padding-bottom: clamp(2.5rem, 2rem + 3vw, 4.5rem); max-width: 720px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.88rem; color: var(--text-mute); margin-bottom: 1.1rem; }
.breadcrumb a { color: var(--text-soft); }
.breadcrumb span[aria-current] { color: var(--text); font-weight: 600; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead { max-width: 60ch; }

/* ---------- Rich text (content pages) ---------- */
.prose { max-width: 70ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul { display: grid; gap: 0.6rem; }
.prose ul li { display: flex; gap: 0.65rem; align-items: flex-start; }
.prose ul li::before {
    content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px;
    background: var(--surface-alt); border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230036f7' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center; background-size: 14px;
}
.prose ol { counter-reset: n; display: grid; gap: 1rem; }
.prose ol li { counter-increment: n; display: flex; gap: 0.85rem; align-items: flex-start; }
.prose ol li::before { content: counter(n); flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 700; display: grid; place-items: center; font-size: 0.95rem; }

.callout {
    border-left: 4px solid var(--accent); background: var(--surface-alt);
    padding: 1.3rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; margin-block: 1.6rem;
}
.callout strong { color: var(--text); }

/* Service page: intro split with sticky CTA aside */
.lead-split { display: grid; grid-template-columns: 1.55fr 0.85fr; gap: clamp(2rem, 1rem + 3vw, 4rem); align-items: start; }
.aside-cta {
    position: sticky; top: 100px;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    display: grid; gap: 1rem;
}
.aside-cta p { font-size: 0.97rem; color: var(--text-soft); }
.aside-cta__eyebrow { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.13em; font-weight: 700; color: var(--accent); }
.aside-cta__lead { font-size: 1rem; color: var(--text-soft); }
.aside-cta__points { display: grid; gap: 0.6rem; }
.aside-cta__points li { display: flex; gap: 0.6rem; align-items: flex-start; font-weight: 600; font-size: 0.95rem; }
.aside-cta__points .icon { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* Deliver checklist */
.deliver-list { display: grid; gap: 0.9rem; }
.deliver-list li {
    display: flex; gap: 0.85rem; align-items: flex-start;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.1rem 1.3rem; font-weight: 600;
}
.deliver-list .icon { width: 24px; height: 24px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }

/* For-who / two-column info cards */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; }
.info-card__icon { width: 46px; height: 46px; border-radius: 11px; background: var(--surface-alt); display: grid; place-items: center; color: var(--accent); margin-bottom: 1rem; }
.info-card h3 { margin-bottom: 0.45rem; }
.info-card p { color: var(--text-soft); font-size: 0.97rem; }

/* ---------- Forms ---------- */
.form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 3vw, 3.5rem); align-items: start; }
.form-card { background: var(--surface-alt); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem); border: 1px solid var(--border); }
.form { display: grid; gap: 1.15rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 600; font-size: 0.95rem; }
.field .req { color: var(--accent); }
.field .hint { font-size: 0.85rem; color: var(--text-mute); }
.field input, .field select, .field textarea {
    font: inherit; width: 100%;
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-btn);
    background: #fff; color: var(--text);
    transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
    min-height: 48px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,54,247,0.15);
}
.field--error input, .field--error select, .field--error textarea { border-color: var(--error); }
.field__error { color: var(--error); font-size: 0.88rem; font-weight: 600; display: flex; align-items: center; gap: 0.35rem; }
.field__error .icon { width: 1rem; height: 1rem; }
.form-alert .icon { width: 1.25rem; height: 1.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }

.checkbox { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.92rem; color: var(--text-soft); }
.checkbox input { width: 20px; height: 20px; min-height: 0; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; }

.form-alert { padding: 1rem 1.2rem; border-radius: var(--radius-btn); font-weight: 600; display: flex; gap: 0.6rem; align-items: flex-start; }
.form-alert .icon { flex-shrink: 0; margin-top: 2px; }
.form-alert--error { background: var(--error-bg); color: var(--error); border: 1px solid #f3c6c3; }
.form-alert--success { background: var(--success-bg); color: var(--success); border: 1px solid #bfe2cf; }

.contact-aside { display: grid; gap: 1.3rem; align-content: start; }
.contact-aside__item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-aside__item .icon { width: 24px; height: 24px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.contact-aside__item .label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); font-weight: 700; }
.contact-aside__item a, .contact-aside__item p { font-weight: 600; color: var(--text); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-2); color: var(--on-dark-soft); border-top: 3px solid var(--accent); margin-top: 0; }
.site-footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-block: clamp(3rem, 2.5rem + 2vw, 4.5rem);
}
.site-footer__brand .brand { margin-bottom: 1rem; }
.site-footer__tagline { color: #fff; font-weight: 700; margin-bottom: 0.7rem; }
.site-footer__desc { font-size: 0.95rem; max-width: 38ch; }
.site-footer__social { display: inline-flex; align-items: center; gap: 0.55rem; margin-top: 1.2rem; color: #fff; font-weight: 600; }
.site-footer__social .icon { width: 22px; height: 22px; color: var(--accent-soft); }
.site-footer__social:hover { color: var(--accent-soft); text-decoration: none; }
.site-footer__heading { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.13em; color: #fff; font-weight: 700; margin-bottom: 1.1rem; }
.site-footer__col ul { display: grid; gap: 0.6rem; }
.site-footer__col a { color: var(--on-dark-soft); font-size: 0.96rem; }
.site-footer__col a:hover { color: var(--blue); text-decoration: none; }
.site-footer__contact a:hover { color: #fff; }
.site-footer__nap { font-size: 0.9rem; line-height: 1.6; margin-top: 0.4rem; }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,0.1); }
.site-footer__bar-inner { display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; justify-content: space-between; align-items: center; padding-block: 1.3rem; font-size: 0.88rem; }
.site-footer__legal { display: flex; gap: 1.3rem; }
.site-footer__legal a { color: var(--on-dark-soft); }
.site-footer__legal a:hover { color: #fff; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.divider { height: 1px; background: var(--border); border: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Scroll reveal (JS only; content visible without JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 0.1s; }
.js .reveal[data-delay="2"] { transition-delay: 0.2s; }
.js .reveal[data-delay="3"] { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
    .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1024px) {
    .service-grid--3, .info-cards, .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .cost-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 880px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__media { order: -1; max-width: 460px; }
    .case-study { grid-template-columns: 1fr; gap: 2rem; }
    .lead-split { grid-template-columns: 1fr; }
    .aside-cta { position: static; }
    .about-split { grid-template-columns: 1fr; }
    .about-split__media { max-width: 460px; order: -1; }
    .steps, .service-grid, .service-grid--3, .testi-grid, .info-cards { grid-template-columns: 1fr; }
    .form-layout { grid-template-columns: 1fr; }
    .cta-band__grid { grid-template-columns: 1fr; }
    .cta-band__proof { text-align: left; }
    .cost-grid { grid-template-columns: 1fr; gap: 0; }
    .cost-card { padding: 1.3rem 0; }
    /* Footer: stack 4 columns -> 2 on tablet */
    .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
    .field-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero__badge { left: 0.5rem; bottom: 0.5rem; padding: 0.8rem 1rem; }
    .btn-row .btn { width: 100%; }
    /* Footer: full stack on phone so nothing cuts off */
    .site-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
    .site-footer__bar-inner { flex-direction: column; align-items: flex-start; }
}

/* =====================================================================
   Motion & dynamic elements (inspired by the Daylight scroll feel,
   rendered in Preventiehuis colours). All optional: with JS off or
   reduced motion, everything is static and fully visible.
   ===================================================================== */

/* ---- Animated gradient atmosphere on the hero ---- */
.hero__aura {
    position: absolute;
    inset: -15% -10% auto -10%;
    height: 130%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(38% 50% at 18% 22%, rgba(0, 54, 247, 0.10), transparent 70%),
        radial-gradient(46% 58% at 88% 65%, rgba(0, 54, 247, 0.13), transparent 72%);
    animation: aura-drift 20s ease-in-out infinite alternate;
}
.hero__inner { position: relative; z-index: 1; }
@keyframes aura-drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(0, -3%, 0) scale(1.07); }
}

/* ---- Animated glow on dark bands ---- */
.section--dark, .cta-band { position: relative; overflow: hidden; }
.section--dark::before, .cta-band::before {
    content: "";
    position: absolute; inset: -20%;
    z-index: 0; pointer-events: none;
    background:
        radial-gradient(40% 60% at 12% 0%, rgba(0, 54, 247, 0.42), transparent 60%),
        radial-gradient(45% 65% at 100% 100%, rgba(0, 54, 247, 0.30), transparent 62%);
    animation: glow-drift 18s ease-in-out infinite alternate;
}
.section--dark > .container { position: relative; z-index: 1; }
@keyframes glow-drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(3%, -5%, 0) scale(1.12); }
}

/* ---- Oversized faded background type (texture) ---- */
.bg-type {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.8;
    font-size: clamp(7rem, 4rem + 22vw, 20rem);
    white-space: nowrap;
    user-select: none;
}
.section--dark .bg-type { color: rgba(255, 255, 255, 0.045); top: -0.2em; right: -0.1em; }

/* ---- Word-by-word headline reveal ---- */
.js .reveal-words .word {
    display: inline-block;
    overflow: hidden;
    padding-bottom: 0.14em;
    margin-bottom: -0.14em;
    vertical-align: bottom;
}
.js .reveal-words .word > span {
    display: inline-block;
    transform: translateY(115%);
    transition: transform 0.85s var(--ease-expo);
}
.js .reveal-words.is-visible .word > span { transform: translateY(0); }
.js .reveal-words .word:nth-child(1) > span { transition-delay: 0.02s; }
.js .reveal-words .word:nth-child(2) > span { transition-delay: 0.09s; }
.js .reveal-words .word:nth-child(3) > span { transition-delay: 0.16s; }
.js .reveal-words .word:nth-child(4) > span { transition-delay: 0.23s; }
.js .reveal-words .word:nth-child(5) > span { transition-delay: 0.30s; }
.js .reveal-words .word:nth-child(6) > span { transition-delay: 0.37s; }
.js .reveal-words .word:nth-child(7) > span { transition-delay: 0.44s; }
.js .reveal-words .word:nth-child(8) > span { transition-delay: 0.51s; }

/* ---- Count-up numbers keep stable width ---- */
.countup { font-variant-numeric: tabular-nums; }

/* ---- Parallax (transform driven by JS) ---- */
[data-parallax] { will-change: transform; }

/* ---- Scroll-storytelling section ---- */
/* Flat CSS grid: each step + matching panel share a row, so the panel stretches
   to the same height as its step (top of blue border to bottom of blue border). */
.scrolly__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(2rem, 1rem + 4vw, 5rem);
    row-gap: 1.5rem;
    align-items: stretch;
}
.scrolly__intro { grid-column: 1 / -1; max-width: 760px; margin-bottom: 1rem; }
.scrolly__step {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 2px solid var(--border);
    padding: 1.5rem 0 1.5rem 1.6rem;
    transition: border-color 0.4s var(--ease-expo), opacity 0.4s var(--ease-expo);
}
/* The tall + dimmed storytelling treatment is desktop + JS only.
   Without JS or on mobile, steps are a normal, full-opacity stacked list. */
@media (min-width: 881px) {
    .js .scrolly__step { min-height: 64vh; opacity: 0.45; }
    .js .scrolly__step.is-active { opacity: 1; }
}
.scrolly__step.is-active { border-color: var(--blue); }
.scrolly__step .step__num { transition: background 0.4s var(--ease-expo), color 0.4s var(--ease-expo); }
.scrolly__step.is-active .step__num { background: var(--blue); color: #fff; border-color: var(--blue); }
.scrolly__step h3 { margin-bottom: 0.5rem; }
.scrolly__step p { color: var(--text-soft); }

.scrolly__panel {
    display: flex;
    align-items: stretch;
    justify-content: center;
    opacity: 0.45;
    transition: opacity 0.5s var(--ease-expo);
}
.scrolly__panel.is-active { opacity: 1; }

/* Mini visual cards inside the storytelling panels.
   The card stretches to fill its panel (= its step's full height). */
.viz-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.viz-card__label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; color: var(--accent); margin-bottom: 1.2rem; }
.viz-bar { margin-bottom: 1.1rem; }
.viz-bar:last-child { margin-bottom: 0; }
.viz-bar__top { display: flex; justify-content: space-between; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.4rem; }
.viz-bar__track { height: 10px; border-radius: 6px; background: var(--surface-alt); overflow: hidden; }
.viz-bar__fill { height: 100%; border-radius: 6px; background: var(--blue); width: 0; transition: width 1s var(--ease-expo); }
.scrolly__panel.is-active .viz-bar__fill { width: var(--w, 60%); }
.viz-bar__fill--soft { background: var(--accent); }

.viz-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.viz-icons span {
    aspect-ratio: 1; display: grid; place-items: center;
    background: var(--surface-alt); border-radius: 12px; color: var(--text);
    border: 1px solid var(--border);
}
.viz-icons span.is-on { background: #fff; border-color: var(--accent); color: var(--accent); box-shadow: 0 6px 16px rgba(0, 54, 247,0.18); }
.viz-icons .icon { width: 24px; height: 24px; }

.viz-result { text-align: center; }
.viz-result__title { font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.4rem); font-weight: 800; color: var(--blue); letter-spacing: -0.02em; }
.viz-result .lbl { font-weight: 600; color: var(--text-soft); margin-top: 0.4rem; }
.viz-trend { display: flex; align-items: flex-end; justify-content: center; gap: 0.7rem; height: 130px; margin-bottom: 1.3rem; }
.viz-trend span { width: 36px; border-radius: 7px 7px 0 0; background: var(--blue); }
.viz-trend span:nth-child(2) { opacity: 0.6; }
.viz-trend span:nth-child(3) { opacity: 0.32; }

@media (max-width: 880px) {
    /* On mobile the storytelling collapses to a clean stacked list (panels hidden). */
    .scrolly__grid { grid-template-columns: 1fr; }
    .scrolly__panel { display: none; }
    .scrolly__step { min-height: 0; opacity: 1; padding: 1.1rem 0 1.1rem 1.4rem; }
    .scrolly__step.is-active { border-color: var(--border); }
}

@media (prefers-reduced-motion: reduce) {
    .hero__aura, .section--dark::before, .cta-band::before { animation: none; }
    .js .reveal-words .word > span { transform: none !important; transition: none; }
    [data-parallax] { transform: none !important; }
    .js .scrolly__step { min-height: 0 !important; opacity: 1 !important; }
    .scrolly__panel { opacity: 1 !important; }
}
