:root {
    --ink: #10232b;
    --muted: #60717a;
    --line: #d8e3e3;
    --paper: #f7faf9;
    --soft: #eaf5f3;
    --dark: #0b1b22;
    --accent: #0a8f8a;
    --accent-2: #2e6fe8;
    --accent-3: #f2c14e;
    --mint: #2bb3a3;
    --white: #ffffff;
    --radius: 8px;
    --shadow: 0 20px 54px rgba(16, 35, 43, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(43, 179, 163, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--paper) 42%, #eef5f4 100%);
    line-height: 1.6;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(216, 227, 227, 0.92);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: max-content;
}

.brand-logo {
    width: 210px;
    height: 48px;
    display: block;
}

.brand strong,
.brand small {
    display: none;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 760px;
}

.nav a {
    padding: 10px 12px;
    border-radius: 7px;
    text-decoration: none;
    color: #354149;
    font-size: 15px;
    line-height: 1.2;
}

.nav a:hover,
.nav a.is-active {
    background: var(--soft);
    color: var(--accent);
}

.hero {
    position: relative;
    min-height: min(620px, calc(100vh - 88px));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 15, 19, 0.9) 0%, rgba(8, 15, 19, 0.68) 38%, rgba(8, 15, 19, 0.14) 72%);
}

.hero-content {
    position: relative;
    width: min(760px, calc(100% - 36px));
    margin-left: clamp(18px, 7vw, 92px);
    padding: 64px 0 76px;
    color: var(--white);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--mint);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    max-width: 920px;
    font-size: clamp(42px, 5.7vw, 66px);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
    max-width: 680px;
    margin: 24px 0 0;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
}

.button.primary {
    background: linear-gradient(135deg, var(--accent-3), #ffe08a);
    color: #182026;
    box-shadow: 0 10px 26px rgba(242, 193, 78, 0.28);
}

.button.secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
    color: var(--ink);
    border-color: var(--line);
    background: var(--white);
}

.button.small {
    min-width: 112px;
    background: var(--dark);
    color: var(--white);
}

.section {
    width: min(1160px, calc(100% - 36px));
    margin: 0 auto;
    padding: 86px 0;
}

.section > h2,
.section > p {
    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 36px;
    align-items: end;
    margin-bottom: 30px;
}

.corporate-panel {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
    gap: clamp(28px, 6vw, 78px);
    align-items: start;
    padding-top: 74px;
    padding-bottom: 74px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.corporate-copy {
    display: grid;
    gap: 16px;
}

.corporate-copy p {
    margin: 0;
    font-size: 18px;
}

h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.2;
}

p {
    color: var(--muted);
}

.feature-grid,
.service-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

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

.capability-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 34px rgba(16, 35, 43, 0.07);
}

.capability-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 24px;
    border-radius: 7px;
    background: var(--soft);
    color: var(--accent);
    font-weight: 900;
}

.feature,
.service-list article,
.values article,
.contact-panel,
.contact-form,
.job-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 34px rgba(16, 35, 43, 0.07);
}

.feature,
.service-list article,
.values article {
    padding: 28px;
}

.feature,
.service-list article,
.capability-grid article,
.method-grid article,
.route-card {
    display: flex;
    flex-direction: column;
}

.feature span {
    display: block;
    margin-bottom: 34px;
    color: var(--accent-2);
    font-weight: 900;
}

.band {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
    gap: clamp(30px, 6vw, 80px);
    align-items: center;
    padding: 82px clamp(18px, 7vw, 92px);
    background:
        linear-gradient(135deg, rgba(11, 27, 34, 0.98), rgba(16, 49, 58, 0.98)),
        var(--dark);
    color: var(--white);
}

.band.light {
    width: min(1160px, calc(100% - 36px));
    max-width: 1160px;
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--ink);
}

.band p,
.band span {
    color: rgba(255, 255, 255, 0.72);
}

.band.light p,
.band.light span {
    color: var(--muted);
}

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

.stats div {
    border-left: 3px solid var(--mint);
    padding-left: 16px;
}

.stats strong {
    display: block;
    color: var(--accent-3);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
}

.stats span {
    display: block;
    margin-top: 6px;
}

.outcome-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: min(1160px, calc(100% - 36px));
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--line);
    box-shadow: var(--shadow);
}

.outcome-strip article {
    min-height: 158px;
    padding: 24px;
    background: var(--white);
}

.outcome-strip strong,
.outcome-strip span {
    display: block;
}

.outcome-strip strong {
    font-size: 20px;
    color: var(--ink);
}

.outcome-strip span {
    margin-top: 10px;
    color: var(--muted);
}

.split,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: clamp(30px, 6vw, 76px);
    align-items: start;
}

.operating-model {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
    gap: clamp(28px, 6vw, 78px);
    align-items: start;
}

.model-list {
    display: grid;
    gap: 12px;
}

.model-list article {
    padding: 24px;
    border-left: 5px solid var(--accent);
    background: var(--white);
    box-shadow: 0 10px 34px rgba(16, 35, 43, 0.07);
}

.model-list h3,
.model-list p {
    margin: 0;
}

.model-list p {
    margin-top: 6px;
}

.text-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--accent);
    font-weight: 800;
}

.check-list,
.values,
.method-grid {
    display: grid;
    gap: 12px;
}

.method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.method-grid article {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 34px rgba(16, 35, 43, 0.07);
}

.method-grid strong,
.method-grid span {
    display: block;
}

.method-grid strong {
    color: var(--accent);
    font-size: 19px;
}

.method-grid span {
    margin-top: 6px;
    color: var(--muted);
}

.check-list p {
    margin: 0;
    padding: 15px 18px;
    background: var(--soft);
    border-left: 4px solid var(--mint);
    color: var(--ink);
    font-weight: 750;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: flex-start;
}

.tag-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
    color: var(--ink);
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(16, 35, 43, 0.05);
}

.tag-cloud.compact span {
    min-height: 36px;
    font-size: 14px;
}

.cta {
    text-align: center;
    padding-top: 70px;
}

.cta p {
    max-width: 640px;
    margin: 18px auto 28px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 820px;
    margin: 0 auto;
}

.cta-actions .button {
    min-width: 190px;
}

.page-hero {
    position: relative;
    padding: 92px clamp(18px, 7vw, 92px) 74px;
    background:
        linear-gradient(90deg, rgba(8, 15, 19, 0.92) 0%, rgba(8, 15, 19, 0.72) 50%, rgba(8, 15, 19, 0.5) 100%),
        url('../img/testing-consultancy-hero.png') center / cover no-repeat;
    color: var(--white);
}

.page-hero.compact {
    min-height: 390px;
}

.page-hero--opdrachtgevers {
    background-image:
        linear-gradient(90deg, rgba(8, 15, 19, 0.92) 0%, rgba(8, 15, 19, 0.72) 50%, rgba(8, 15, 19, 0.5) 100%),
        url('../img/hero-opdrachtgevers.jpg');
}

.page-hero--diensten {
    background-image:
        linear-gradient(90deg, rgba(8, 15, 19, 0.92) 0%, rgba(8, 15, 19, 0.72) 50%, rgba(8, 15, 19, 0.5) 100%),
        url('../img/hero-diensten.jpg');
}

.page-hero--vacatures {
    background-image:
        linear-gradient(90deg, rgba(8, 15, 19, 0.92) 0%, rgba(8, 15, 19, 0.72) 50%, rgba(8, 15, 19, 0.5) 100%),
        url('../img/hero-vacatures.jpg');
}

.page-hero--kandidaat {
    background-image:
        linear-gradient(90deg, rgba(8, 15, 19, 0.92) 0%, rgba(8, 15, 19, 0.72) 50%, rgba(8, 15, 19, 0.5) 100%),
        url('../img/hero-kandidaat.jpg');
}

.page-hero--over-ons {
    background-image:
        linear-gradient(90deg, rgba(8, 15, 19, 0.92) 0%, rgba(8, 15, 19, 0.72) 50%, rgba(8, 15, 19, 0.5) 100%),
        url('../img/hero-over-ons.jpg');
}

.page-hero--contact {
    background-image:
        linear-gradient(90deg, rgba(8, 15, 19, 0.92) 0%, rgba(8, 15, 19, 0.72) 50%, rgba(8, 15, 19, 0.5) 100%),
        url('../img/hero-contact.jpg');
}

.page-hero h1 {
    font-size: clamp(38px, 5.5vw, 66px);
}

.service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process {
    padding-top: 20px;
}

.process ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.process li {
    padding: 18px 20px;
    background: var(--soft);
    border-left: 4px solid var(--mint);
}

.jobs {
    display: grid;
    gap: 16px;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 26px;
}

.job-card h2 {
    font-size: clamp(24px, 3vw, 34px);
}

.job-meta {
    margin: 0 0 4px;
    color: var(--accent);
    font-weight: 800;
}

.contact-panel,
.contact-form {
    padding: 28px;
}

.contact-routing {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 0;
}

.route-card {
    min-height: 126px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    text-decoration: none;
    box-shadow: 0 10px 34px rgba(16, 35, 43, 0.07);
}

.route-card strong,
.route-card span {
    display: block;
}

.route-card strong {
    color: var(--ink);
    font-size: 20px;
}

.route-card span {
    margin-top: 8px;
    color: var(--muted);
}

.route-card:hover,
.route-card.is-active {
    border-color: var(--accent);
    background: var(--soft);
}

.contact-panel h2 {
    font-size: 32px;
}

.contact-panel a {
    color: var(--accent);
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-note {
    margin: 0;
    font-size: 14px;
}

.form-note a,
.contact-panel a {
    color: var(--accent);
    font-weight: 800;
}

label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 800;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #cfd9d4;
    border-radius: 7px;
    padding: 13px 14px;
    font: inherit;
    color: var(--ink);
    background: #fff;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: 3px solid rgba(15, 124, 128, 0.18);
    border-color: var(--accent);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pyramid {
    display: grid;
    gap: 10px;
    align-self: center;
}

.pyramid div {
    margin: 0 auto;
    padding: 18px 22px;
    text-align: center;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
}

.pyramid div:nth-child(1) {
    width: 56%;
    border-top: 5px solid var(--accent-2);
}

.pyramid div:nth-child(2) {
    width: 76%;
    border-top: 5px solid var(--accent);
}

.pyramid div:nth-child(3) {
    width: 96%;
    border-top: 5px solid var(--accent-3);
}

.pyramid strong,
.pyramid span {
    display: block;
}

.pyramid span {
    margin-top: 4px;
    color: var(--muted);
}

.admin-login {
    max-width: 440px;
}

.admin-bar {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
}

.admin-table-wrap {
    overflow-x: auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.admin-filters {
    display: grid;
    grid-template-columns: minmax(160px, 0.8fr) minmax(160px, 0.8fr) minmax(220px, 1.3fr) auto auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 34px rgba(16, 35, 43, 0.07);
}

.status-form select {
    min-width: 140px;
    padding: 9px 10px;
}

.admin-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

.admin-table th {
    color: var(--ink);
    background: var(--soft);
    font-size: 12px;
    text-transform: uppercase;
}

.admin-table small,
.admin-table span {
    display: block;
    color: var(--muted);
    margin-top: 4px;
}

.admin-table a {
    color: var(--accent);
    font-weight: 800;
}

.legal-content {
    max-width: 920px;
}

.legal-content h2 {
    margin-top: 34px;
    font-size: clamp(24px, 3vw, 34px);
}

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

.legal-content a {
    color: var(--accent);
    font-weight: 800;
}

.notice {
    border-radius: 7px;
    padding: 14px 16px;
    font-weight: 750;
}

.notice p {
    margin: 0;
}

.notice.success {
    background: #e6f5ed;
    color: #185c3f;
}

.notice.error {
    background: #fff0eb;
    color: #8b3518;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
    padding: 44px clamp(18px, 7vw, 92px);
    background: #0b1115;
    color: var(--white);
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer a,
.site-footer span {
    display: block;
}

.site-footer span {
    margin-bottom: 8px;
    color: var(--accent-3);
    font-weight: 900;
}

@media (max-width: 860px) {
    .hero {
        min-height: 560px;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(8, 15, 19, 0.92), rgba(8, 15, 19, 0.66));
    }

    .hero-content {
        padding-top: 58px;
        padding-bottom: 64px;
    }

    .section-heading,
    .feature-grid,
    .service-list,
    .capability-grid,
    .corporate-panel,
    .outcome-strip,
    .operating-model,
    .contact-routing,
    .admin-filters,
    .band,
    .split,
    .contact-layout,
    .site-footer,
    .form-row,
    .method-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .job-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .outcome-strip article {
        min-height: auto;
    }
}

/* ═══════════════════════════════════════════════════════════════
   INTERACTIVE ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* Scroll-triggered animations */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate].is-visible {
    opacity: 1;
    transform: none;
}
[data-animate][data-delay="1"] { transition-delay: 0.10s; }
[data-animate][data-delay="2"] { transition-delay: 0.20s; }
[data-animate][data-delay="3"] { transition-delay: 0.30s; }
[data-animate][data-delay="4"] { transition-delay: 0.40s; }
[data-animate][data-delay="5"] { transition-delay: 0.50s; }
[data-animate][data-delay="6"] { transition-delay: 0.60s; }

/* Header scroll state */
.site-header {
    transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled {
    padding-top: 7px;
    padding-bottom: 7px;
    box-shadow: 0 6px 28px rgba(16, 35, 43, 0.13);
}

/* Hamburger button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}
.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.28s ease;
    transform-origin: center;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Card hover effects */
.feature,
.capability-grid article,
.service-list article,
.values article,
.route-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.feature:hover,
.capability-grid article:hover,
.values article:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 56px rgba(16, 35, 43, 0.14);
    border-color: var(--accent);
}
.service-list article:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(16, 35, 43, 0.12);
    border-color: var(--mint);
}
.job-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 54px rgba(16, 35, 43, 0.14);
    border-color: var(--mint);
}
.outcome-strip article {
    transition: background 0.22s ease;
    cursor: default;
}
.outcome-strip article:hover {
    background: var(--soft);
}

/* Button hover animations */
.button {
    transition: transform 0.18s ease, box-shadow 0.18s ease,
                background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(242, 193, 78, 0.38);
}
.button.secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}
.button.secondary.dark:hover {
    background: var(--soft);
    border-color: var(--accent);
    color: var(--accent);
}
.button.small:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(10, 143, 138, 0.3);
}

/* Vacature-card acties + titellink naar detailpagina */
.job-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}
.job-title-link {
    color: inherit;
    text-decoration: none;
}
.job-title-link:hover {
    color: var(--accent);
}
@media (max-width: 640px) {
    .job-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Hero word cycling */
#hero-cycle {
    display: inline-block;
    color: var(--accent-3);
    transition: opacity 0.28s ease, transform 0.28s ease;
}
#hero-cycle.cycle-out {
    opacity: 0;
    transform: translateY(8px);
}

/* Trust / sector marquee strip */
.trust-strip {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    background: var(--white);
}
.trust-strip-inner {
    display: flex;
    gap: 52px;
    align-items: center;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}
.trust-strip-inner:hover { animation-play-state: paused; }
.trust-strip-inner span {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    flex-shrink: 0;
}
.trust-strip-inner span::before {
    content: '◆ ';
    color: var(--accent);
    font-size: 10px;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Process steps timeline */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    position: relative;
    padding-top: 8px;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 14px);
    right: calc(12.5% + 14px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--mint));
    z-index: 0;
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 14px 28px;
    position: relative;
    z-index: 1;
}
.process-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(10, 143, 138, 0.18);
    transition: background 0.22s ease, color 0.22s ease;
}
.process-step:hover .process-step-num {
    background: var(--accent);
    color: var(--white);
}
.process-step h3 {
    margin-bottom: 8px;
    font-size: 16px;
}
.process-step p {
    font-size: 14px;
    margin: 0;
    line-height: 1.55;
}

/* FAQ accordion */
.faq-list {
    display: grid;
    gap: 10px;
}
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover {
    box-shadow: 0 8px 24px rgba(16, 35, 43, 0.08);
}
.faq-item.is-open {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(10, 143, 138, 0.12);
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    border: none;
    background: none;
    font: inherit;
    font-weight: 800;
    font-size: 17px;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}
.faq-q::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1;
}
.faq-item.is-open .faq-q::after {
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.is-open .faq-a {
    max-height: 320px;
}
.faq-a p {
    margin: 0;
    padding: 0 24px 22px;
    font-size: 16px;
    line-height: 1.72;
    color: var(--muted);
}

/* Job filter bar */
.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.filter-btn {
    padding: 9px 20px;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s ease;
    box-shadow: 0 2px 8px rgba(16, 35, 43, 0.06);
}
.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--soft);
}
.filter-btn.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(10, 143, 138, 0.28);
}

/* Job skill tags */
.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}
.job-tag {
    padding: 4px 10px;
    border-radius: 5px;
    background: var(--soft);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Job card badge */
.job-badge {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    margin-left: 10px;
    vertical-align: middle;
    background: rgba(43, 179, 163, 0.12);
    color: var(--accent);
}
.job-badge.urgent {
    background: rgba(242, 193, 78, 0.18);
    color: #8b6000;
}

/* Improved footer */
.site-footer {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 36px 48px;
    padding: 60px clamp(18px, 7vw, 92px) 0;
    background: #0b1115;
    color: var(--white);
}
.footer-logo {
    width: 160px;
    height: auto;
    display: block;
    margin-bottom: 14px;
}
.footer-links {
    display: grid;
    gap: 9px;
    margin-top: 6px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.16s ease;
    display: block;
}
.footer-links a:hover {
    color: var(--white);
}
.footer-col-title {
    display: block;
    margin-bottom: 14px;
    color: var(--accent-3) !important;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.18s ease;
}
.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    gap: 16px;
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.16s ease;
}
.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.7);
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-link-button {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.16s ease;
}
.footer-link-button:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ─── Responsive overrides ──────────────────────────────────── */
@media (max-width: 860px) {
    .menu-toggle {
        display: flex;
    }

    .site-header {
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        gap: 0;
        padding: 10px clamp(18px, 4vw, 56px);
    }

    .brand {
        flex: 1;
    }

    .nav {
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.38s cubic-bezier(0.16, 1, 0.3, 1),
                    padding 0.28s ease;
        padding-top: 0;
        padding-bottom: 0;
        justify-content: flex-start;
        max-width: 100%;
    }

    .nav.is-open {
        max-height: 520px;
        padding-top: 10px;
        padding-bottom: 14px;
    }

    .nav a {
        border-radius: 0;
        padding: 13px 2px;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .site-footer {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding-top: 48px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .brand {
        width: auto;
    }

    .brand-logo {
        width: 172px;
        height: auto;
    }

    .nav a {
        padding: 8px 9px;
        font-size: 14px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 38px;
    }

    .hero p:not(.eyebrow),
    .page-hero p:not(.eyebrow) {
        font-size: 17px;
    }

    .hero-actions .button,
    .cta-actions .button,
    .contact-form .button,
    .admin-filters .button {
        width: 100%;
    }

    .cta-actions {
        width: 100%;
    }

    .section {
        padding: 62px 0;
    }

    .feature,
    .service-list article,
    .values article,
    .contact-panel,
    .contact-form,
    .job-card {
        padding: 22px;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
}

/* ── Cookie consent banner ─────────────────────────────────────── */
.cookie-banner[hidden] {
    display: none !important;
}
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translate(-50%, 140%);
    width: min(960px, calc(100% - 32px));
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: #0b1115;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
}
.cookie-banner.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}
.cookie-banner-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}
.cookie-banner-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}
.cookie-banner-text a {
    color: #2bb3a3;
    text-decoration: underline;
}
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-banner-actions .button {
    min-width: 0;
    padding: 10px 18px;
    font-size: 14px;
}
@media (max-width: 640px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        bottom: 12px;
    }
    .cookie-banner-actions {
        justify-content: stretch;
    }
    .cookie-banner-actions .button {
        flex: 1;
    }
}

/* ── Honeypot (spam) — visueel + voor screenreaders verborgen ──── */
.hp-field {
    position: absolute !important;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
