/* ==========================================================================
   WPTS.nl — Daniel Mulder · Website Technical Support
   ========================================================================== */

@font-face {
    font-family: 'Inter';
    src: url('fonts/InterVariable.woff2') format('woff2-variations'),
         url('fonts/InterVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('fonts/JetBrainsMono-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #0E1E3D;
    --navy-2: #142a52;
    --navy-3: #1a3563;
    --green: #20DD7B;
    --green-2: #19c46c;
    --green-tint: #e6faf0;
    --green-tint-2: #d6f5e4;
    --white: #ffffff;
    --bg: #ffffff;
    --bg-soft: #f7faf9;
    --text: #0E1E3D;
    --text-muted: #6b7280;
    --text-dim: #9aa3b2;
    --border: #e5e7eb;

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 22px;

    --shadow-sm: 0 1px 2px rgba(14, 30, 61, 0.04);
    --shadow: 0 10px 30px -8px rgba(14, 30, 61, 0.10);
    --shadow-lg: 0 24px 60px -20px rgba(14, 30, 61, 0.20);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

    --container-w: 1200px;
    --section-pad: 110px;

    --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset / base ------------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scrollbar-width: thin;
    scrollbar-color: rgba(14, 30, 61, 0.35) transparent;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(14, 30, 61, 0.28);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 8px;
    transition: background-color var(--transition);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(14, 30, 61, 0.55);
    background-clip: padding-box;
}
::-webkit-scrollbar-corner {
    background: transparent;
}

.terminal-body, .kb-article-body pre {
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}
.terminal-body::-webkit-scrollbar-thumb,
.kb-article-body pre::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.22);
    background-clip: padding-box;
}
.terminal-body::-webkit-scrollbar-thumb:hover,
.kb-article-body pre::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.45);
    background-clip: padding-box;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "cv11", "calt", "kern";
    hanging-punctuation: first last;
}

h1, h2, h3 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

.stat strong,
.why-stat-card strong,
time,
.kb-meta {
    font-variant-numeric: tabular-nums;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
img[width][height] { aspect-ratio: attr(width) / attr(height); }

code, pre, kbd {
    font-family: var(--font-mono);
    font-feature-settings: "calt" 1, "liga" 1;
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color var(--transition);
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* Container ---------------------------------------------------------------- */

.container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
}

/* Buttons ------------------------------------------------------------------ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    line-height: 1;
}

.btn-green {
    background: var(--green);
    color: var(--navy);
    border-color: var(--green);
}
.btn-green:hover {
    background: var(--green-2);
    border-color: var(--green-2);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(32, 221, 123, 0.6);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: var(--navy-2);
    border-color: var(--navy-2);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
    padding: 11px 24px;
    font-size: 14px;
}
.btn-outline:hover {
    background: var(--green);
    color: var(--navy);
}

/* Header ------------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}
.logo:hover { color: var(--white); }

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--green);
    color: var(--navy);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
    position: relative;
}
.logo-mark::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1.5px solid var(--green);
    border-radius: 50%;
    opacity: 0.4;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.logo-text small {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--green);
    text-transform: uppercase;
    margin-top: 4px;
}

.nav-main {
    display: flex;
    gap: 38px;
}
.nav-main a {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    transition: color var(--transition);
    position: relative;
}
.nav-main a:hover { color: var(--green); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
}

/* Hero --------------------------------------------------------------------- */

.hero {
    position: relative;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
    padding: 40px 0 60px;
    display: flex;
    align-items: center;
}

.circuit-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.circuit-bg svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    max-width: 600px;
    height: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
    width: 100%;
}

.hero-text {
    position: relative;
    z-index: 3;
}

.hello {
    display: inline-block;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3em;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(40px, 5.5vw, 68px);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 900;
    color: var(--green);
    margin-bottom: 18px;
}

.role {
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--white);
    margin-bottom: 22px;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 32px;
}

/* Hero photo --------------------------------------------------------------- */

.hero-photo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
}

/* Hero CMS hexagon ---------------------------------------------------------*/

.cms-hex {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 420px;
}

.cms-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cms-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(20, 42, 82, 0.95), rgba(14, 30, 61, 0.85));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(32, 221, 123, 0.30);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    box-shadow: 0 24px 50px -10px rgba(32, 221, 123, 0.22), 0 0 0 8px rgba(255, 255, 255, 0.02);
    z-index: 4;
}

.cms-center-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.cms-center strong {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1;
}

.cms-center small {
    font-size: 10px;
    color: var(--green);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-top: 6px;
    line-height: 1.3;
    text-transform: uppercase;
}

.cms-badge {
    --brand: var(--green);
    position: absolute;
    width: 76px;
    height: 76px;
    border-radius: 18px;
    background: #fff;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 14px 30px -8px color-mix(in srgb, var(--brand) 50%, transparent),
        0 2px 6px rgba(0, 0, 0, 0.18);
    animation: cms-float 6s ease-in-out infinite;
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 280ms ease;
    z-index: 3;
}

.cms-badge:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow:
        0 22px 40px -10px color-mix(in srgb, var(--brand) 65%, transparent),
        0 4px 10px rgba(0, 0, 0, 0.22);
}

.cms-badge svg {
    width: 40px;
    height: 40px;
}

.cms-badge-img {
    --brand: rgba(32, 221, 123, 0.5);
    color: inherit;
}
.cms-badge-img img {
    width: 44px;
    height: 44px;
    display: block;
}

/* Hexagonal positions */
.pos-1 { top: 0;       left: 50%;  margin-left: -38px; animation-delay: 0s;   }
.pos-2 { top: 23%;     right: 0;                       animation-delay: 1s;   }
.pos-3 { bottom: 23%;  right: 0;                       animation-delay: 2s;   }
.pos-4 { bottom: 0;    left: 50%;  margin-left: -38px; animation-delay: 3s;   }
.pos-5 { bottom: 23%;  left: 0;                        animation-delay: 4s;   }
.pos-6 { top: 23%;     left: 0;                        animation-delay: 5s;   }

@keyframes cms-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* Sections ----------------------------------------------------------------- */

section {
    padding: var(--section-pad) 0;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 22px;
    text-transform: uppercase;
}

.section-intro {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 640px;
}
.section-intro.center { margin-left: auto; margin-right: auto; }

.section-head {
    text-align: center;
    margin-bottom: 70px;
}

/* About -------------------------------------------------------------------- */

.about {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.about::before,
.about::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: var(--green-tint);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
}
.about::before { top: -80px; right: -80px; }
.about::after { bottom: -120px; right: 8%; width: 160px; height: 160px; opacity: 0.4; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    z-index: 2;
}

.about-photo-wrap {
    position: relative;
    padding: 28px;
}

.dot-grid {
    --dot: rgba(32, 221, 123, 0.5);
    position: absolute;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(var(--dot) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    z-index: 1;
}
.dot-grid-tl { top: 0;  left: 0; }
.dot-grid-bl { bottom: 0; left: 0; }
.dot-grid-tr { top: 30px; right: 0; }
.dot-grid-br { bottom: 30px; right: 0; }

.photo-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
    z-index: 2;
}
.photo-frame-bg {
    position: absolute;
    inset: 0;
    background: var(--green-tint);
    border-radius: var(--radius-xl);
    z-index: 0;
}
.photo-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--navy);
    color: var(--white);
    padding: 22px 30px;
    border-radius: 6px;
    z-index: 3;
    box-shadow: 0 20px 50px -15px rgba(14, 30, 61, 0.4);
    display: flex;
    align-items: center;
    gap: 14px;
}
.exp-badge strong {
    color: var(--green);
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
}
.exp-badge strong sup {
    font-size: 28px;
    vertical-align: super;
}
.exp-badge span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.85);
}

.about-content {
    z-index: 2;
}

/* Check list (about) ------------------------------------------------------- */

.check-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 36px;
    border-left: 2px solid var(--green-tint-2);
    padding-left: 22px;
}

.check-list li {
    display: flex;
    gap: 16px;
    position: relative;
}

.check-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(32, 221, 123, 0.18);
    flex-shrink: 0;
}

.check-list h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.check-list p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Services ----------------------------------------------------------------- */

.services {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 28px 32px;
    text-align: center;
    box-shadow: 0 12px 40px -18px rgba(14, 30, 61, 0.10);
    border: 1px solid #eef0f3;
    position: relative;
    transition: all var(--transition);
    margin-top: 36px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px -20px rgba(14, 30, 61, 0.18);
    border-color: var(--green-tint-2);
}

.service-icon {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
    background: var(--green-tint);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    border: 6px solid var(--bg-soft);
}
.service-card:hover .service-icon {
    background: var(--green);
    color: var(--white);
    transform: translateX(-50%) scale(1.08);
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Process / Hoe ik werk ---------------------------------------------------- */

.process {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: var(--green-tint);
    border-radius: 50%;
    top: -100px;
    left: -120px;
    opacity: 0.5;
    z-index: 0;
}

.process .container { position: relative; z-index: 1; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* 3-step variant — voor landings met 3 stappen */

/* Dashed connector line that runs behind the numbered circles */
.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 0;
    border-top: 2px dashed color-mix(in srgb, var(--green) 50%, transparent);
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 8px;
    position: relative;
    z-index: 1;
    transition: transform var(--transition);
}

.process-step:hover {
    transform: translateY(-4px);
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--green);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    margin: 0 auto 24px;
    border: 6px solid var(--bg);
    box-shadow: 0 8px 20px -8px rgba(32, 221, 123, 0.5);
    transition: all var(--transition);
}

.step-num span {
    letter-spacing: -0.02em;
}

.process-step:hover .step-num {
    background: var(--navy);
    color: var(--green);
    transform: scale(1.06);
}

.process-step h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.process-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 880px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 480px;
    }
    .process-steps::before {
        top: 36px;
        bottom: 36px;
        left: 50%;
        right: auto;
        height: auto;
        width: 0;
        border-top: none;
        border-left: 2px dashed color-mix(in srgb, var(--green) 50%, transparent);
        transform: translateX(-1px);
    }
}

/* Services niche callout --------------------------------------------------- */

.services-niche {
    position: relative;
    margin: 56px auto 0;
    padding: 30px 36px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 1040px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(14, 30, 61, 0.02), 0 8px 28px -20px rgba(14, 30, 61, 0.18);
}

.services-niche-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
}

.services-niche-bg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.services-niche-inner {
    position: relative;
    z-index: 1;
}

.services-niche-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 800;
    color: var(--green-2);
    letter-spacing: 0.22em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.services-niche-label svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.services-niche-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.services-niche-list li {
    margin: 0;
}

.services-niche-list a {
    display: inline-block;
    padding: 7px 14px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
    white-space: nowrap;
}

.services-niche-list a:hover,
.services-niche-list a:focus-visible {
    background: var(--green-tint);
    border-color: color-mix(in srgb, var(--green) 55%, var(--border));
    color: var(--green-2);
    transform: translateY(-1px);
}

@media (max-width: 720px) {
    .services-niche {
        padding: 24px 20px 22px;
    }
    .services-niche-list {
        gap: 6px 8px;
    }
    .services-niche-list a {
        white-space: normal;
        font-size: 13px;
        padding: 7px 12px;
    }
}

/* Stats -------------------------------------------------------------------- */

.stats {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(180deg, black, transparent);
    -webkit-mask-image: linear-gradient(180deg, black, transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(32, 221, 123, 0.5);
    border-radius: 6px;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.stat-icon svg { width: 26px; height: 26px; }

.stat strong {
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.stat strong span { color: var(--green); }

.stat-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.18em;
}

/* Why ---------------------------------------------------------------------- */

.why {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-subtitle {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-top: 18px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 32px;
}
.why-list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.why-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border: 2px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.why-list li:hover .why-icon {
    border-color: var(--green);
    background: var(--green-tint);
    color: var(--navy);
}
.why-icon svg { width: 26px; height: 26px; }

.why-list h4 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text);
}
.why-list p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Why visual — terminal mockup ------------------------------------------- */

.why-visual {
    position: relative;
    padding: 28px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terminal {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
    background: linear-gradient(135deg, #0E1E3D 0%, #142a52 100%);
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 30px 60px -20px rgba(14, 30, 61, 0.45),
        0 12px 30px -15px rgba(32, 221, 123, 0.20),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    transform: rotate(-1.2deg);
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.terminal:hover { transform: rotate(0deg) translateY(-4px); }

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.20);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.terminal-dot-red    { background: #ff5f57; }
.terminal-dot-yellow { background: #febc2e; }
.terminal-dot-green  { background: #28c840; }

.terminal-title {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
    margin-right: 36px; /* compenseert voor de 3 dots aan de linkerkant */
}

.terminal-body {
    padding: 18px 22px 22px;
    overflow-x: auto;
}

.terminal-body pre {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.65;
    white-space: pre;
}

.t-prompt  { color: var(--green); font-weight: 700; }
.t-cmd     { color: #f8f8f2; font-weight: 600; }
.t-flag    { color: #fbbf24; }
.t-step    { color: #a78bfa; font-weight: 600; }
.t-arrow   { color: #94a3b8; }
.t-ok      { color: var(--green); font-weight: 700; }
.t-success { color: var(--green); font-weight: 700; padding: 2px 8px; background: rgba(32, 221, 123, 0.10); border-radius: 4px; }
.t-meta    { color: rgba(255, 255, 255, 0.55); font-size: 12px; }
.t-cursor {
    display: inline-block;
    color: var(--green);
    animation: terminal-blink 1.1s steps(1) infinite;
}

@keyframes terminal-blink {
    0%, 49%   { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Floating stat-card naast terminal */
.why-stat-card {
    position: absolute;
    bottom: 36px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px 14px 14px;
    background: var(--white);
    border-radius: 14px;
    box-shadow:
        0 18px 40px -14px rgba(14, 30, 61, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    z-index: 3;
    max-width: 220px;
}
.why-stat-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-stat-icon svg { width: 20px; height: 20px; }
.why-stat-card strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
}
.why-stat-card span {
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .why-visual {
        padding: 20px;
        min-height: auto;
    }
    .terminal { transform: rotate(0); max-width: 100%; }
}

@media (max-width: 880px) {
    .why-visual {
        min-height: auto;
        padding: 16px 0 16px;
        flex-direction: column;
        gap: 16px;
    }
    .terminal {
        transform: rotate(0);
        max-width: 100%;
        margin: 0 auto;
    }
    .terminal-body { padding: 16px 18px 18px; }
    .terminal-body pre { font-size: 12px; line-height: 1.55; }

    /* Op mobiel: stat-card uit absolute positionering — onder terminal als normaal element */
    .why-stat-card {
        position: static;
        bottom: auto;
        right: auto;
        margin: 0 auto;
        padding: 12px 18px 12px 12px;
        max-width: 320px;
        width: fit-content;
    }
    .why-stat-card strong { font-size: 13px; }
    .why-stat-card span { font-size: 12px; }

    /* Dot-grids op mobiel verbergen — voegt geen waarde toe en kan overlap geven */
    .why-visual .dot-grid { display: none; }
}

@media (max-width: 540px) {
    .terminal-bar { padding: 10px 14px; }
    .terminal-title { font-size: 11px; margin-right: 30px; }
    .terminal-body { padding: 14px 16px 16px; }
    .terminal-body pre { font-size: 11px; line-height: 1.5; }
    .terminal-dot { width: 10px; height: 10px; }
    .why-stat-card {
        gap: 10px;
        padding: 10px 16px 10px 10px;
    }
    .why-stat-icon {
        width: 34px;
        height: 34px;
    }
    .why-stat-icon svg { width: 16px; height: 16px; }
}

/* CTA banner --------------------------------------------------------------- */

.cta-banner {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.constellation-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.constellation-bg svg {
    width: 100%;
    height: 100%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 880px;
}

.cta-content h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--white);
}
.cta-content h2 .green { color: var(--green); }
.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Expertise (CMS) ---------------------------------------------------------- */

.expertise {
    background: var(--bg);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.exp-card {
    --brand: var(--green);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: 0 10px 30px -16px rgba(14, 30, 61, 0.08);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.exp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -18px rgba(14, 30, 61, 0.15);
    border-color: color-mix(in srgb, var(--brand) 30%, var(--border));
}
.exp-card:hover::before { transform: scaleX(1); }

.exp-icon {
    width: 64px;
    height: 64px;
    background: color-mix(in srgb, var(--brand) 12%, transparent);
    color: var(--brand);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition);
}
.exp-card:hover .exp-icon {
    background: var(--brand);
    color: var(--white);
}
.exp-icon svg { width: 32px; height: 32px; }

.exp-icon-img {
    background: #fff;
    border: 1px solid var(--border);
    color: inherit;
}
.exp-card:hover .exp-icon-img {
    background: #fff;
    color: inherit;
}
.exp-icon-img img { width: 38px; height: 38px; }

.exp-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}
.exp-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

.exp-card-stack {
    background: var(--navy);
    border-color: var(--navy);
}
.exp-card-stack h3 { color: var(--white); }
.exp-stack-desc {
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.65;
}

.stack-group {
    margin-bottom: 16px;
}
.stack-group:last-child { margin-bottom: 0; }

.stack-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag {
    --brand: var(--green);
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: var(--brand);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 6px;
    box-shadow: 0 6px 16px -6px color-mix(in srgb, var(--brand) 60%, transparent);
}

/* Reviews ------------------------------------------------------------------ */

.reviews {
    background: var(--bg-soft);
}

/* Aggregate rating-header */
.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 580px;
    margin: 30px auto 48px;
    padding: 22px 32px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px -18px rgba(14, 30, 61, 0.10);
}
.reviews-summary-num {
    font-size: 52px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
}
.reviews-summary-num sub {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-muted);
    vertical-align: baseline;
    margin-left: 2px;
}
.reviews-summary-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.reviews-summary-stars {
    display: flex;
    gap: 4px;
}
.reviews-summary-stars svg {
    width: 22px;
    height: 22px;
    color: #fbbf24;
}
.reviews-summary-meta {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    box-shadow: 0 10px 30px -16px rgba(14, 30, 61, 0.08);
    border: 1px solid var(--border);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -18px rgba(14, 30, 61, 0.18);
    border-color: rgba(32, 221, 123, 0.32);
}

/* Decorative quote-mark in top-right */
.review-quote {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 38px;
    height: 38px;
    color: var(--green);
    opacity: 0.16;
    pointer-events: none;
}

/* SVG stars */
.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}
.review-stars svg {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

.review-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 22px;
    flex: 1;
    position: relative;
    z-index: 1;
}
.review-hidden {
    display: none;
}
.review-hidden.is-visible {
    display: flex;
    animation: review-fade-in 400ms ease both;
}

@keyframes review-fade-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reviews-more-wrap {
    text-align: center;
    margin-top: 40px;
}

.reviews-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}
.reviews-more-btn:hover {
    border-color: var(--green);
    color: var(--green-2);
    background: var(--green-tint);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--green) 40%, transparent);
}

.reviews-more-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}
.reviews-more-btn[aria-expanded="true"] .reviews-more-icon {
    transform: rotate(180deg);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
    letter-spacing: 0.02em;
    box-shadow: 0 6px 14px -6px rgba(32, 221, 123, 0.45);
}
.reviewer-avatar[data-color="navy"] {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    box-shadow: 0 6px 14px -6px rgba(14, 30, 61, 0.35);
}
.reviewer-avatar[data-color="mix"] {
    background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
    box-shadow: 0 6px 14px -6px rgba(14, 30, 61, 0.35);
}
.reviewer-info {
    flex: 1;
    min-width: 0;
}
.reviewer-info strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.01em;
}
.reviewer-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* FAQ ---------------------------------------------------------------------- */

.faq {
    background: var(--bg);
    position: relative;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 18px -10px rgba(14, 30, 61, 0.06);
    transition: all var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    border-color: color-mix(in srgb, var(--green) 35%, var(--border));
    box-shadow: 0 10px 24px -12px rgba(14, 30, 61, 0.12);
}

.faq-item[open] {
    border-color: var(--green);
    box-shadow: 0 14px 32px -16px rgba(32, 221, 123, 0.25);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    user-select: none;
}

/* Simplere FAQ zonder nummer + icoon (alleen vraag + toggle) */
.faq-item summary:not(:has(.faq-num)) {
    grid-template-columns: 1fr auto;
}

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

.faq-num {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    transition: color var(--transition);
    font-variant-numeric: tabular-nums;
}

.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--green-tint);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(32, 221, 123, 0.20);
    transition: all var(--transition);
}
.faq-icon svg { width: 20px; height: 20px; }

.faq-item:hover .faq-icon {
    background: rgba(32, 221, 123, 0.18);
}

.faq-item[open] .faq-icon {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.faq-item[open] .faq-num {
    color: var(--green);
}

.faq-q {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.4;
    letter-spacing: -0.015em;
}

.faq-toggle {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--green-tint);
    color: var(--green-2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), background var(--transition), color var(--transition);
}

.faq-toggle svg { width: 18px; height: 18px; }

.faq-item[open] .faq-toggle {
    background: var(--green);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 26px 24px 84px;
    animation: faq-fade 280ms ease;
}
.faq-item:not(:has(.faq-num)) .faq-answer {
    padding: 0 26px 24px 26px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .faq-item summary {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        padding: 18px 20px;
    }
    .faq-item summary:not(:has(.faq-num)) {
        grid-template-columns: 1fr auto;
    }
    .faq-num { display: none; }
    .faq-icon { width: 36px; height: 36px; }
    .faq-icon svg { width: 18px; height: 18px; }
    .faq-q { font-size: 15px; }
    .faq-answer { padding: 0 20px 20px 68px; }
    .faq-item:not(:has(.faq-num)) .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

@keyframes faq-fade {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Contact channels --------------------------------------------------------- */

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.cc {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    transition: all var(--transition);
}

.cc:hover {
    transform: translateX(4px);
    border-color: var(--green);
    color: var(--text);
    box-shadow: 0 10px 24px -12px rgba(14, 30, 61, 0.10);
}

.cc-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cc-icon svg { width: 22px; height: 22px; }

.cc-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.cc-text strong { font-size: 15px; font-weight: 700; color: var(--text); }
.cc-text span { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.cc-arrow {
    color: var(--text-dim);
    font-size: 18px;
    transition: transform var(--transition), color var(--transition);
}
.cc:hover .cc-arrow {
    color: var(--green);
    transform: translateX(4px);
}

.cc-whatsapp .cc-icon { background: #25D366; color: #fff; }
.cc-whatsapp:hover { border-color: #25D366; box-shadow: 0 10px 24px -12px rgba(37, 211, 102, 0.35); }

.cc-phone .cc-icon { background: var(--navy); color: #fff; }
.cc-phone:hover { border-color: var(--navy); }

.cc-email .cc-icon { background: var(--green-tint); color: var(--green-2); }

.form-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0 20px;
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Contact ------------------------------------------------------------------ */

.contact {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    background: var(--green-tint);
    border-radius: 50%;
    top: -80px;
    left: -120px;
    z-index: 0;
    opacity: 0.5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    z-index: 2;
}

.contact-form-wrap { z-index: 2; }

.contact-form {
    margin-top: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group { margin-bottom: 14px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(32, 221, 123, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
    background: #fef2f2;
}

/* ----- Field icons + inline validation ----- */
.form-group-icon {
    position: relative;
}
.form-group-icon .form-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-dim);
    pointer-events: none;
    transition: color 0.18s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.form-group-icon .form-icon svg {
    width: 100%;
    height: 100%;
}
.form-group-icon input {
    padding-left: 44px !important;
    padding-right: 40px !important;
}
.form-group-icon:focus-within .form-icon {
    color: var(--green-2);
}
.form-validation {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.18s ease, background 0.18s ease;
}
.form-group-icon.is-valid .form-validation {
    opacity: 1;
    background: rgba(32, 221, 123, 0.15);
    color: var(--green-2);
}
.form-group-icon.is-invalid .form-validation {
    opacity: 1;
    background: rgba(217, 119, 6, 0.12);
    color: #b45309;
}
.form-validation::after {
    width: 12px;
    height: 12px;
    content: '';
    background-image: none;
}
.form-group-icon.is-valid .form-validation::after {
    content: '';
    width: 7px;
    height: 11px;
    border: solid currentColor;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}
.form-group-icon.is-invalid .form-validation::after {
    content: '!';
    font-weight: 800;
    font-size: 13px;
    color: currentColor;
}

/* ----- Email typo-correction suggestion ----- */
.form-email-suggest {
    margin-top: 6px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    padding: 8px 12px;
    background: rgba(32, 221, 123, 0.06);
    border: 1px solid rgba(32, 221, 123, 0.18);
    border-radius: 6px;
}
.form-email-suggest button {
    background: none;
    border: none;
    color: var(--green-2);
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.form-email-suggest button:hover { color: var(--green); }

/* ----- Custom select (replaces native <select>) ----- */
.form-group-select {
    position: relative;
}
.form-group-select select {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.cs-button {
    width: 100%;
    padding: 16px 38px 16px 44px;
    font-size: 15px;
    text-align: left;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    display: block;
    line-height: 1.2;
    font-family: inherit;
}
.cs-button:hover { border-color: color-mix(in srgb, var(--navy) 22%, var(--border)); }
.cs-button:focus-visible,
.form-group-select.is-open .cs-button {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(32, 221, 123, 0.12);
}
.cs-button .form-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-dim);
    pointer-events: none;
}
.form-group-select.is-open .cs-button .form-icon { color: var(--green-2); }
.cs-value.cs-placeholder { color: var(--text-dim); }
.cs-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: var(--text-dim);
    transition: transform 0.18s ease;
}
.form-group-select.is-open .cs-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--green-2);
}
.cs-list {
    list-style: none;
    margin: 6px 0 0;
    padding: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 14px 40px -16px rgba(14, 30, 61, 0.30);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    max-height: 280px;
    overflow-y: auto;
}
.cs-list[hidden] { display: none; }
.cs-list li {
    padding: 9px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14.5px;
    color: var(--text);
    transition: background 0.12s ease, color 0.12s ease;
}
.cs-list li[aria-selected="true"] {
    background: rgba(32, 221, 123, 0.10);
    color: var(--green-2);
    font-weight: 600;
}
.cs-list li.is-active,
.cs-list li:hover {
    background: var(--bg-soft);
}
.cs-list li[aria-selected="true"].is-active,
.cs-list li[aria-selected="true"]:hover {
    background: rgba(32, 221, 123, 0.16);
}

/* ----- Textarea char-counter ----- */
.form-group-textarea {
    position: relative;
}
.form-counter {
    margin-top: 6px;
    font-size: 12.5px;
    color: var(--text-dim);
    line-height: 1.4;
    transition: color 0.2s ease;
}
.form-counter.is-good { color: var(--green-2); font-weight: 500; }

/* ----- Trust row under submit button ----- */
.form-trust-row {
    list-style: none;
    margin: 16px 0 4px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 13px;
    color: var(--text-muted);
}
.form-trust-row li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}
.form-trust-row svg {
    width: 14px;
    height: 14px;
    color: var(--green-2);
    flex-shrink: 0;
}

/* ==============================================
   SITE AUDIT TOOL (/tools/site-audit)
   ============================================== */

/* Audit input form */

/* Results section */

/* Live progress log — terminal/CI-pipeline aesthetic */

/* Terminal title-bar with traffic-lights */
@keyframes audit-dot-pulse {
    0%, 80%, 100% { opacity: 0.4; transform: scale(0.85); }
    40% { opacity: 1; transform: scale(1.1); }
}
@keyframes audit-log-in {
    from { opacity: 0; transform: translateX(-6px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes audit-spin { to { transform: rotate(360deg); } }

/* Custom scrollbar for the terminal */

/* Score card */

/* Section cards — zelfde max-width + padding als score-card voor cohesie */

/* Findings list */

/* Fix-snippet block */
/* Webkit scrollbar — altijd zichtbaar, ook op macOS */

/* Fade-edge wrapper: signaleert visueel dat er meer content rechts staat
   wanneer het code-block horizontaal scroll't. */

/* Summary + fix-CTA — full-width navy banner na de scan-results */

/* ==============================================
   AUDIT-CTA BANNER (homepage promotie van /tools/site-audit)
   ============================================== */

.audit-cta-banner {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.audit-cta-inner {
    position: relative;
    z-index: 1;
}
.audit-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}
.audit-cta-bg svg { width: 100%; height: 100%; display: block; }

.audit-cta-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}

.audit-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    background: rgba(32, 221, 123, 0.14);
    border: 1px solid rgba(32, 221, 123, 0.32);
    border-radius: 999px;
    color: var(--green);
    font-weight: 800;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
}
.audit-cta-eyebrow svg { width: 13px; height: 13px; }

.audit-cta-inner h2 {
    font-size: clamp(26px, 3.6vw, 38px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.audit-cta-inner h2 .green { color: var(--green); }

.audit-cta-inner p {
    font-size: clamp(15px, 1.5vw, 17px);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin: 0 0 28px;
}

.audit-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 24px;
}
.audit-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 15.5px;
}
.audit-cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.18s ease;
}
.audit-cta-btn:hover svg { transform: translateX(3px); }

.audit-cta-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.01em;
}
.audit-cta-meta-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(32, 221, 123, 0.55);
    animation: footer-pulse-dot 2.2s infinite, online-heartbeat 2s ease-in-out infinite;
}

@media (max-width: 720px) {
    .audit-cta-banner { padding: 56px 0; }
    .audit-cta-bg { opacity: 0.5; }
}

/* ─── Audit grade-rows (A+ tot F) ─── */

/* ─── Audit "wat ik niet doe"-grid ─── */

/* ─── Audit FAQ ─── */

/* ─── Audit related-tools-grid ─── */
/* Override homepage .service-icon absolute-positioning binnen audit-related-card —
   we willen 'm in-flow boven de titel, niet sticky bovenaan de card */

/* ─── Attribution ─── */

/* Honeypot - completely hidden from users and screen readers, visible to bots */
.hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-check-group .form-check-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}
.form-check-group .form-check-label strong {
    color: var(--text);
    font-weight: 700;
}
.form-check-group input {
    max-width: 200px;
}

.form-privacy {
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55;
    text-align: center;
}
.form-privacy a {
    color: var(--green-2);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.form-status {
    margin-top: 14px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.security-note {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(32, 221, 123, 0.06);
    border: 1px solid rgba(32, 221, 123, 0.25);
    border-radius: var(--radius);
}
.security-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.security-icon svg { width: 18px; height: 18px; }
.security-note strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -0.005em;
}
.security-note p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}
.form-status.success {
    padding: 12px;
    background: var(--green-tint);
    color: var(--green-2);
    border-radius: 6px;
}
.form-status.error {
    padding: 12px;
    background: #fef2f2;
    color: #ef4444;
    border-radius: 6px;
}

/* Contact "promise" card -------------------------------------------------- */

.contact-promise {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 36px 32px;
    box-shadow:
        0 30px 60px -25px rgba(14, 30, 61, 0.18),
        0 12px 30px -15px rgba(32, 221, 123, 0.12);
    overflow: hidden;
    z-index: 2;
}

.promise-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(32, 221, 123, 0.18) 0%, transparent 70%);
    border-radius: 0 var(--radius-xl) 0 100%;
    pointer-events: none;
    z-index: 0;
}

.contact-promise > * {
    position: relative;
    z-index: 1;
}

.promise-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--green-2);
    letter-spacing: 0.22em;
    margin-bottom: 12px;
}

.promise-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin-bottom: 28px;
}

.promise-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 28px;
}

.promise-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.promise-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--green-tint);
    color: var(--green-2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.promise-list li:hover .promise-icon {
    background: var(--green);
    color: var(--white);
    transform: scale(1.06);
}
.promise-icon svg { width: 20px; height: 20px; }

.promise-list strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.005em;
}
.promise-list p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.promise-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-soft);
    border: 1px dashed color-mix(in srgb, var(--green) 40%, var(--border));
    border-radius: var(--radius);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition);
}
.promise-footer:hover {
    background: var(--green-tint);
    border-color: var(--green);
    color: var(--text);
    transform: translateX(2px);
}
.promise-arrow {
    color: var(--green-2);
    font-size: 18px;
    transition: transform var(--transition);
}
.promise-footer:hover .promise-arrow {
    transform: translateX(4px);
}

/* 404 error page ----------------------------------------------------------- */

/* 3 dynamische suggestion-cards op de 404 */

/* Konami-code easter egg */
@keyframes konami-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes konami-pop {
    0%   { transform: scale(0.7) rotate(-3deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* Kennisbank --------------------------------------------------------------- */

/* Article list */

.kb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.kb-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 6px 18px -10px rgba(14, 30, 61, 0.08);
}
.kb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -20px rgba(14, 30, 61, 0.15);
    border-color: color-mix(in srgb, var(--green) 30%, var(--border));
}

.kb-card-link {
    display: block;
    padding: 32px 30px;
    color: var(--text);
}
.kb-card-link:hover { color: var(--text); }

.kb-cat {
    --cat: var(--green);
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--cat);
    background: color-mix(in srgb, var(--cat) 10%, transparent);
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 18px;
}
.kb-cat[data-cat="security"]    { --cat: #b91c1c; }
.kb-cat[data-cat="performance"] { --cat: #7c4a00; }
.kb-cat[data-cat="migratie"]    { --cat: #0a6676; }
.kb-cat[data-cat="hosting"]     { --cat: #157a47; }
.kb-cat[data-cat="email"]       { --cat: #6d28d9; }
.kb-cat[data-cat="wordpress"]   { --cat: #1e5f7a; }
.kb-cat[data-cat="joomla"]      { --cat: #c1380f; }
.kb-cat[data-cat="privacy"]     { --cat: #475569; }

.kb-card h2 {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--navy);
    margin-bottom: 14px;
    letter-spacing: -0.015em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kb-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kb-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-dim);
    padding-top: 16px;
    border-top: 1px solid var(--border);
    gap: 12px;
}
.kb-meta > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--text-muted);
}
.kb-meta > span:first-child::before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}
.kb-read-more {
    color: #157a47;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition), color var(--transition);
}
.kb-read-more::after {
    content: '→';
    display: inline-block;
    transition: transform var(--transition);
    font-weight: 700;
}
.kb-card:hover .kb-read-more {
    color: var(--green);
    gap: 9px;
}
.kb-card:hover .kb-read-more::after {
    transform: translateX(2px);
}

/* Homepage highlights section */
.kb-highlights {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}
.kb-highlights-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
}
.kb-highlights-bg svg { width: 100%; height: 100%; display: block; }
.kb-highlights .container {
    position: relative;
    z-index: 1;
}
.kb-highlights .kb-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: none;
}
.kb-highlights-cta {
    text-align: center;
    margin-top: 56px;
}
.kb-highlights-cta .btn span {
    display: inline-block;
    margin-left: 6px;
    transition: transform var(--transition);
}
.kb-highlights-cta .btn:hover span {
    transform: translateX(4px);
}

/* Article page */
.kb-article {
    background: var(--bg);
}

.kb-article-header {
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
    padding: 60px 0 50px;
    border-bottom: 1px solid var(--border);
}

.kb-article-header .container {
    max-width: 760px;
}

.kb-article-header .kb-cat {
    margin-bottom: 22px;
}

.kb-article-header h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 22px;
}

.kb-lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 400;
}

.kb-article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dim);
}
.kb-meta-dot {
    color: var(--text-dim);
}

/* Last-reviewed badge with freshness indicator -------------------------- */
.kb-meta-checked {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

/* Article body typography */
.kb-article-body {
    padding: 50px 0 60px;
}
.kb-article-body .container {
    max-width: 720px;
}

.kb-article-body p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 22px;
}

.kb-article-body h2 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--text);
    margin: 48px 0 18px;
    padding-top: 8px;
    position: relative;
}
.kb-article-body h2::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--green);
    margin-bottom: 14px;
    border-radius: 2px;
}

.kb-article-body h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin: 32px 0 14px;
}

.kb-article-body ul {
    margin: 0 0 22px;
    padding-left: 22px;
}
.kb-article-body li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 10px;
}
.kb-article-body ul li {
    list-style: none;
    position: relative;
    padding-left: 4px;
}
.kb-article-body ul li::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.kb-article-body strong {
    color: var(--text);
    font-weight: 700;
}

.kb-article-body code {
    background: var(--bg-soft);
    color: var(--navy);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.92em;
    border: 1px solid var(--border);
    overflow-wrap: anywhere;
}

/* Keyboard shortcut <kbd>-pills (auto-generated) */
.kb-article-body .kbd-key,
.kb-article-header .kbd-key {
    display: inline-block;
    padding: 1px 7px;
    margin: 0 1px;
    background: linear-gradient(180deg, #ffffff 0%, #eef2f6 100%);
    color: var(--navy);
    border: 1px solid #cbd5e1;
    border-bottom-width: 2px;
    border-radius: 4px;
    box-shadow: 0 1px 0 rgba(14, 30, 61, 0.04);
    font-family: var(--font-mono);
    font-size: 0.84em;
    font-weight: 600;
    line-height: 1.5;
    white-space: nowrap;
    vertical-align: baseline;
}

/* File-path pills (auto-generated) */
.path-pill {
    display: inline-block;
    padding: 1px 7px 1px 5px;
    margin: 0 1px;
    background: rgba(14, 30, 61, 0.04);
    color: var(--navy);
    border: 1px solid color-mix(in srgb, var(--navy) 12%, var(--border));
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.88em;
    font-weight: 500;
    line-height: 1.45;
    vertical-align: baseline;
    overflow-wrap: anywhere;
}
.path-pill svg {
    width: 11px;
    height: 11px;
    display: inline-block;
    vertical-align: -1px;
    margin-right: 4px;
    opacity: 0.55;
}

/* Brand-name pills (hosting/plugin) — auto-generated in body text */
.brand-pill {
    display: inline-block;
    padding: 1px 8px;
    margin: 0 1px;
    border-radius: 4px;
    background: var(--white);
    color: var(--navy);
    border: 1px solid color-mix(in srgb, var(--navy) 18%, var(--border));
    font-weight: 600;
    font-size: 0.92em;
    line-height: 1.5;
    white-space: nowrap;
    vertical-align: baseline;
}

/* External-link arrow on outbound links inside articles */
.kb-article-body a.is-external::after {
    content: '↗';
    display: inline-block;
    margin-left: 3px;
    font-size: 0.85em;
    opacity: 0.65;
    text-decoration: none;
    transition: opacity 0.15s ease;
}
.kb-article-body a.is-external:hover::after {
    opacity: 1;
}

/* Bash prompt styling in code blocks */
.kb-article-body pre[data-lang="bash"] .sh-prompt {
    color: var(--green);
    user-select: none;
    -webkit-user-select: none;
    font-weight: 700;
}
.kb-article-body pre[data-lang="bash"] .sh-cmd {
    color: #f1f5f9;
}
.kb-article-body pre[data-lang="bash"] .sh-output {
    color: rgba(226, 232, 240, 0.62);
}
.kb-article-body pre[data-lang="bash"] .sh-comment {
    color: rgba(226, 232, 240, 0.50);
    font-style: italic;
}

/* Inline HTTP-status pills (auto-generated in body text) */
.http-pill {
    display: inline-block;
    padding: 1px 7px;
    margin: 0 1px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.82em;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
    vertical-align: baseline;
    white-space: nowrap;
}

.kb-article-body pre {
    background: var(--navy);
    color: #e2e8f0;
    padding: 18px 22px;
    border-radius: var(--radius);
    overflow-x: auto;
    margin: 22px 0 28px;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
}
.kb-article-body pre code {
    background: transparent;
    color: inherit;
    border: none;
    padding: 0;
    font-size: inherit;
}

/* Code language badge (top-left of pre) */
.kb-article-body pre.has-lang-badge {
    padding-top: 40px;
}
.code-lang-badge {
    position: absolute;
    top: 10px;
    left: 12px;
    display: inline-block;
    padding: 4px 9px;
    background: rgba(32, 221, 123, 0.12);
    color: rgba(32, 221, 123, 0.92);
    border: 1px solid rgba(32, 221, 123, 0.22);
    border-radius: 5px;
    font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    user-select: none;
    pointer-events: none;
}

/* Code copy button */
.code-copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px 5px 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(226, 232, 240, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.kb-article-body pre:hover .code-copy-btn,
.code-copy-btn:focus-visible {
    opacity: 1;
}
.code-copy-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}
.code-copy-btn:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}
.code-copy-icon,
.code-copy-check {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.code-copy-check { display: none; }
.code-copy-btn.copied {
    opacity: 1;
    background: rgba(32, 221, 123, 0.18);
    color: var(--green);
    border-color: rgba(32, 221, 123, 0.4);
}
.code-copy-btn.copied .code-copy-icon { display: none; }
.code-copy-btn.copied .code-copy-check { display: inline-block; }
.code-copy-btn.failed {
    opacity: 1;
    background: rgba(239, 68, 68, 0.18);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.4);
}
@media (max-width: 600px) {
    .code-copy-btn { opacity: 1; }
    .code-copy-text { display: none; }
    .code-copy-btn { padding: 6px; }
}

/* Article CTA box at bottom */

@media (max-width: 880px) {
    .kb-article-body h2 { font-size: 22px; margin-top: 40px; }
    .kb-article-body p,
    .kb-article-body li { font-size: 16px; }
}

/* Active nav state */


/* Legal page (privacy) ----------------------------------------------------- */

/* Footer ------------------------------------------------------------------- */

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 28px;
    position: relative;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(32, 221, 123, 0.35) 50%, transparent 100%);
}

/* 4-column grid (brand wider) */
.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 44px;
}
.footer-col { min-width: 0; }

/* Brand column */
.footer-col-brand .logo { color: #fff; margin-bottom: 0; }
.footer-col-brand .logo-text { color: #fff; }
.footer-col-brand .logo-text small { color: rgba(255, 255, 255, 0.5); }
.footer-tagline {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.65;
    margin: 16px 0 22px;
    max-width: 360px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}
.footer-contact-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    text-decoration: none;
    transition: color var(--transition);
}
a.footer-contact-line:hover { color: var(--green); }
.footer-contact-line svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    color: var(--green);
}

.footer-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.78);
    padding: 7px 13px;
    background: rgba(32, 221, 123, 0.10);
    border-radius: 999px;
    border: 1px solid rgba(32, 221, 123, 0.28);
    font-weight: 500;
}
.footer-availability-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(32, 221, 123, 0.55);
    animation: footer-pulse-dot 2.2s infinite, online-heartbeat 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes footer-pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(32, 221, 123, 0.55); }
    70%  { box-shadow: 0 0 0 9px rgba(32, 221, 123, 0); }
    100% { box-shadow: 0 0 0 0 rgba(32, 221, 123, 0); }
}
@keyframes online-heartbeat {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.18); }
}
@media (prefers-reduced-motion: reduce) {
    .footer-availability-dot,
    .sticky-help-dot {
        animation: none !important;
    }
}

/* Link columns */
.footer-col-title {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin: 0 0 18px;
}
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    text-decoration: none;
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover { color: var(--green); }
.footer-link-count {
    display: inline-flex;
    align-items: center;
    padding: 1px 7px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}

/* Bottom row */
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.48);
}
.footer-bottom-left {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 10px;
}
.footer-bottom-sep {
    color: rgba(255, 255, 255, 0.25);
}
.footer-bottom-right {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12.5px;
    letter-spacing: 0.04em;
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--green); }

/* Page-load timing pill (injected via JS in footer-bottom-right) */
.footer-page-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.55);
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    font-size: 12.5px;
}
.footer-page-time strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}
.footer-page-time-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}
.footer-page-time.is-medium .footer-page-time-dot { background: #f59e0b; }
.footer-page-time.is-slow .footer-page-time-dot { background: rgba(255, 255, 255, 0.4); }

@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 36px;
    }
    .footer-col-brand { grid-column: 1 / -1; max-width: 520px; }
}
@media (max-width: 560px) {
    .site-footer { padding: 52px 0 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* Floating to-top ---------------------------------------------------------- */

.to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--green);
    color: var(--navy);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px -8px rgba(32, 221, 123, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 50;
}
.to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.to-top:hover {
    background: var(--green-2);
    transform: translateY(-3px);
}
.to-top svg { width: 20px; height: 20px; }

/* Responsive --------------------------------------------------------------- */

@media (max-width: 1024px) {
    :root { --section-pad: 80px; }

    .hero-grid,
    .about-grid,
    .why-grid,
    .contact-grid { gap: 50px; }

    .nav-main { gap: 24px; }
    .nav-main a { font-size: 15px; }
}

@media (max-width: 880px) {
    .header-inner { height: 72px; }

    .nav-main {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 18px 28px;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-main.open { display: flex; }
    .nav-main a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 16px;
    }
    .nav-main a:last-child { border-bottom: none; }

    .menu-toggle { display: flex; }

    .hero {
        padding: 40px 0 80px;
        min-height: auto;
    }
    .hero-grid,
    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-photo { min-height: 360px; order: -1; }
    .cms-hex { max-width: 340px; height: 340px; }
    .cms-badge { width: 62px; height: 62px; border-radius: 14px; }
    .cms-badge svg { width: 32px; height: 32px; }
    .cms-badge-img img { width: 36px; height: 36px; }
    .pos-1, .pos-4 { margin-left: -31px; }
    .cms-center { width: 110px; height: 110px; padding: 10px; }
    .cms-center-mark { width: 30px; height: 30px; font-size: 16px; }
    .cms-center strong { font-size: 14px; }
    .cms-center small { font-size: 9px; }

    .contact-promise { padding: 32px 26px 26px; }
    .promise-title { font-size: 20px; }

    .photo-frame img { max-width: 380px; }
    .exp-badge { padding: 16px 22px; bottom: -10px; right: 0; }
    .exp-badge strong { font-size: 42px; }

    .stats-grid { gap: 30px; }
    .stat strong { font-size: 42px; }

    .site-header .btn-outline { display: none; }

    .section-head { margin-bottom: 50px; }
}

@media (max-width: 540px) {
    .container { padding: 0 20px; }

    .hero h1 { font-size: 56px; }
    .hero-desc { font-size: 16px; }
    .role { font-size: 14px; letter-spacing: 0.16em; }

    .hero-photo { min-height: 300px; }
    .cms-hex { max-width: 280px; height: 280px; }
    .cms-badge { width: 52px; height: 52px; border-radius: 12px; }
    .cms-badge svg { width: 28px; height: 28px; }
    .cms-badge-img img { width: 30px; height: 30px; }
    .pos-1, .pos-4 { margin-left: -26px; }
    .cms-center { width: 92px; height: 92px; }
    .cms-center-mark { width: 26px; height: 26px; font-size: 14px; margin-bottom: 4px; }
    .cms-center strong { font-size: 13px; }
    .cms-center small { font-size: 8px; margin-top: 4px; }

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

    .stat strong { font-size: 36px; }
    .stat-label { font-size: 12px; }

    .exp-badge { padding: 14px 18px; gap: 10px; }
    .exp-badge strong { font-size: 36px; }
    .exp-badge span { font-size: 11px; }

    .service-card { padding: 50px 22px 28px; }

    .check-list { padding-left: 18px; }
    .check-dot { left: -28px; width: 14px; height: 14px; }
}

/* Scroll reveal ------------------------------------------------------------ */

/* Landing page hero (Spoedhulp etc.) -------------------------------------- */

/* Outline button on dark backgrounds */
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
    transform: translateY(-2px);
}

/* Emergency flow (3 stappen) */

/* Common causes section — reuses .kb-grid / .kb-card */

/* Compact contact tail on landing page */

/* Symptom recognition grid */

/* First aid checklist (navy section) */

/* Vertical dashed connector line behind circles */

/* Big green circle with leading-zero number — same as process-section */

/* CMS spoedhulp grid (navy section) */

/* Why-specialist comparison */

/* Responsive — landing pages */

/* ===== TOOLS PAGES ===================================================== */

/* Result area */
@keyframes tool-spin { to { transform: rotate(360deg); } }

/* Skeleton placeholders shown during slow API calls -------------------- */

@keyframes tool-skel-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* SPF lookup-tree breakdown */

/* Mail header analyzer */

/* CTA-banner privacy-footer-note */

/* Article author-box */

/* Sticky help-CTA op kennisbank-artikelen */
.sticky-help {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    width: 320px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 24px 60px -16px rgba(14, 30, 61, 0.32), 0 0 0 1px rgba(14, 30, 61, 0.05);
    padding: 22px 22px 20px;
    animation: sticky-help-in 460ms cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom right;
}
.sticky-help[hidden] { display: none; }

@keyframes sticky-help-in {
    from { opacity: 0; transform: translateY(16px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.sticky-help-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    padding-right: 26px;
}
.sticky-help-avatar {
    position: relative;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
}
.sticky-help-avatar img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 1px var(--border);
}
.sticky-help-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #22c55e;
    border: 2.5px solid var(--white);
    z-index: 1;
}
.sticky-help-status::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: #22c55e;
    opacity: 0.45;
    animation: sticky-help-status-pulse 2.2s ease-in-out infinite;
    z-index: -1;
}
@keyframes sticky-help-status-pulse {
    0%, 100% { transform: scale(1); opacity: 0.45; }
    50%      { transform: scale(1.7); opacity: 0; }
}

.sticky-help-text strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 4px;
}
.sticky-help-text span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 500;
}
.sticky-help-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: online-heartbeat 2s ease-in-out infinite;
}

.sticky-help-message {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text);
    margin: 0 0 14px;
    padding: 12px 14px;
    background: var(--bg-soft);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.sticky-help-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-dim);
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    padding: 0;
}
.sticky-help-close:hover {
    background: var(--bg-soft);
    color: var(--text);
}

.sticky-help-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sticky-help-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 13px 16px;
    background: var(--green);
    color: var(--navy);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 10px;
    transition: all var(--transition);
    line-height: 1;
    letter-spacing: -0.005em;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}
.sticky-help-btn:hover {
    background: var(--green-2);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px -8px rgba(32, 221, 123, 0.5);
}
.sticky-help-btn-wa {
    background: #25D366;
    color: var(--white);
}
.sticky-help-btn-wa:hover {
    background: #1DA851;
    color: var(--white);
    box-shadow: 0 8px 18px -8px rgba(37, 211, 102, 0.5);
}
.sticky-help-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (max-width: 540px) {
    .sticky-help {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        padding: 14px 16px 12px;
    }
    .sticky-help-text strong { font-size: 14px; }
    .sticky-help-text span { font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
    .sticky-help { animation: none; }
    .sticky-help-status::after { animation: none; }
}

/* ===== FEATURED SERVICES (homepage section) ========================== */

.featured-services {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}
.featured-services::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: var(--green-tint);
    border-radius: 50%;
    top: -120px;
    right: -140px;
    opacity: 0.5;
    z-index: 0;
}
.featured-services::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: var(--green-tint);
    border-radius: 50%;
    bottom: -80px;
    left: -100px;
    opacity: 0.35;
    z-index: 0;
}
.featured-services .container { position: relative; z-index: 1; }

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    max-width: 1180px;
    margin: 50px auto 0;
}

.featured-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 30px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(32, 221, 123, 0.32);
}
.featured-card-highlight {
    border-color: rgba(32, 221, 123, 0.42);
    box-shadow: 0 14px 36px -16px rgba(32, 221, 123, 0.30);
    background: linear-gradient(180deg, var(--bg) 0%, var(--green-tint) 220%);
}
.featured-card-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green) 0%, var(--green-2) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--green);
    color: var(--white);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 10px -4px rgba(32, 221, 123, 0.5);
}

.featured-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green-tint) 0%, var(--green-tint-2) 100%);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(32, 221, 123, 0.18);
    transition: all var(--transition);
}
.featured-icon svg { width: 26px; height: 26px; }
.featured-card:hover .featured-icon {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    transform: scale(1.05);
}

.featured-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.featured-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.featured-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.featured-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.55;
}
.featured-bullets svg {
    width: 16px;
    height: 16px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 3px;
}

.featured-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
    text-decoration: none;
    padding: 10px 0 0;
    border-top: 1px solid var(--border);
    transition: gap var(--transition), color var(--transition);
}
.featured-link span {
    transition: transform var(--transition);
    display: inline-block;
}
.featured-card:hover .featured-link {
    color: var(--green-2);
}
.featured-card:hover .featured-link span {
    transform: translateX(4px);
}

@media (max-width: 720px) {
    .featured-grid { grid-template-columns: 1fr; gap: 16px; }
    .featured-card { padding: 26px 24px 22px; }
}

/* ===== KENNISBANK FILTER ============================================== */

.kb-filter {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.kb-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1;
}
.kb-filter-btn:hover {
    background: var(--bg-soft);
    border-color: color-mix(in srgb, var(--green) 35%, var(--border));
    color: var(--text);
}
.kb-filter-btn.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    box-shadow: 0 6px 14px -8px rgba(14, 30, 61, 0.4);
}
.kb-filter-btn.is-active:hover {
    background: var(--navy);
    color: var(--white);
}
.kb-filter-btn.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.kb-filter-count {
    display: inline-block;
    min-width: 18px;
    text-align: center;
    padding: 1px 6px;
    background: var(--bg-soft);
    color: var(--text-dim);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
}
.kb-filter-btn.is-active .kb-filter-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.kb-filter-status {
    text-align: center;
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0 auto 24px;
    max-width: 1100px;
}
.kb-filter-status[hidden] { display: none; }
.kb-filter-status strong { color: var(--text); }
.kb-filter-status a {
    color: var(--green-2);
    font-weight: 600;
    text-decoration: none;
    margin-left: 8px;
}
.kb-filter-status a:hover { text-decoration: underline; }

.kb-card[hidden] { display: none; }

/* Empty-state */
.kb-grid-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: var(--text-dim);
    font-size: 14.5px;
}

/* Mobile: horizontaal scrollende strip met fade aan rand */
@media (max-width: 640px) {
    .kb-filter {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 0;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        max-width: none;
    }
    .kb-filter-btn {
        scroll-snap-align: start;
        flex-shrink: 0;
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* DNS propagation — premium card grid */

/* DNS propagation — verschillende-waardes groep-cards */

/* Kennisbank — Gerelateerde artikelen & Recent bekeken --------------------- */

.kb-related,
.kb-recent {
    padding: 80px 0 40px;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
}
.kb-recent {
    padding-top: 0;
    background: var(--bg-soft);
    border-top: none;
}

.kb-related h2,
.kb-recent h2 {
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}


.kb-recent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}


.kb-recent-card {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 22px 18px;
    text-decoration: none;
    color: var(--text);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
}

.kb-recent-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(14, 30, 61, 0.15);
}


.kb-recent-card .kb-cat {
    align-self: flex-start;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 4px 9px;
    border-radius: 4px;
    margin-bottom: 14px;
    background: var(--green-tint);
    color: var(--navy);
}

.kb-recent-card .kb-cat[data-cat="security"] { background: #fef2f2; color: #b91c1c; }

.kb-recent-card .kb-cat[data-cat="email"] { background: #eff6ff; color: #1d4ed8; }

.kb-recent-card .kb-cat[data-cat="performance"] { background: #fff7ed; color: #c2410c; }


.kb-recent-card h3 {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}


.kb-recent-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 14px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.kb-recent-card .kb-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 600;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.kb-recent-card .kb-read-more {
    color: var(--green);
    font-weight: 700;
}

@media (max-width: 720px) {
    .kb-related,
    .kb-recent { padding: 50px 0 30px; }
    
    .kb-recent-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* Klant-portaal — beveiligd inloggegevens delen --------------------------- */

/* View-pagina (jouw kant) */
@keyframes portalSpin { to { transform: rotate(360deg); } }

/* Floating security badge — klant-portaal --------------------------------- */
@keyframes portalPulse {
    0%   { transform: scale(0.95); opacity: 0.35; }
    70%  { transform: scale(1.25); opacity: 0;    }
    100% { transform: scale(1.25); opacity: 0;    }
}
@keyframes portalFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0);   }
}

/* Security Headers Analyzer — grade card + table ------------------------- */

/* E-mail migratie landing ------------------------------------------------- */

/* Helper classes voor section-titles op navy backgrounds */

/* SCENARIOS section — wanneer huur je ons in (wit met green-tint accent) */

/* INCLUDED section (wit, cards-grid) */

/* PRIJS section (NAVY met grid-pattern, zoals stats) */

/* FORM section (wit) */

/* ===== CONTACT-PRO (landingspagina's) ================================== */

/* LEFT: profile card */
@keyframes contactPulse {
    0%   { transform: scale(0.8); opacity: 0.5; }
    70%  { transform: scale(2.2); opacity: 0;   }
    100% { transform: scale(2.2); opacity: 0;   }
}

/* RIGHT: channels + hours */

/* ===== MANIFESTO (migratie-regels) ===================================== */

/* CTA banner — Stuur me je foutmelding (homepage variant) ----------------- */

.cta-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 18px;
    padding: 6px 14px;
    background: rgba(32, 221, 123, 0.12);
    border: 1px solid rgba(32, 221, 123, 0.35);
    border-radius: 999px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 22px;
}
.cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    margin: 0;
    padding-top: 6px;
}
.cta-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}
.cta-trust-item svg {
    color: var(--green);
    flex-shrink: 0;
}
.cta-trust-dot {
    color: rgba(255, 255, 255, 0.30);
}

@media (max-width: 600px) {
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-actions .btn { justify-content: center; }
    .cta-trust {
        flex-direction: column;
        gap: 8px;
        font-size: 12.5px;
    }
    .cta-trust-dot { display: none; }
}

/* ===== SECURITY HEADERS — explain-sections (vervangt tool-explain) ===== */

/* Grade scale — horizontal rows with colored letter-tile */

/* Header groups — by criticality */

/* Observations — practical insights */

/* ============================================
   KENNISBANK READING-PROGRESS-BAR
   ============================================ */

.kb-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    z-index: 101;
    pointer-events: none;
}
.kb-progress-fill {
    height: 100%;
    width: 100%;
    background: var(--green);
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.08s linear;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .kb-progress-fill {
        transition: none;
    }
}

/* ============================================
   KENNISBANK ENGAGE-CARD (feedback + share gecombineerd)
   ============================================ */

.kb-engage {
    position: relative;
    margin: 48px 0 0;
    padding: 28px 0 0;
    background: transparent;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.kb-engage-pattern {
    display: none;
}

.kb-engage-inner {
    padding: 0;
}

.kb-engage-divider {
    height: 1px;
    margin: 18px 0;
    background: var(--border);
}

.kb-feedback {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
.kb-feedback-question {
    flex: 1 1 auto;
    min-width: 0;
}
.kb-feedback-question h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.005em;
    text-align: left;
}
.kb-feedback-note {
    margin: 2px 0 0;
    font-size: 12.5px;
    color: var(--text-muted);
    font-style: italic;
    text-align: left;
}
.kb-feedback-buttons {
    flex: 0 0 auto;
    display: inline-flex;
    gap: 8px;
}
.kb-feedback-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 96px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    font: inherit;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}
.kb-feedback-btn[data-vote="up"]:hover {
    border-color: color-mix(in srgb, var(--green) 45%, var(--border));
    background: var(--green-tint);
    color: var(--green-2);
    transform: translateY(-1px);
}
.kb-feedback-btn[data-vote="down"]:hover {
    border-color: color-mix(in srgb, var(--navy) 35%, var(--border));
    background: color-mix(in srgb, var(--navy) 6%, #ffffff);
    color: var(--navy);
    transform: translateY(-1px);
}
.kb-feedback-btn[disabled] {
    cursor: default;
    transform: none;
}
.kb-feedback-btn[disabled]:not(.is-selected) {
    opacity: 0.5;
}
.kb-feedback-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.kb-feedback-btn.is-selected[data-vote="up"] {
    border-color: var(--green);
    background: var(--green);
    color: var(--navy);
}
.kb-feedback-btn.is-selected[data-vote="down"] {
    border-color: var(--navy);
    background: var(--navy);
    color: #ffffff;
}

.kb-feedback-count {
    flex: 1 0 100%;
    margin: 0;
    font-size: 12.5px;
    color: var(--text-muted);
    text-align: right;
}
.kb-feedback-count[hidden] { display: none; }

@media (max-width: 600px) {
    .kb-feedback {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .kb-feedback-question h3,
    .kb-feedback-note {
        text-align: center;
    }
    .kb-feedback-count { text-align: center; }
}

.kb-feedback-comment {
    flex: 1 0 100%;
    margin-top: 8px;
    text-align: left;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.kb-feedback-comment[hidden] { display: none; }
.kb-feedback-comment label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}
.kb-feedback-comment textarea {
    width: 100%;
    min-height: 70px;
    padding: 10px 12px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font: inherit;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    background: #ffffff;
    resize: vertical;
    transition: border-color var(--transition);
}
.kb-feedback-comment textarea:focus {
    outline: none;
    border-color: var(--green);
}
.kb-feedback-comment-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}
.kb-feedback-comment-actions button {
    padding: 7px 16px;
    font-size: 13px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: #ffffff;
    color: var(--text);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
}
.kb-feedback-comment-actions button.is-primary {
    background: var(--green);
    border-color: var(--green);
    color: var(--navy);
}
.kb-feedback-comment-actions button.is-primary:hover { background: var(--green-2); border-color: var(--green-2); }
.kb-feedback-comment-actions button:not(.is-primary):hover { background: var(--bg-soft); }

.kb-feedback-thanks {
    flex: 1 0 100%;
    margin: 6px 0 0;
    font-size: 13.5px;
    color: var(--green-2);
    font-weight: 600;
    text-align: right;
}
.kb-feedback-thanks[hidden] { display: none; }
@media (max-width: 600px) {
    .kb-feedback-thanks { text-align: center; }
}

/* honeypot — onzichtbaar voor mensen, zichtbaar voor bots */
.kb-feedback-hp {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

/* Like-badge in kennisbank-card meta-row */
.kb-card-likes {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--green-tint);
    color: var(--green-2);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--green) 25%, transparent);
    line-height: 1;
}
.kb-card-likes svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

/* Like-badge bovenaan het artikel (in kb-article-meta) */
.kb-article-likes {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--green-tint);
    color: var(--green-2);
    font-size: 13px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--green) 25%, transparent);
    line-height: 1.4;
}
.kb-article-likes strong {
    color: var(--green-2);
    font-weight: 800;
}
.kb-article-likes svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* ============================================
   KENNISBANK ARTIKEL-SHARE ("Deel dit artikel")
   ============================================ */

.kb-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    justify-content: space-between;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
.kb-share-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.005em;
    flex: 1 1 auto;
    min-width: 0;
}
.kb-share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.kb-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    font: inherit;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(14, 30, 61, 0.04);
    transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.kb-share-btn:hover {
    border-color: color-mix(in srgb, var(--green) 50%, var(--border));
    background: var(--green-tint);
    color: var(--green-2);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px -8px rgba(32, 221, 123, 0.4);
}
.kb-share-btn:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}
.kb-share-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.kb-share-btn.is-copied {
    border-color: var(--green);
    background: var(--green);
    color: var(--navy);
}

@media (max-width: 600px) {
    .kb-engage {
        margin: 32px 0 16px;
        border-radius: 14px;
    }
    .kb-engage-inner { padding: 22px 20px; }
    .kb-engage-divider { margin: 18px -4px; }
    .kb-share-label {
        width: 100%;
        text-align: center;
    }
    .kb-share-buttons {
        width: 100%;
        justify-content: center;
    }
    .kb-share-btn { padding: 7px 12px; font-size: 13px; }
}

/* ============================================
   SNIPPET BIBLIOTHEEK (/snippets/)
   ============================================ */

/* Bookmark / favorite button */
@keyframes sn-bookmark-pop {
    0%   { opacity: 0;    transform: scale(0.4); }
    40%  { opacity: 0.85; transform: scale(1.6); }
    100% { opacity: 0;    transform: scale(2.0); }
}
@keyframes sn-bookmark-bounce {
    0%   { transform: scale(1); }
    35%  { transform: scale(1.3) rotate(-6deg); }
    65%  { transform: scale(0.9) rotate(3deg); }
    100% { transform: scale(1) rotate(0); }
}

/* Favorites filter button styling */

/* ============================================
   TOOLS-INDEX: workflows-sectie
   ============================================ */

/* ============================================
   PASSWORD + UUID GENERATOR tool
   ============================================ */

/* Tabs */

/* Controls */

/* Length-slider */

/* Checkboxes */

/* Pill-group voor count / version */

/* Strength meter */

/* ============================================
   .htpasswd GENERATOR tool
   ============================================ */

/* User-rij */

/* Format & realm opties */

/* Output */

/* ============================================
   REDIRECT TRACER tool
   ============================================ */

/* Chain */

/* Verticale lijn tussen hops */

/* ============================================
   .htaccess BUILDER tool
   ============================================ */

.htaccess-builder {
    margin-top: 8px;
}

/* Feature-fieldsets in een 2x2 grid onder de output */

/* Checkboxes binnen een fieldset: 1-kolom (volle fieldset-breedte) */

/* Output panel — volle breedte, prominent bovenaan */

/* Tablet + mobiel */

/* ============================================
   DNSSEC tool — overall banner + chain-list + recs
   ============================================ */

/* ============================================
   TOOL DEEP-DIVE CONTENT (per-tool SEO blok)
   ============================================ */

/* Use-case grid */

/* Interpretation list (record-types, score-levels, etc.) */

/* Personal-experience block */

/* FAQ accordions */

/* Related links grid */

/* ========================================================================
   Joomla landing page (joomla-hulp.html)
   ======================================================================== */

/* Eyebrow met Joomla-logo */

/* Joomla versies (NAVY section met grid-pattern, zoals mig-pricing-navy) */

/* Extensions strip onderaan navy versies-section */

/* Waarom-ik section (wit, lijst zoals mig-checklist maar tweekoloms) */

/* ========================================================================
   Site Audit — share-section binnen de navy summary-CTA
   ======================================================================== */

/* "Of"-divider */

/* Inhoud-rij: text-blok links, input+knop rechts */

/* ========================================================================
   Site Audit share-pagina (/audit/{slug})
   ======================================================================== */

/* Hero — kleinere variant van page-hero, met scan-meta */

/* Empty/expired state */

/* Results-section op share-pagina */

/* ========================================================================
   Country-flag — flat SVG (vervangt emoji-flags overal op de site)
   ======================================================================== */

/* ========================================================================
   MX-route tracer (/tools/mx-trace)
   ======================================================================== */

/* Eind-summary card */

/* Domain-record card */

/* Domain-pills (SPF/DMARC/MTA-STS/TLS-RPT) */

/* Domain detail-rows (raw record values) */

/* MX-keten — nodes met arrows ertussen */

/* Pijl tussen nodes — staat als ::before van de NIET-eerste node */

/* IP-cards binnen een node */

/* DNSBL-pill grid */

/* Mobile */

/* ========================================================================
   100% Nederland check (/100-procent-nederland)
   ======================================================================== */

/* Results-section met subtiel constellation-pattern op zijkanten */

/* Eyebrow met NL-vlag */

/* SCOREBOARD ----------------------------------------------------------- */

/* SERVICES GRID -------------------------------------------------------- */

/* Badges (NL/EU/non-EU/mixed/unknown) */

/* Service-nodes (binnen kaart) */

/* SPF detail panel */

/* HIGHLIGHTS ----------------------------------------------------------- */

/* CONTENT-SECTIES van de landing-pagina */

/* PERSOONLIJK INTRO-BLOK ----------------------------------------------- */

/* PRAKTIJK-CASES — essay-stack ipv card-grid -------------------------- */

/* QUOTE-PULL ----------------------------------------------------------- */

/* HERO TRUST-STRIP — eigen witte band onder de hero ------------------- */

/* ZICHTBARE FAQ -------------------------------------------------------- */


