/* ==========================================================================
   Stegeman Hasselt — Custom Theme Stylesheet v1.1
   Fonts: DM Serif Display + Plus Jakarta Sans
   Kleuren: #004480 (blauw) | #4e8cd0 (accent) | #ffffff (wit)
   ========================================================================== */

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

:root {
    --blue: #004480;
    --blue-deep: #00315e;
    --blue-dark: #001f3d;
    --blue-mid: #005da6;
    --blue-light: #2b87d1;
    --blue-pale: #e8f2fc;
    --accent: #4e8cd0;
    --accent-dark: #3a73b5;
    --white: #ffffff;
    --off-white: #f7f9fc;
    --gray-50: #f1f4f8;
    --gray-100: #e3e8ef;
    --gray-200: #c9d1dc;
    --gray-300: #adb8c8;
    --gray-400: #8d99ae;
    --gray-500: #6b7a90;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --gray-900: #0d1117;
    --font-display: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --transition: .25s cubic-bezier(.4, 0, .2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 31, 61, .06);
    --shadow: 0 4px 16px rgba(0, 31, 61, .08);
    --shadow-md: 0 6px 24px rgba(0, 31, 61, .1);
    --shadow-lg: 0 12px 40px rgba(0, 31, 61, .12);
    --shadow-xl: 0 20px 60px rgba(0, 31, 61, .16);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--blue-mid); }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    text-transform: none;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); font-weight: 700; }

p + p { margin-top: 1em; }

.overline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.overline::before {
    content: '';
    width: 32px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.btn--primary:hover {
    background: var(--blue-deep);
    border-color: var(--blue-deep);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 68, 128, .3);
}

.btn--white {
    background: var(--white);
    color: var(--blue);
    border-color: var(--white);
}

.btn--white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .3);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

.btn--outline:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 68, 128, .25);
}


/* ==========================================================================
   HEADER — TOP BAR
   ========================================================================== */
.header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-wrap.hide-top .top-bar {
    transform: translateY(-100%);
    margin-bottom: -36px;
}

.top-bar {
    background: var(--blue-dark);
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
    font-weight: 500;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1),
                margin-bottom .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    z-index: 2;
}

.top-bar__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
}

.top-bar__left {
    display: flex;
    align-items: center;
}

.top-bar__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(78, 140, 208, .12);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    border: 1px solid rgba(78, 140, 208, .18);
}

.top-bar__badge svg { width: 12px; height: 12px; }

.top-bar__right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar__link {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color var(--transition);
}

.top-bar__link:hover { color: var(--white); }
.top-bar__link svg { width: 14px; height: 14px; opacity: .55; }

.top-bar__divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .15);
}


/* ==========================================================================
   HEADER — MAIN NAV
   ========================================================================== */
.header-main {
    background: var(--white);
    position: relative;
    z-index: 3;
    border-bottom: 1px solid transparent;
    transition: box-shadow .4s ease, border-color .4s ease;
    overflow: visible;
}

.header-wrap.scrolled .header-main {
    box-shadow: 0 4px 30px rgba(0, 31, 61, .08);
    border-bottom-color: rgba(0, 68, 128, .06);
}

.header-main__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    transition: height .3s ease;
}

.header-wrap.scrolled .header-main__inner { height: 64px; }

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo__img {
    height: 44px;
    width: auto;
    transition: height .3s ease;
}

.header-wrap.scrolled .logo__img { height: 38px; }

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 auto;
}

.nav__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 18px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav__link:hover {
    color: var(--blue);
    background: var(--blue-pale);
}

.nav__link.active { color: var(--blue); }

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.nav__link svg {
    width: 15px;
    height: 15px;
    opacity: .5;
    transition: transform var(--transition), opacity var(--transition);
}

/* Mega menu */
.nav__mega { position: static; }

.nav__mega:hover .nav__link svg {
    transform: rotate(180deg);
    opacity: .8;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    box-shadow: 0 20px 60px rgba(0, 31, 61, .12), 0 1px 3px rgba(0, 31, 61, .06);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s cubic-bezier(.4, 0, .2, 1),
                visibility .25s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
    z-index: 100;
}

/* Bridge: invisible area between nav link and menu to maintain hover */
.nav__mega::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    transform: translateY(100%);
}

.nav__mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mega-menu__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 32px;
}

/* Left: diensten grid */
.mega-menu__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gray-400);
    margin-bottom: 16px;
    padding-left: 4px;
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--gray-600);
    transition: all var(--transition);
    min-width: 0;
}

.mega-item:hover {
    background: var(--blue-pale);
    color: var(--blue);
}

.mega-item__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all var(--transition);
}

.mega-item:hover .mega-item__icon {
    background: rgba(0, 68, 128, .1);
}

.mega-item__icon svg {
    width: 16px;
    height: 16px;
    color: var(--blue);
    opacity: .7;
}

.mega-item__text {
    min-width: 0;
    overflow: hidden;
}

.mega-item__text strong {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-item:hover .mega-item__text strong { color: var(--blue); }

.mega-item__text span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 11.5px;
    color: var(--gray-400);
    line-height: 1.4;
    margin-top: 2px;
}

.mega-menu__all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.mega-menu__all:hover {
    background: var(--blue-pale);
}

.mega-menu__all svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.mega-menu__all:hover svg { transform: translateX(3px); }

/* Right: CTA sidebar */
.mega-menu__side-card {
    background: linear-gradient(165deg, var(--blue-dark) 0%, var(--blue) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mega-menu__side-badge {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 140, 208, .15);
    border-radius: 50%;
    margin-bottom: 16px;
    border: 1px solid rgba(78, 140, 208, .2);
}

.mega-menu__side-badge svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.mega-menu__side-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white);
}

.mega-menu__side-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.55;
    margin-bottom: 20px;
}

.mega-menu__side-card .btn--sm {
    padding: 10px 20px;
    font-size: 13px;
}

.mega-menu__side-card .btn--primary {
    background: var(--white);
    color: var(--blue-dark);
    border-color: var(--white);
}

.mega-menu__side-card .btn--primary:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* Header right */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.header-phone:hover {
    color: var(--blue);
    background: var(--blue-pale);
}

.header-phone__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-pale);
    border-radius: 50%;
    transition: all var(--transition);
}

.header-phone:hover .header-phone__icon { background: var(--blue); }
.header-phone__icon svg {
    width: 15px;
    height: 15px;
    color: var(--blue);
    transition: color var(--transition);
}
.header-phone:hover .header-phone__icon svg { color: var(--white); }

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: var(--blue);
    border: 2px solid var(--blue);
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-cta:hover {
    background: var(--blue-deep);
    border-color: var(--blue-deep);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 68, 128, .3);
}

.btn-cta svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.btn-cta:hover svg { transform: translateX(3px); }

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--gray-700);
    transition: all var(--transition);
}

.menu-toggle:hover {
    background: var(--blue-pale);
    border-color: var(--blue-pale);
    color: var(--blue);
}

.menu-toggle svg { width: 22px; height: 22px; }


/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.mobile-menu.open { pointer-events: all; }

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 15, 30, .5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity .35s ease;
}

.mobile-menu.open .mobile-menu__backdrop { opacity: 1; }

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    max-width: 85vw;
    height: 100%;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu__header img { height: 36px; width: auto; }

.mobile-menu__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--gray-600);
    transition: all var(--transition);
}

.mobile-menu__close:hover {
    background: var(--blue-pale);
    color: var(--blue);
}

.mobile-menu__close svg { width: 20px; height: 20px; }

.mobile-menu__nav {
    padding: 16px;
    flex: 1;
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
    background: var(--blue-pale);
    color: var(--blue);
}

.mobile-nav__link svg { width: 18px; height: 18px; opacity: .4; transition: transform var(--transition); }

.mobile-nav__sub {
    padding-left: 16px;
    display: none;
}

.mobile-nav__sub.open { display: block; }

.mobile-nav__sub a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.mobile-nav__sub a:hover {
    background: var(--blue-pale);
    color: var(--blue);
}

.mobile-menu__footer {
    padding: 20px 24px;
    border-top: 1px solid var(--gray-100);
}

.mobile-menu__footer .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
    margin-bottom: 16px;
}

.mobile-menu__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu__contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
}

.mobile-menu__contact svg {
    width: 16px;
    height: 16px;
    color: var(--blue);
    opacity: .7;
}


/* ==========================================================================
   SECTIONS — Basis
   ========================================================================== */
.section {
    padding: 100px 0;
}

.section--gray { background: var(--off-white); }
.section--blue { background: var(--blue); color: var(--white); }
.section--dark { background: var(--blue-dark); color: var(--white); }

.section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section__header h2 { margin-bottom: 12px; }

.section__header p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
}

.section--blue .section__header p,
.section--dark .section__header p {
    color: rgba(255, 255, 255, .65);
}

.section--blue h2,
.section--dark h2 {
    color: var(--white);
}


/* ==========================================================================
   PAGE HEADER (inner pages)
   ========================================================================== */
.page-header {
    background: linear-gradient(165deg, var(--blue-dark) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 140px 0 64px;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78, 140, 208, .06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-header h1 { color: var(--white); margin-bottom: 8px; }

.page-header p {
    opacity: .7;
    max-width: 540px;
    font-size: 16px;
}

.breadcrumbs {
    font-size: 13px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .45);
}

.breadcrumbs a { color: rgba(255, 255, 255, .6); }
.breadcrumbs a:hover { color: var(--white); }


/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.4, 0, .2, 1),
                transform .7s cubic-bezier(.4, 0, .2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger > .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger > .fade-up:nth-child(2) { transition-delay: .08s; }
.stagger > .fade-up:nth-child(3) { transition-delay: .16s; }
.stagger > .fade-up:nth-child(4) { transition-delay: .24s; }
.stagger > .fade-up:nth-child(5) { transition-delay: .32s; }
.stagger > .fade-up:nth-child(6) { transition-delay: .40s; }
.stagger > .fade-up:nth-child(7) { transition-delay: .48s; }
.stagger > .fade-up:nth-child(8) { transition-delay: .56s; }
.stagger > .fade-up:nth-child(9) { transition-delay: .64s; }


/* ==========================================================================
   FOOTER (basis)
   ========================================================================== */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-col__title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-col a { color: var(--gray-400); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--blue-light);
}

.footer-nav a {
    display: block;
    padding: 5px 0;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 48px;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gray-500);
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--gray-500); }
.footer-legal a:hover { color: var(--white); }


/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--blue-dark);
    overflow: hidden;
    padding-top: 108px;
    padding-bottom: 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(0, 20, 45, .88) 0%, rgba(0, 50, 100, .6) 60%, rgba(0, 68, 128, .5) 100%);
    z-index: 2;
}

.hero__grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
}

/* Content */
.hero__content {
    position: relative;
    z-index: 4;
    max-width: 640px;
    color: var(--white);
    padding: 56px 0 88px;
}

.hero__overline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero__overline::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero__title em {
    font-style: normal;
    color: var(--accent);
}

.hero__subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
    max-width: 500px;
    margin-bottom: 32px;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

/* Trust pills */
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.hero__trust-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .45);
}

.hero__trust-label svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
    opacity: .7;
}

/* Bottom services bar */
.hero__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: rgba(0, 15, 35, .45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.hero__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    flex-wrap: wrap;
}

.hero__bottom-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    white-space: nowrap;
    transition: color var(--transition);
}

.hero__bottom-item:hover { color: var(--white); }

.hero__bottom-item svg {
    width: 15px;
    height: 15px;
    color: var(--accent);
    opacity: .5;
}

.hero__bottom-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .1);
}

/* Hero animations */
.anim-hero {
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeUp .6s cubic-bezier(.4, 0, .2, 1) forwards;
}

.anim-hero[data-delay="1"] { animation-delay: .1s; }
.anim-hero[data-delay="2"] { animation-delay: .2s; }
.anim-hero[data-delay="3"] { animation-delay: .35s; }
.anim-hero[data-delay="4"] { animation-delay: .5s; }
.anim-hero[data-delay="5"] { animation-delay: .65s; }

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: .4; }
    50% { opacity: .8; }
}


/* ==========================================================================
   INTRO / OVER ONS
   ========================================================================== */
.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Visual: image + floating badge */
.intro__visual {
    position: relative;
}

.intro__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.intro__placeholder {
    aspect-ratio: 4 / 3;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 14px;
}

.intro__badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(0, 68, 128, .35), 0 0 0 6px var(--white);
    z-index: 2;
}

.intro__badge-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
}

.intro__badge-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-align: center;
    line-height: 1.25;
    margin-top: 2px;
    opacity: .85;
}

/* Content */
.intro__content h2 {
    margin-bottom: 20px;
}

.intro__text {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 15px;
}

.intro__text p {
    margin-bottom: 14px;
}

/* Check list */
.intro__list {
    list-style: none;
    margin: 28px 0 0;
    padding: 28px 0 0;
    border-top: 1px solid var(--gray-100);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.intro__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.5;
}

.intro__list li svg {
    width: 18px;
    height: 18px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 1px;
}

/* Stats */
.intro__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-100);
}

.stat__number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}

.stat__label {
    font-size: 12.5px;
    color: var(--gray-400);
    margin-top: 4px;
    font-weight: 500;
}


/* ==========================================================================
   DIENSTEN GRID
   ========================================================================== */
.diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dienst-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 68, 128, .04);
}

.dienst-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    color: inherit;
    border-color: rgba(0, 68, 128, .08);
}

.dienst-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gray-50);
}

.dienst-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.dienst-card:hover .dienst-card__image img {
    transform: scale(1.06);
}

.dienst-card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dienst-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.dienst-card__excerpt {
    font-size: 14px;
    color: var(--gray-500);
    flex: 1;
    line-height: 1.65;
}

.dienst-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    margin-top: 20px;
}

.dienst-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.dienst-card:hover .dienst-card__link svg {
    transform: translateX(5px);
}


/* ==========================================================================
   USPs
   ========================================================================== */
.usps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.usp {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    transition: all var(--transition);
}

.usp:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .1);
    transform: translateY(-4px);
}

.usp__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 140, 208, .12);
    border-radius: 50%;
    color: var(--accent);
    border: 1px solid rgba(78, 140, 208, .15);
}

.usp__icon svg { width: 26px; height: 26px; }

.usp__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.usp__text {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6;
}


/* ==========================================================================
   WERKWIJZE
   ========================================================================== */
.werkwijze {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.werkwijze::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 27px;
    width: 2px;
    background: var(--gray-100);
}

.werkwijze__step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding-bottom: 48px;
    position: relative;
}

.werkwijze__step:last-child { padding-bottom: 0; }

.werkwijze__number {
    width: 56px;
    height: 56px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px var(--white), var(--shadow);
}

.werkwijze__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.werkwijze__text {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}


/* ==========================================================================
   QUOTE
   ========================================================================== */
.quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 48px 0;
}

.quote__mark {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.6;
    color: var(--blue);
    opacity: .12;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.quote__text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.55;
    margin-bottom: 28px;
    position: relative;
}

.quote__author strong {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--blue);
    font-size: 15px;
}

.quote__author span {
    font-size: 13px;
    color: var(--gray-400);
}


/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq {
    border-bottom: 1px solid var(--gray-100);
}

.faq:first-child {
    border-top: 1px solid var(--gray-100);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 650;
    color: var(--gray-800);
    transition: color var(--transition);
}

.faq__question:hover { color: var(--blue); }

.faq__question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform .3s ease, color .3s ease;
}

.faq.open .faq__question svg {
    transform: rotate(180deg);
    color: var(--blue);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1),
                padding .4s cubic-bezier(.4, 0, .2, 1);
}

.faq.open .faq__answer {
    max-height: 400px;
}

.faq__answer p {
    padding-bottom: 24px;
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.75;
}


/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
    padding: 72px 64px;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-mid) 100%);
    color: var(--white);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-banner__bg::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78, 140, 208, .1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner__bg::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(43, 135, 209, .08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Left: content */
.cta-banner__overline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.cta-banner__overline svg {
    width: 14px;
    height: 14px;
}

.cta-banner__left h2 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.cta-banner__left p {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 32px;
    max-width: 440px;
    font-size: 15px;
    line-height: 1.7;
}

.cta-banner__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Accent button */
.btn--accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn--accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(78, 140, 208, .35);
}

/* White outline button */
.btn--white-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .25);
}

.btn--white-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    transform: translateY(-2px);
}

/* Right: features */
.cta-banner__features {
    display: grid;
    gap: 0;
}

.cta-banner__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.cta-banner__feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cta-banner__feature:first-child {
    padding-top: 0;
}

.cta-banner__feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 140, 208, .12);
    border-radius: 10px;
    border: 1px solid rgba(78, 140, 208, .15);
    flex-shrink: 0;
}

.cta-banner__feature-icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.cta-banner__feature strong {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 2px;
}

.cta-banner__feature span {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.4;
}


/* ==========================================================================
   OVER ONS
   ========================================================================== */

/* Story Hero — cinematic, editorial */
.story-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background: var(--blue-dark);
    overflow: hidden;
    padding: 108px 0 0;
}

.story-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.story-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(25%);
}

.story-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 15, 35, .95) 0%, rgba(0, 30, 60, .6) 50%, rgba(0, 40, 80, .3) 100%);
}

.story-hero__content {
    position: relative;
    z-index: 3;
    padding: 80px 0 56px;
    max-width: 600px;
}

.breadcrumbs--light a { color: rgba(255, 255, 255, .5); }
.breadcrumbs--light { color: rgba(255, 255, 255, .35); margin-bottom: 24px; }

.story-hero__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--accent);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.story-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.story-hero p {
    color: rgba(255, 255, 255, .55);
    font-size: 16px;
    line-height: 1.7;
}

/* Cijfers bar */
.cijfers {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 0;
}

.cijfers__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.cijfer {
    text-align: center;
    padding: 36px 16px;
    border-right: 1px solid var(--gray-100);
}

.cijfer:last-child { border-right: none; }

.cijfer__number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 6px;
}

.cijfer__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Story blocks — zigzag */
.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 80px;
}

.story-block:last-child { margin-bottom: 0; }

.story-block--left .story-block__visual { order: 2; }
.story-block--left .story-block__content { order: 1; }

.story-block__visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-block__visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.story-block__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: .02em;
}

.story-block__placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
}

.story-block__placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--gray-300);
}

.story-block__content h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    margin-bottom: 16px;
}

.story-block__content p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 12px;
}

.story-block__content p:last-child { margin-bottom: 0; }

/* Equipment grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.equipment {
    text-align: center;
    padding: 36px 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.equipment:hover {
    background: rgba(255, 255, 255, .07);
    transform: translateY(-4px);
}

.equipment__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 140, 208, .1);
    border-radius: 12px;
    border: 1px solid rgba(78, 140, 208, .15);
    margin: 0 auto 16px;
}

.equipment__icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.equipment__number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.1;
}

.equipment strong {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.equipment p {
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.55;
}

/* Werkgebied */
.werkgebied {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.werkgebied__content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 16px;
}

.werkgebied__content p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 12px;
}

.werkgebied__clients {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}

.werkgebied__client {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.werkgebied__client svg {
    width: 16px;
    height: 16px;
    color: var(--blue);
    flex-shrink: 0;
}

/* Werkgebied map visual */
.werkgebied__map {
    width: 100%;
    aspect-ratio: 1;
    max-width: 360px;
    margin: 0 auto;
    background: var(--blue-pale);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.werkgebied__ring {
    position: absolute;
    inset: 12px;
    border: 2px dashed rgba(0, 68, 128, .15);
    border-radius: 50%;
}

.werkgebied__pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.werkgebied__pin svg {
    width: 32px;
    height: 32px;
    color: var(--blue);
}

.werkgebied__pin span {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
}

.werkgebied__radius {
    position: absolute;
    top: 18px;
    right: 18px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue);
    opacity: .4;
}


/* ==========================================================================
   SINGLE DIENST
   ========================================================================== */
.dienst-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.dienst-hero-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.dienst-hero-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

.dienst-content {
    margin-bottom: 48px;
}

.dienst-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.dienst-content h2:first-child { margin-top: 0; }

.dienst-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 15px;
}

/* Highlights */
.dienst-highlights {
    margin-bottom: 48px;
    padding: 40px;
    background: var(--blue-pale);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 68, 128, .06);
}

.dienst-highlights h2 {
    margin-bottom: 28px;
    font-size: 1.35rem;
}

.dienst-highlights__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dienst-highlight {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.dienst-highlight__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.dienst-highlight__icon svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
}

.dienst-highlight strong {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.dienst-highlight p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0;
}

/* Werkwijze per dienst */
.dienst-werkwijze {
    margin-bottom: 48px;
}

.dienst-werkwijze h2 {
    margin-bottom: 28px;
    font-size: 1.35rem;
}

.dienst-werkwijze__steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dienst-werkwijze__step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

.dienst-werkwijze__number {
    width: 40px;
    height: 40px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    flex-shrink: 0;
}

.dienst-werkwijze__step strong {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.dienst-werkwijze__step p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0;
}

/* Dienst FAQ */
.dienst-faq {
    margin-bottom: 48px;
}

.dienst-faq h2 {
    margin-bottom: 24px;
    font-size: 1.35rem;
}

/* Dienst Gallery */
.dienst-gallery {
    margin-bottom: 48px;
}

.dienst-gallery h2 {
    margin-bottom: 24px;
    font-size: 1.35rem;
}

.dienst-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dienst-gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.dienst-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.dienst-gallery__item:hover img {
    transform: scale(1.05);
}

/* Sidebar */
.dienst-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.sidebar-card--cta {
    border-color: rgba(0, 68, 128, .12);
    box-shadow: var(--shadow);
}

.sidebar-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
}

.sidebar-card--cta .sidebar-card__header {
    background: var(--blue-pale);
    border-bottom-color: rgba(0, 68, 128, .08);
}

.sidebar-card__header svg {
    width: 18px;
    height: 18px;
    color: var(--blue);
}

.sidebar-card__header strong {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--gray-800);
}

.sidebar-card__body {
    padding: 20px;
}

.sidebar-card__body p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Specificaties */
.sidebar-spec {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-50);
    font-size: 13.5px;
}

.sidebar-spec:last-child { border-bottom: none; }

.sidebar-spec__label {
    color: var(--gray-400);
    font-weight: 500;
    flex-shrink: 0;
}

.sidebar-spec__value {
    color: var(--gray-700);
    font-weight: 600;
    text-align: right;
}

/* Sidebar USPs */
.sidebar-usps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-usps li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--gray-600);
}

.sidebar-usps li svg {
    width: 16px;
    height: 16px;
    color: var(--blue);
    flex-shrink: 0;
}

/* Related diensten 3-col */
.diensten-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Page header for dienst */
.page-header__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 140, 208, .15);
    border-radius: 14px;
    border: 1px solid rgba(78, 140, 208, .2);
    margin-bottom: 20px;
}

.page-header__icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
}

.page-header__subtitle {
    max-width: 600px;
    opacity: .75;
    font-size: 17px;
    line-height: 1.7;
}

.page-header__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .nav { gap: 0; }
    .nav__link { padding: 8px 12px; font-size: 14px; }
    .header-phone span { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .diensten-grid { grid-template-columns: repeat(2, 1fr); }
    .usps { grid-template-columns: repeat(2, 1fr); }
    .mega-menu__inner { grid-template-columns: 1fr; }
    .mega-menu__side { display: none; }
    .mega-menu__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .waarden-grid { grid-template-columns: repeat(2, 1fr); }
    .equipment-grid { grid-template-columns: repeat(2, 1fr); }
    .werkgebied { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar__left { display: none; }
    .top-bar__inner { justify-content: center; }
    .nav, .header-phone { display: none; }
    .menu-toggle { display: flex; }
    .mobile-menu { display: block; }
    .btn-cta span { display: none; }
    .btn-cta { padding: 10px 16px; }
    .page-header { padding: 120px 0 48px; }
    .section { padding: 72px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .container { padding: 0 20px; }

    /* Hero */
    .hero { padding-top: 92px; min-height: auto; }
    .hero__content { padding: 40px 0 72px; }
    .hero__bottom-inner { justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; }

    /* Intro */
    .intro { grid-template-columns: 1fr; gap: 48px; }
    .intro__visual { order: -1; max-width: 500px; }
    .intro__badge { bottom: -16px; right: -8px; width: 100px; height: 100px; }
    .intro__badge-number { font-size: 2rem; }
    .intro__list { grid-template-columns: 1fr; }

    /* Diensten */
    .diensten-grid { grid-template-columns: 1fr; }
    .diensten-grid--3 { grid-template-columns: 1fr; }

    /* Single Dienst */
    .dienst-layout { grid-template-columns: 1fr; }
    .dienst-sidebar { position: static; }
    .dienst-highlights__grid { grid-template-columns: 1fr; }
    .dienst-gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .dienst-highlights { padding: 28px; }

    /* Over ons */
    .story-block { grid-template-columns: 1fr; gap: 32px; }
    .story-block--left .story-block__visual { order: 0; }
    .story-block--left .story-block__content { order: 0; }
    .cijfers__grid { grid-template-columns: repeat(3, 1fr); }
    .cijfer:nth-child(4), .cijfer:nth-child(5) { border-top: 1px solid var(--gray-100); }
    .equipment-grid { grid-template-columns: 1fr; }
    .werkgebied__map { max-width: 280px; }
    .werkgebied__clients { grid-template-columns: 1fr; }

    /* USPs */
    .usps { grid-template-columns: 1fr; gap: 16px; }
    .usp { padding: 28px 20px; }

    /* Werkwijze */
    .werkwijze__step { gap: 20px; }
    .werkwijze__number { width: 48px; height: 48px; font-size: 1.25rem; }
    .werkwijze::before { left: 23px; }

    /* Quote */
    .quote { padding: 24px 0; }
    .quote__mark { font-size: 5rem; }

    /* CTA */
    .cta-banner { padding: 48px 28px; }
    .cta-banner__grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-banner__buttons { flex-direction: column; }
    .cta-banner__buttons .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .top-bar__right { gap: 16px; font-size: 12px; }
    .hero__buttons { flex-direction: column; }
    .hero__buttons .btn { width: 100%; justify-content: center; }
    .intro__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .stat__number { font-size: 1.5rem; }
}
