/* ============================================================
   NextGen Training — Cyber / Informatiebeveiliging
   ============================================================ */

:root {
    --bg:      #070C14;
    --dark:    #0D1421;
    --card:    #111827;
    --card2:   #0F1A2E;
    --green:   #00C896;
    --green2:  #00FFB3;
    --green-d: #009670;
    --text:    #E2E8F0;
    --muted:   #64748B;
    --border:  rgba(0,200,150,.18);
    --glow:    rgba(0,200,150,.12);
    --white:   #ffffff;
    --red:     #EF4444;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Utility ────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

.tag {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--green); font-size: .75rem; font-weight: 700;
    letter-spacing: .8px; text-transform: uppercase; margin-bottom: 16px;
}
.tag-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.85)} }

.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { font-size: 2.2rem; font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 10px; }
.section-head p  { color: var(--muted); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    font-weight: 600; font-size: .92rem; text-decoration: none;
    transition: all .2s; cursor: pointer; border: none; white-space: nowrap;
}
.btn-green  { background: var(--green); color: var(--bg); }
.btn-green:hover  { background: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,200,150,.35); }
.btn-ghost  { background: transparent; color: var(--green); border: 1.5px solid var(--border); }
.btn-ghost:hover  { border-color: var(--green); background: var(--glow); }
.btn-white  { background: var(--white); color: var(--bg); }
.btn-white:hover  { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,255,255,.15); }

/* ── Header / Nav ───────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 200;
    background: rgba(7,12,20,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
}
.site-logo { text-decoration: none; display: flex; align-items: center; }
.logo-text { font-size: 1.15rem; font-weight: 800; color: var(--white); letter-spacing: -.3px; }
.logo-dot  {
    display: inline-block; width: 7px; height: 7px;
    background: var(--green); border-radius: 50%;
    margin: 0 3px 2px; vertical-align: middle;
    box-shadow: 0 0 8px var(--green);
}

/* ── Site nav ───────────────────────────────────────────── */
.site-nav ul {
    display: flex; align-items: center; list-style: none; gap: 4px;
}
.site-nav ul li a {
    display: block;
    color: rgba(255,255,255,.65); text-decoration: none;
    padding: 8px 16px; border-radius: 50px;
    font-size: .875rem; font-weight: 500;
    transition: color .15s, background .15s;
}
.site-nav ul li a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.site-nav ul li a.nav-btn {
    margin-left: 8px;
    background: var(--green); color: var(--bg);
    font-weight: 700; padding: 9px 20px;
}
.site-nav ul li a.nav-btn:hover { background: var(--green2); box-shadow: 0 4px 16px rgba(0,200,150,.3); }

/* Hamburger */
.menu-btn {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: 1px solid var(--border);
    padding: 8px 10px; border-radius: 8px; cursor: pointer; width: 40px; height: 40px;
}
.menu-btn span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: all .25s; }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .menu-btn { display: flex; }
    .site-nav {
        display: none;
        position: absolute; top: 68px; left: 0; right: 0; z-index: 99;
        background: rgba(7,12,20,.98);
        border-bottom: 1px solid var(--border);
        padding: 16px 28px 24px;
    }
    .site-nav.open { display: block; }
    .site-nav ul { flex-direction: column; align-items: flex-start; gap: 2px; }
    .site-nav ul li { width: 100%; }
    .site-nav ul li a { padding: 12px 0; border-radius: 0; width: 100%; }
    .site-nav ul li a.nav-btn { margin-left: 0; margin-top: 8px; text-align: center; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    background: var(--bg);
    padding: 100px 0 90px;
    position: relative; overflow: hidden;
    min-height: 88vh; display: flex; align-items: center;
}
/* Grid achtergrond */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,200,150,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,200,150,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
/* Glow cirkel */
.hero-glow {
    position: absolute; top: -200px; right: -100px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,150,.1) 0%, transparent 65%);
    pointer-events: none;
}
.hero-ring-1 {
    position: absolute; top: 0; right: 80px;
    width: 420px; height: 420px; border-radius: 50%;
    border: 1px solid rgba(0,200,150,.1); pointer-events: none;
    animation: spin 40s linear infinite;
}
.hero-ring-2 {
    position: absolute; top: 60px; right: 140px;
    width: 300px; height: 300px; border-radius: 50%;
    border: 1px dashed rgba(0,200,150,.08); pointer-events: none;
    animation: spin 28s linear infinite reverse;
}
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.hero-inner {
    display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center;
    position: relative; z-index: 1;
}
.hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 800; color: var(--white);
    line-height: 1.06; letter-spacing: -2px; margin-bottom: 22px;
}
.hero h1 .accent { color: var(--green); }
.hero p { color: var(--muted); font-size: 1.1rem; max-width: 500px; margin-bottom: 40px; line-height: 1.8; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Cirkelgroep hero */
.hero-circles { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.circles-row { display: flex; gap: 16px; }
.c-stat {
    border-radius: 50%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    border: 1px solid var(--border); background: var(--card2);
    transition: all .3s;
}
.c-stat:hover { border-color: var(--green); box-shadow: 0 0 24px var(--glow); }
.c-stat.lg { width: 170px; height: 170px; }
.c-stat.md { width: 125px; height: 125px; }
.c-stat strong { font-weight: 800; color: var(--green); line-height: 1; }
.c-stat.lg strong { font-size: 2.4rem; }
.c-stat.md strong { font-size: 1.7rem; }
.c-stat span { color: var(--muted); font-size: .72rem; margin-top: 5px; letter-spacing: .3px; }

/* ── Normen balk ─────────────────────────────────────────── */
.normen-bar {
    background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 18px 0; overflow: hidden;
}
.normen-inner { display: flex; gap: 0; flex-wrap: wrap; justify-content: center; }
.norm-item {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 24px; color: var(--muted); font-size: .82rem; font-weight: 600;
    letter-spacing: .3px; border-right: 1px solid var(--border); white-space: nowrap;
}
.norm-item:last-child { border-right: none; }
.norm-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* ── Diensten ─────────────────────────────────────────────── */
.diensten { padding: 112px 0; }
.diensten-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.dienst-card {
    background: var(--card); border: 1px solid rgba(255,255,255,.05);
    border-radius: 16px; padding: 32px 24px;
    transition: all .25s; position: relative; overflow: hidden;
}
.dienst-card::before {
    content: '';
    position: absolute; bottom: -40px; right: -40px;
    width: 120px; height: 120px; border-radius: 50%;
    background: var(--glow); transition: all .3s; pointer-events: none;
}
.dienst-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.dienst-card:hover::before { width: 160px; height: 160px; bottom: -60px; right: -60px; }

.dienst-circle {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--glow); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 20px;
}
.dienst-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.dienst-card p  { color: var(--muted); font-size: .85rem; line-height: 1.65; }
.dienst-card .norm-tag {
    display: inline-block; margin-top: 14px;
    background: rgba(0,200,150,.1); color: var(--green);
    border: 1px solid var(--border); border-radius: 50px;
    padding: 3px 10px; font-size: .72rem; font-weight: 700; letter-spacing: .3px;
}

/* ── MKB sectie ──────────────────────────────────────────── */
.mkb { padding: 112px 0; background: var(--dark); position: relative; overflow: hidden; }
.mkb::before {
    content: '';
    position: absolute; top: -150px; left: -150px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,150,.07) 0%, transparent 65%);
    pointer-events: none;
}
.mkb-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mkb-text h2 { font-size: 2.1rem; font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 20px; line-height: 1.2; }
.mkb-text p  { color: var(--muted); line-height: 1.8; margin-bottom: 14px; font-size: .97rem; }
.mkb-text .btn { margin-top: 10px; }

.mkb-circles { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.mc {
    border-radius: 50%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    border: 1px solid var(--border);
}
.mc strong { font-weight: 800; color: var(--white); line-height: 1; }
.mc span   { color: var(--muted); font-size: .72rem; margin-top: 5px; }
.mc-lg { width: 180px; height: 180px; background: var(--card2); }
.mc-lg strong { font-size: 2.4rem; color: var(--green); }
.mc-md { width: 130px; height: 130px; background: var(--card); align-self: flex-end; }
.mc-md strong { font-size: 1.7rem; color: var(--green); }
.mc-sm { width: 100px; height: 100px; background: var(--card2); border-color: var(--green-d); }
.mc-sm strong { font-size: 1.3rem; color: var(--green); }

.mkb-features { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.mkb-feature {
    display: flex; align-items: flex-start; gap: 12px;
    background: var(--card2); border: 1px solid var(--border);
    border-radius: 12px; padding: 16px 20px;
}
.mkb-feature-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.mkb-feature strong { color: var(--white); font-size: .9rem; display: block; margin-bottom: 2px; }
.mkb-feature p { color: var(--muted); font-size: .82rem; line-height: 1.5; }

/* ── Over ────────────────────────────────────────────────── */
.about { padding: 112px 0; }
.about-inner { display: grid; grid-template-columns: 480px 1fr; gap: 80px; align-items: center; }
.about-circles { display: flex; flex-wrap: wrap; gap: 16px; }
.ac {
    border-radius: 50%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    border: 1px solid var(--border);
}
.ac strong { font-weight: 800; line-height: 1; }
.ac span   { font-size: .73rem; margin-top: 5px; color: var(--muted); }
.ac-lg { width: 190px; height: 190px; background: var(--card2); }
.ac-lg strong { font-size: 2.6rem; color: var(--green); }
.ac-md { width: 140px; height: 140px; background: var(--card); align-self: flex-end; border-color: var(--green-d); }
.ac-md strong { font-size: 1.9rem; color: var(--green); }
.ac-sm { width: 105px; height: 105px; background: var(--card2); }
.ac-sm strong { font-size: 1.4rem; color: var(--green); }

.about-text h2 { font-size: 2.1rem; font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 20px; line-height: 1.2; }
.about-text p  { color: var(--muted); line-height: 1.8; margin-bottom: 14px; font-size: .97rem; }
.about-text .btn { margin-top: 10px; }

/* ── CTA ─────────────────────────────────────────────────── */
.cta-section {
    padding: 112px 0; background: var(--dark);
    text-align: center; position: relative; overflow: hidden;
}
.cta-ring {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    border-radius: 50%; pointer-events: none;
}
.cta-ring-1 { width: 700px; height: 700px; border: 1px solid rgba(0,200,150,.04); }
.cta-ring-2 { width: 500px; height: 500px; border: 1px solid rgba(0,200,150,.07); }
.cta-ring-3 { width: 300px; height: 300px; border: 1px solid rgba(0,200,150,.1); }
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 { font-size: 2.8rem; font-weight: 800; color: var(--white); letter-spacing: -1.5px; margin-bottom: 16px; }
.cta-section p  { color: var(--muted); font-size: 1.05rem; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: #040711; border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { color: var(--muted); font-size: .85rem; margin-top: 14px; max-width: 280px; line-height: 1.75; }
.site-footer h4 { color: rgba(255,255,255,.8); font-weight: 700; margin-bottom: 16px; font-size: .88rem; letter-spacing: .2px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a, .footer-contact a, .footer-contact p {
    color: var(--muted); text-decoration: none; font-size: .85rem;
    transition: color .15s; line-height: 1.8;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 20px 0; }
.footer-bottom p { color: rgba(255,255,255,.2); font-size: .8rem; text-align: center; }

/* ── Certificeringen ─────────────────────────────────────── */
.certs { padding: 112px 0; background: var(--bg); }
.certs-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.cert-card {
    background: var(--card); border: 1px solid rgba(255,255,255,.05);
    border-radius: 20px; padding: 36px 28px;
    transition: border-color .25s, box-shadow .25s, transform .2s;
    position: relative; overflow: hidden;
}
.cert-card::after {
    content: ''; position: absolute; top: -50px; right: -50px;
    width: 140px; height: 140px; border-radius: 50%;
    background: var(--glow); transition: all .3s; pointer-events: none;
}
.cert-card:hover { border-color: var(--border); box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.cert-card:hover::after { width: 200px; height: 200px; top: -80px; right: -80px; }
.cert-circle {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(0,200,150,.1); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 20px;
    transition: transform .25s, box-shadow .25s;
}
.cert-card:hover .cert-circle { transform: scale(1.1); box-shadow: 0 0 20px rgba(0,200,150,.3); }
.cert-card h3 { font-size: .98rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.cert-card p  { color: var(--muted); font-size: .85rem; line-height: 1.7; }

/* ── Cursor dot ──────────────────────────────────────────── */
#cursor-dot {
    position: fixed; top: 0; left: 0; z-index: 9999;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green), 0 0 24px rgba(0,200,150,.4);
    pointer-events: none; transition: transform .15s, width .2s, height .2s, opacity .2s;
    transform: translate(-50%, -50%);
}
#cursor-ring {
    position: fixed; top: 0; left: 0; z-index: 9998;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(0,200,150,.5);
    pointer-events: none; transition: transform .35s cubic-bezier(.25,.46,.45,.94), width .3s, height .3s, opacity .2s;
    transform: translate(-50%, -50%);
}
body:not(:hover) #cursor-dot,
body:not(:hover) #cursor-ring { opacity: 0; }

/* ── Scroll-reveal ───────────────────────────────────────── */
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity .6s ease, transform .6s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity .6s ease, transform .6s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* ── Tijdlijn ────────────────────────────────────────────── */
.verhaal { padding: 112px 0; background: var(--dark); position: relative; overflow: hidden; }
.verhaal::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(0,200,150,.025) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,200,150,.025) 1px, transparent 1px);
    background-size: 80px 80px; pointer-events: none;
}
.verhaal-intro { text-align: center; margin-bottom: 72px; }
.verhaal-intro h2 { font-size: 2.2rem; font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 10px; }
.verhaal-intro p  { color: var(--muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

.timeline { position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 1px; background: linear-gradient(to bottom, transparent, var(--border) 10%, var(--border) 90%, transparent);
    transform: translateX(-50%);
}
.tl-item {
    display: grid; grid-template-columns: 1fr 56px 1fr; gap: 0; margin-bottom: 56px; align-items: start;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-content {
    background: var(--card); border: 1px solid rgba(255,255,255,.05);
    border-radius: 16px; padding: 28px; position: relative;
    transition: border-color .25s, box-shadow .25s;
}
.tl-content:hover { border-color: var(--border); box-shadow: 0 0 32px rgba(0,200,150,.08); }
.tl-item.right .tl-content { grid-column: 3; }
.tl-item.left  .tl-content { grid-column: 1; }
.tl-center { grid-column: 2; display: flex; flex-direction: column; align-items: center; padding-top: 24px; gap: 0; }
.tl-circle {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--card2); border: 2px solid var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0; position: relative; z-index: 1;
    box-shadow: 0 0 16px rgba(0,200,150,.2); transition: transform .3s, box-shadow .3s;
}
.tl-circle:hover { transform: scale(1.2); box-shadow: 0 0 28px rgba(0,200,150,.45); }
.tl-year {
    margin-top: 8px; font-size: .72rem; font-weight: 700;
    color: var(--green); letter-spacing: .5px;
}
.tl-content h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.tl-content p  { color: var(--muted); font-size: .88rem; line-height: 1.7; }
.tl-tag {
    display: inline-block; margin-top: 12px;
    background: rgba(0,200,150,.1); color: var(--green);
    border: 1px solid var(--border); border-radius: 50px;
    padding: 3px 10px; font-size: .7rem; font-weight: 700;
}

/* ── Interactieve cirkels ────────────────────────────────── */
.c-stat { cursor: default; }
.c-stat:hover { transform: scale(1.08); }
.ac:hover { transform: scale(1.06); box-shadow: 0 0 32px rgba(0,200,150,.2); }

/* ── Tilt-kaarten ────────────────────────────────────────── */
.dienst-card { transform-style: preserve-3d; will-change: transform; }

/* ── Stats teller ────────────────────────────────────────── */
.stat-num { display: inline-block; transition: color .3s; }

/* ── Skip link (toegankelijkheid) ────────────────────────── */
.skip-link {
    position: absolute; top: -999px; left: 8px;
    background: var(--green); color: var(--bg); padding: 8px 16px;
    border-radius: 0 0 8px 8px; font-weight: 700; font-size: .85rem;
    text-decoration: none; z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ── Page hero (blog/single) ─────────────────────────────── */
.page-hero {
    background: var(--dark); padding: 72px 0 64px;
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(0,200,150,.025) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,200,150,.025) 1px, transparent 1px);
    background-size: 60px 60px; pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 12px; }
.page-hero-sub { color: var(--muted); font-size: 1rem; max-width: 560px; }
.page-hero-sm { padding: 56px 0 48px; }

/* ── Blog preview (homepage) ─────────────────────────────── */
.blog-preview { padding: 112px 0; background: var(--dark); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.blog-grid-archive { grid-template-columns: repeat(2, 1fr); }

.blog-card {
    background: var(--card); border: 1px solid rgba(255,255,255,.05);
    border-radius: 20px; overflow: hidden;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.blog-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-thumb-placeholder {
    aspect-ratio: 16/9; background: var(--card2);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--muted);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-meta time { color: var(--muted); font-size: .78rem; }
.blog-cat {
    background: rgba(0,200,150,.1); color: var(--green);
    border: 1px solid var(--border); border-radius: 50px;
    padding: 2px 10px; font-size: .72rem; font-weight: 700;
    text-decoration: none;
}
.blog-cat:hover { background: rgba(0,200,150,.2); }
.blog-card h2, .blog-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.4; }
.blog-card-title { font-size: 1.1rem !important; }
.blog-card h2 a, .blog-card h3 a { color: inherit; text-decoration: none; }
.blog-card h2 a:hover, .blog-card h3 a:hover { color: var(--green); }
.blog-card p { color: var(--muted); font-size: .88rem; line-height: 1.65; margin-bottom: 16px; flex: 1; }
.blog-read-more {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--green); font-size: .85rem; font-weight: 600;
    text-decoration: none; transition: gap .15s;
}
.blog-read-more:hover { gap: 8px; }
.blog-all { text-align: center; }

/* Blog archive */
.blog-archive { padding: 72px 0; }
.no-posts { color: var(--muted); text-align: center; padding: 48px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination span {
    display: flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; border-radius: 50%;
    background: var(--card); border: 1px solid rgba(255,255,255,.05);
    color: var(--muted); text-decoration: none; font-size: .88rem; font-weight: 600;
    transition: all .15s;
}
.pagination a:hover { border-color: var(--green); color: var(--green); }
.pagination .current { background: var(--green); border-color: var(--green); color: var(--bg); }

/* Single post */
.single-wrap { padding: 64px 0 96px; }
.single-inner { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }
.single-thumb { border-radius: 16px; overflow: hidden; margin-bottom: 36px; }
.single-thumb img { width: 100%; height: auto; display: block; }
.entry-content { color: var(--text); line-height: 1.85; }
.entry-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin: 36px 0 12px; }
.entry-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin: 28px 0 10px; }
.entry-content p  { color: var(--muted); margin-bottom: 18px; }
.entry-content a  { color: var(--green); }
.entry-content ul, .entry-content ol { padding-left: 24px; color: var(--muted); margin-bottom: 18px; }
.entry-content li { margin-bottom: 6px; }
.entry-content blockquote {
    border-left: 3px solid var(--green); padding-left: 20px; margin: 28px 0;
    color: var(--text); font-style: italic; font-size: 1.05rem;
}
.post-tags { margin-top: 32px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list a {
    background: var(--card); border: 1px solid rgba(255,255,255,.08);
    border-radius: 50px; padding: 4px 12px; font-size: .8rem; color: var(--muted);
    text-decoration: none; transition: all .15s;
}
.tag-list a:hover { border-color: var(--green); color: var(--green); }
.post-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.06); flex-wrap: wrap; }
.post-nav a { color: var(--green); text-decoration: none; font-size: .9rem; font-weight: 600; }
.post-nav a:hover { text-decoration: underline; }

/* Sidebar */
.single-sidebar { position: sticky; top: 88px; }
.sidebar-block {
    background: var(--card); border: 1px solid rgba(255,255,255,.05);
    border-radius: 16px; padding: 24px; margin-bottom: 20px;
}
.sidebar-block h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.sidebar-block p  { color: var(--muted); font-size: .88rem; line-height: 1.65; }
.sidebar-posts { list-style: none; }
.sidebar-posts li { border-bottom: 1px solid rgba(255,255,255,.05); padding: 8px 0; }
.sidebar-posts li:last-child { border-bottom: none; }
.sidebar-posts a { color: var(--muted); text-decoration: none; font-size: .85rem; transition: color .15s; }
.sidebar-posts a:hover { color: var(--green); }

/* Nieuwsbrief */
.nieuwsbrief { padding: 72px 0; background: var(--card2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.nieuwsbrief-inner {
    display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center;
}
.nieuwsbrief-text h2 { font-size: 1.8rem; font-weight: 800; color: var(--white); letter-spacing: -.5px; margin-bottom: 10px; }
.nieuwsbrief-text p  { color: var(--muted); font-size: .95rem; }
.nieuwsbrief-form { display: flex; flex-direction: column; gap: 12px; }
.nieuwsbrief-form input[type="text"],
.nieuwsbrief-form input[type="email"] {
    width: 100%; box-sizing: border-box;
    background: var(--dark); border: 1px solid var(--border);
    border-radius: 50px; padding: 14px 20px; color: var(--white);
    font-size: .95rem; font-family: inherit; outline: none; min-width: 0;
    transition: border-color .2s;
}
.nieuwsbrief-form input[type="text"]::placeholder,
.nieuwsbrief-form input[type="email"]::placeholder { color: var(--muted); }
.nieuwsbrief-form input[type="text"]:focus,
.nieuwsbrief-form input[type="email"]:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 3px var(--glow); }
.ngn-row { display: flex; gap: 10px; align-items: stretch; }
.ngn-row input[type="email"] { flex: 1; }
.ngn-row .btn { white-space: nowrap; flex-shrink: 0; }
.ngn-privacy-tekst { color: var(--muted); font-size: .78rem; margin: 4px 0 0; line-height: 1.5; }
.ngn-privacy-tekst a { color: var(--green); text-decoration: none; }
.ngn-privacy-tekst a:hover { text-decoration: underline; }
.nieuwsbrief-disclaimer { color: var(--muted); font-size: .78rem; margin-top: 4px; grid-column: 2; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Page/Single */
.page-wrap { padding: 80px 0; min-height: 60vh; }
.page-wrap h1 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 24px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .diensten-grid   { grid-template-columns: repeat(2, 1fr); }
    .certs-grid      { grid-template-columns: repeat(2, 1fr); }
    .blog-grid       { grid-template-columns: repeat(2, 1fr); }
    .single-inner    { grid-template-columns: 1fr 260px; gap: 36px; }
    .nieuwsbrief-inner { grid-template-columns: 1fr; gap: 32px; }
    .nieuwsbrief-disclaimer { grid-column: 1; }
}
@media (max-width: 960px) {
    .hero-inner   { grid-template-columns: 1fr; }
    .hero-circles, .hero-ring-1, .hero-ring-2, .hero-glow { display: none; }
    .about-inner  { grid-template-columns: 1fr; gap: 48px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1/-1; }
    .single-inner { grid-template-columns: 1fr; }
    .single-sidebar { position: static; }
    .blog-grid-archive { grid-template-columns: 1fr 1fr; }

    /* Tijdlijn mobiel */
    .timeline::before { left: 22px; }
    .tl-item { grid-template-columns: 44px 1fr; gap: 16px; }
    .tl-item.left  .tl-content,
    .tl-item.right .tl-content { grid-column: 2; grid-row: 1; }
    .tl-center { grid-column: 1; grid-row: 1; padding-top: 16px; }
    .tl-year { display: none; }
}
@media (max-width: 640px) {
    /* Typografie */
    .hero h1    { font-size: 2.4rem; letter-spacing: -1px; }
    .section-head h2, .verhaal-intro h2, .about-text h2,
    .cta-section h2, .nieuwsbrief-text h2 { font-size: 1.7rem; }

    /* Grids */
    .diensten-grid, .certs-grid, .blog-grid,
    .blog-grid-archive { grid-template-columns: 1fr; }
    .footer-inner  { grid-template-columns: 1fr; }

    /* Normen balk: stack op mobiel */
    .normen-inner { flex-direction: column; gap: 0; align-items: stretch; }
    .norm-item { border-right: none; border-bottom: 1px solid var(--border); justify-content: center; padding: 10px 0; }
    .norm-item:last-child { border-bottom: none; }

    /* Nieuwsbrief */
    .nieuwsbrief-form { flex-direction: column; }
    .nieuwsbrief-form .btn { width: 100%; justify-content: center; }

    /* Secties */
    .hero, .diensten, .verhaal, .certs, .about,
    .blog-preview, .nieuwsbrief, .cta-section { padding: 72px 0; }
    .page-hero { padding: 48px 0 40px; }

    /* Menu touch targets */
    .site-nav ul li a { padding: 14px 0; font-size: 1rem; min-height: 44px; }

    /* About cirkels klein scherm */
    .about-circles { justify-content: center; }
    .ac-lg { width: 150px; height: 150px; }
    .ac-md { width: 110px; height: 110px; }
    .ac-sm { width: 85px;  height: 85px; }
    .ac-lg strong { font-size: 2rem; }
    .ac-md strong { font-size: 1.5rem; }

    /* Hero cirkels (verborgen al maar voor zekerheid) */
    .hero-circles { display: none; }

    /* CTA */
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
    .cta-section h2 { font-size: 1.8rem; }

    /* Post nav */
    .post-nav { flex-direction: column; gap: 8px; }

    /* Contact sectie */
    .contact-inner  { flex-direction: column; gap: 40px; }
    .contact-info   { max-width: 100%; }
    .contact-section h2 { font-size: 1.8rem; }

    /* Contactformulier */
    .ngc-row-2 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTIE
   ═══════════════════════════════════════════════════════════ */

.contact-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--dark) 0%, var(--bg) 100%);
}
.contact-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.contact-info {
    flex: 0 0 380px;
    max-width: 380px;
}
.contact-info h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 16px 0 20px;
}
.contact-info p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
}
.contact-details {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}
.contact-details a {
    color: var(--text);
    text-decoration: none;
    transition: color .2s;
}
.contact-details a:hover { color: var(--green); }
.cd-icon { font-size: 1.1rem; }
.contact-reactie {
    font-size: .85rem;
    color: var(--muted);
    margin: 0;
}
.contact-form-wrap {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACTFORMULIER (ngc-*)
   ═══════════════════════════════════════════════════════════ */

.ngc-form { display: flex; flex-direction: column; gap: 18px; }
.ngc-hp   { position: absolute; left: -9999px; visibility: hidden; }
.ngc-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ngc-field { display: flex; flex-direction: column; gap: 6px; }
.ngc-field label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.ngc-req { color: var(--green); }
.ngc-opt { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.ngc-field input,
.ngc-field select,
.ngc-field textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--text);
    font-size: .95rem;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
    box-sizing: border-box;
}
.ngc-field input::placeholder,
.ngc-field textarea::placeholder { color: var(--muted); }
.ngc-field input:focus,
.ngc-field select:focus,
.ngc-field textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0,200,150,.12);
}
.ngc-field select option { background: var(--card); }
.ngc-field textarea { resize: vertical; min-height: 120px; }
.ngc-submit { display: flex; flex-direction: column; gap: 10px; }
.ngc-disclaimer { font-size: .8rem; color: var(--muted); margin: 0; }

.ngc-notice {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: .9rem;
    margin-bottom: 4px;
}
.ngc-notice-ok    { background: rgba(0,200,150,.12); border: 1px solid rgba(0,200,150,.3); color: var(--green); }
.ngc-notice-error { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.3);  color: #fc8181; }

/* ═══════════════════════════════════════════════════════════
   COOKIEBANNER
   ═══════════════════════════════════════════════════════════ */

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 700px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0,0,0,.5);
    animation: cookie-slide-up .35s ease;
}
.cookie-banner[hidden] { display: none; }
@keyframes cookie-slide-up {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    flex-wrap: wrap;
}
.cookie-tekst {
    flex: 1;
    font-size: .88rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}
.cookie-tekst a { color: var(--green); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   PRIVACYBELEID PAGINA
   ═══════════════════════════════════════════════════════════ */

.privacy-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 0 80px;
    color: var(--text);
    line-height: 1.8;
}
.privacy-content h2 {
    font-size: 1.4rem;
    color: var(--green);
    margin: 40px 0 12px;
}
.privacy-content p,
.privacy-content ul { color: var(--muted); margin-bottom: 16px; }
.privacy-content ul  { padding-left: 20px; }
.privacy-content a   { color: var(--green); }
