/* =======================================================================
   WESTCUBE PUBLIC LIGHT THEME
   =======================================================================
   Light, warm, premium design for public-facing pages.
   Based on brand_strategy.md — "From Dark Tech to Light Alchemy"

   DEPENDENCIES:
   - design-tokens.css must be loaded first (provides --wc-* variables)
   - Google Fonts: DM Sans + Playfair Display (loaded via <link> in template)

   SCOPE:
   - Public pages ONLY (homepage, services, kennisbank, etc.)
   - Does NOT affect admin panel (admin uses dark theme from design-tokens.css)
   ======================================================================= */

/* =======================================================================
   GOOGLE FONTS
   ======================================================================= */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* =======================================================================
   BASE / RESET
   ======================================================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--wc-font-primary);
    color: var(--wc-ink);
    background: var(--wc-canvas);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: rgba(30, 58, 95, 0.15);
    color: var(--wc-ink);
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* =======================================================================
   LIGHT THEME FORM RESET
   =======================================================================
   Override dark theme form styles from design-tokens.css which applies
   dark backgrounds and white text to all form inputs. These rules use
   higher specificity to ensure light-themed forms render correctly.
   ======================================================================= */
body form input[type="text"],
body form input[type="email"],
body form input[type="password"],
body form input[type="search"],
body form input[type="tel"],
body form textarea,
body form select {
    background-color: var(--wc-white);
    color: var(--wc-ink);
    border: 1px solid var(--wc-stone-border);
}

body form input::placeholder,
body form textarea::placeholder {
    color: var(--wc-stone-light);
}

body form input[type="text"]:focus,
body form input[type="email"]:focus,
body form input[type="password"]:focus,
body form input[type="search"]:focus,
body form input[type="tel"]:focus,
body form textarea:focus,
body form select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.08);
    border-color: var(--wc-signal);
}

body form input[type="checkbox"],
body form input[type="radio"] {
    background-color: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
}

/* =======================================================================
   FLASH NOTIFICATIONS — Light theme
   ======================================================================= */
.flash-container {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 560px;
    width: 100%;
    padding: 0 24px;
}

.flash-notification {
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-md);
    padding: 14px 20px;
    box-shadow: 0 4px 24px rgba(28, 25, 23, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--wc-ink);
    animation: fadeIn 0.4s var(--wc-ease) forwards;
}

.flash-notification__icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.flash-notification__icon--success { color: var(--wc-ember); }
.flash-notification__icon--error   { color: #dc2626; }
.flash-notification__icon--info    { color: var(--wc-signal); }

.flash-notification__message {
    flex: 1;
}

.flash-notification__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--wc-stone);
    font-size: 1.125rem;
    padding: 0 4px;
}

/* =======================================================================
   LAYOUT
   ======================================================================= */
.container {
    max-width: var(--wc-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* =======================================================================
   NAVIGATION — Frosted glass light nav
   ======================================================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 249, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(231, 229, 228, 0.5);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo img {
    height: 40px;
    width: auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    flex-wrap: nowrap;
}

.nav__link {
    font-size: 0.875rem;
    color: var(--wc-stone);
    transition: all var(--wc-duration) var(--wc-ease);
    cursor: pointer;
    padding: 6px 12px;
    border-radius: var(--wc-radius-sm);
    position: relative;
    white-space: nowrap;
}

.nav__link:hover {
    color: var(--wc-ember);
}

/* Active page indicator — green underline */
.nav__link--active {
    color: var(--wc-ink);
}

.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 8px;
    right: 8px;
    height: 3px;
    background: var(--wc-ember);
    border-radius: 1.5px;
}

.nav__link--active:hover {
    color: var(--wc-ink);
}

.nav__cta {
    background: var(--wc-ink);
    color: var(--wc-canvas);
    padding: 10px 20px;
    border-radius: var(--wc-radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--wc-duration);
    border: none;
    font-family: var(--wc-font-primary);
}

.nav__cta:hover {
    background: var(--wc-signal);
    transform: translateY(-1px);
}

/* Hamburger menu toggle */
.nav__hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    z-index: 110;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--wc-ink);
    border-radius: 2px;
    transition: all 0.3s var(--wc-ease);
}

.nav__hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu — slide-in panel from right */
.nav__mobile {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--wc-white);
    box-shadow: -8px 0 40px rgba(28, 25, 23, 0.12);
    z-index: 105;
    padding: 96px 32px 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s var(--wc-ease), visibility 0.35s var(--wc-ease);
}

.nav__mobile.active {
    transform: translateX(0);
    visibility: visible;
}

/* Backdrop overlay */
.nav__mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 23, 0.3);
    z-index: 104;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--wc-ease), visibility 0.35s var(--wc-ease);
}

.nav__mobile-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Close button */
.nav__mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--wc-stone);
    transition: color var(--wc-duration);
    border-radius: var(--wc-radius-sm);
}

.nav__mobile-close:hover {
    color: var(--wc-ink);
    background: var(--wc-canvas-alt);
}

.nav__mobile-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.nav__mobile a,
.nav__mobile button:not(.nav__mobile-close) {
    font-size: 1.0625rem;
    padding: 12px 16px;
    color: var(--wc-ink);
    font-family: var(--wc-font-primary);
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--wc-duration);
    border-radius: var(--wc-radius-sm);
    width: 100%;
    text-align: left;
}

.nav__mobile a:hover,
.nav__mobile button:not(.nav__mobile-close):hover {
    color: var(--wc-ember);
    background: var(--wc-canvas-alt);
}

.nav__mobile-link--active {
    color: var(--wc-ember);
    position: relative;
    font-weight: 500;
}

.nav__mobile .nav__cta {
    margin-top: 16px;
    background: var(--wc-ink);
    color: var(--wc-canvas);
    border-radius: var(--wc-radius-sm);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    padding: 14px 24px;
}

.nav__mobile .nav__cta:hover {
    background: var(--wc-signal);
    color: var(--wc-canvas);
}

/* =======================================================================
   HERO — Cinematic split layout
   ======================================================================= */
.hero {
    height: calc(100vh - 160px);
    max-height: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 64px 56px 48px;
    position: relative;
    z-index: 2;
}

.hero__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wc-ember);
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero__title strong {
    font-weight: 600;
}

.hero__subtitle {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: var(--wc-stone);
    margin-bottom: 40px;
    max-width: 460px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Verlengde underline in hero — loopt door tot aan de visual */
.hero__actions .wc-btn--ghost {
    overflow: visible;
}

.hero__actions .wc-btn--ghost::after {
    width: 0;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__actions .wc-btn--ghost:hover::after {
    width: calc(100% + 20vw);
}

.hero__visual {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    filter: brightness(0.75) saturate(0.7);
}

/* Contact hero: gespiegelde afbeelding, hand zit nu links — toon linkerzijde */
.contact-hero .hero__video {
    object-position: center center;
}

.hero__image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--wc-canvas) 0%, transparent 20%),
        linear-gradient(to top, rgba(28, 25, 23, 0.25) 0%, transparent 50%);
}

/* Floating stat card on hero image */
.hero__float-stat {
    position: absolute;
    bottom: 48px;
    left: 48px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: var(--wc-radius-lg);
    padding: 24px 32px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.hero__float-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--wc-ember);
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero__float-label {
    font-size: 0.8125rem;
    color: var(--wc-stone);
    margin-top: 4px;
}

/* =======================================================================
   BUTTONS — Light theme variants
   =======================================================================
   BUTTON SYSTEM OVERVIEW:
   -----------------------
   Public light pages (base_light.html):
     .wc-btn .wc-btn--primary   — Ink background, hover to Signal
     .wc-btn .wc-btn--secondary — Transparent with stone border
     .wc-btn .wc-btn--ghost     — Text-only with underline animation
     .wc-btn .wc-btn--white     — Canvas background, Signal text
     .wc-btn .wc-btn--block     — Full width, centered content

   Admin/dark pages (base.html, admin/base.html):
     .wc-btn-base .wc-btn-primary   — design-tokens.css (blue dark theme)
     .westcube-btn .westcube-btn-*   — tokens.css (pill-shaped dark theme)
   These systems are intentionally separate. Do NOT mix them.
   ======================================================================= */
.wc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--wc-font-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--wc-radius-sm);
    cursor: pointer;
    transition: all var(--wc-duration) var(--wc-ease);
    border: none;
    line-height: 1;
}

.wc-btn--primary {
    background: var(--wc-ink);
    color: var(--wc-canvas);
}

.wc-btn--primary:hover {
    background: var(--wc-signal);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.15);
}

.wc-btn--secondary {
    background: transparent;
    color: var(--wc-ink);
    border: 1px solid var(--wc-stone-border);
}

.wc-btn--secondary:hover {
    border-color: var(--wc-ink);
    transform: translateY(-2px);
}

.wc-btn--ghost {
    background: transparent;
    color: var(--wc-stone);
    padding: 14px 0;
    position: relative;
}

.wc-btn--ghost::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--wc-ember);
    transition: width var(--wc-duration);
}

.wc-btn--ghost:hover {
    color: var(--wc-ink);
}

.wc-btn--ghost:hover::after {
    width: 100%;
}

.wc-btn--block {
    width: 100%;
    justify-content: center;
}

.wc-btn--sm {
    padding: 8px 16px;
    font-size: 0.8125rem;
}

.wc-btn--white {
    background: var(--wc-canvas);
    color: var(--wc-signal);
}

.wc-btn--white:hover {
    background: var(--wc-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.wc-btn__arrow {
    transition: transform var(--wc-duration);
    font-size: 1.125rem;
}

.wc-btn:hover .wc-btn__arrow {
    transform: translateX(4px);
}

/* =======================================================================
   PROOF BAR — Social proof numbers
   ======================================================================= */
.proof {
    border-top: 1px solid var(--wc-stone-border);
    border-bottom: 1px solid var(--wc-stone-border);
    background: var(--wc-white);
}

.proof__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    padding: 28px 0;
    flex-wrap: wrap;
}

.proof__item {
    text-align: center;
}

.proof__number {
    font-size: 2rem;
    font-weight: 300;
    color: var(--wc-ember);
    letter-spacing: -0.02em;
}

.proof__label {
    font-size: 1rem;
    color: var(--wc-stone-light);
    margin-top: 2px;
}

.proof__divider {
    width: 1px;
    height: 40px;
    background: var(--wc-stone-border);
}

/* =======================================================================
   EDITORIAL — Big image + text sections
   ======================================================================= */
.editorial {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 600px;
    overflow: hidden;
}

.editorial--reversed {
    grid-template-columns: 1fr 1.1fr;
}

.editorial--reversed .editorial__image {
    order: 2;
}

.editorial--reversed .editorial__content {
    order: 1;
}

.editorial__image {
    position: relative;
    overflow: hidden;
}

.editorial__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--wc-ease);
}

.editorial__image:hover img {
    transform: scale(1.03);
}

.editorial__image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.4), transparent);
}

.editorial__image-quote {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    font-family: var(--wc-font-accent);
    font-style: italic;
    font-size: 1.375rem;
    color: white;
    line-height: 1.4;
}

.editorial__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
}

.editorial__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wc-ember);
    margin-bottom: 20px;
}

.editorial__content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.editorial__content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--wc-stone);
    margin-bottom: 16px;
}

.editorial__content p:last-of-type {
    margin-bottom: 32px;
}

/* =======================================================================
   MAGNITUDE — Visual proof cards
   ======================================================================= */
.magnitude {
    padding: 128px 0;
}

.magnitude__header {
    max-width: 640px;
    margin-bottom: 64px;
}

.magnitude__header .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wc-ember);
    margin-bottom: 16px;
}

.magnitude__header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 16px;
}

.magnitude__header p {
    color: var(--wc-stone);
    font-size: 1.0625rem;
}

.magnitude__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.magnitude__card {
    border-radius: var(--wc-radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform var(--wc-duration) var(--wc-ease);
    cursor: default;
}

.magnitude__card:hover {
    transform: translateY(-6px);
}

.magnitude__card-bg {
    position: absolute;
    inset: 0;
}

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

.magnitude__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(28, 25, 23, 0.88) 0%,
        rgba(28, 25, 23, 0.5) 40%,
        rgba(28, 25, 23, 0.15) 100%
    );
}

.magnitude__card-content {
    position: relative;
    z-index: 2;
    padding: 32px;
}

.magnitude__multiplier {
    font-size: 4rem;
    font-weight: 300;
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.magnitude__card-content h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    margin-bottom: 8px;
}

.magnitude__card-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}


/* =======================================================================
   APPROACH — Dark section with steps
   ======================================================================= */
.approach {
    background: linear-gradient(180deg, var(--wc-signal) 0%, #152A45 100%);
    color: var(--wc-canvas);
    padding: 128px 0;
}

.approach__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.approach__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.approach__top h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--wc-canvas);
}

.approach__top-image {
    border-radius: var(--wc-radius-xl);
    overflow: hidden;
    height: 380px;
}

.approach__top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.85) saturate(0.8);
}

.approach__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.approach__step {
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--wc-radius-lg);
    transition: all var(--wc-duration);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.approach__step:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.approach__step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--wc-ember);
    transition: height 0.4s var(--wc-ease);
}

.approach__step:hover::before {
    height: 100%;
}

.approach__number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--wc-ember);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 9999px;
    background: rgba(5, 150, 105, 0.15);
    border: 1px solid rgba(5, 150, 105, 0.3);
}

.approach__step h3 {
    color: var(--wc-canvas);
    margin-bottom: 12px;
    font-size: 1.375rem;
    font-weight: 500;
}

.approach__step p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* =======================================================================
   SERVICES — Service cards
   ======================================================================= */
.services {
    padding: 128px 0;
}

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

.services__header .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wc-ember);
    margin-bottom: 16px;
}

.services__header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 16px;
}

.services__header p {
    color: var(--wc-stone);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--wc-duration);
    box-shadow: 0 2px 12px rgba(28, 25, 23, 0.04);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 64px rgba(28, 25, 23, 0.1);
    border-color: var(--wc-stone-subtle);
}

.service-card--featured {
    border: 2px solid var(--wc-ember);
    background: linear-gradient(180deg, rgba(5, 150, 105, 0.03) 0%, var(--wc-white) 100%);
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.1);
    position: relative;
    z-index: 1;
}

@media (min-width: 1025px) {
    .service-card--featured {
        margin-top: -12px;
        margin-bottom: -12px;
        padding-bottom: 12px;
    }
}

.service-card--featured:hover {
    box-shadow: 0 20px 64px rgba(5, 150, 105, 0.15);
    border-color: var(--wc-ember-light);
}

.service-card__image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(to top, var(--wc-white), transparent);
    pointer-events: none;
    z-index: 1;
}

.service-card--featured .service-card__image::after {
    background: linear-gradient(to top, rgba(250, 250, 249, 1), transparent);
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--wc-ease), filter 0.6s var(--wc-ease);
    filter: saturate(0.85) brightness(0.95) sepia(0.08);
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
    filter: saturate(0.9) brightness(1) sepia(0.05);
}

.service-card__body {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--wc-ember);
    color: var(--wc-white);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 100px;
    margin-bottom: 16px;
    width: fit-content;
}

.service-card__badge::before {
    content: '\2713';
    font-size: 0.75rem;
    font-weight: 700;
}

.service-card__price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--wc-ink);
    margin-bottom: 4px;
}

.service-card__price--free {
    color: var(--wc-ember);
}

.service-card__price--accent {
    color: var(--wc-ember);
}

.service-card__body h3 {
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.service-card__body p {
    color: var(--wc-stone);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card__features {
    list-style: none;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--wc-stone-border);
}

.service-card__features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--wc-ink-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card__features li::before {
    content: '\2713';
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--wc-ember);
    flex-shrink: 0;
}

/* =======================================================================
   VISUAL BREAK — Full bleed testimonial / image strip
   ======================================================================= */
.visual-break {
    height: 400px;
    position: relative;
    overflow: hidden;
}

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

.visual-break__overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 95, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-break__text {
    text-align: center;
    color: white;
    max-width: 720px;
    padding: 0 24px;
}

.visual-break__quote {
    font-family: var(--wc-font-accent);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.35;
    margin-bottom: 24px;
}

.visual-break__author {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.visual-break__author strong {
    color: white;
    font-weight: 500;
}

/* =======================================================================
   KENNISBANK — Article cards
   ======================================================================= */
.kennisbank {
    padding: 128px 0;
    background: var(--wc-canvas-alt);
}

.kennisbank__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.kennisbank__header .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wc-ember);
    margin-bottom: 12px;
}

.kennisbank__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--wc-white);
    border-radius: var(--wc-radius-xl);
    overflow: hidden;
    border: 1px solid var(--wc-stone-border);
    transition: all var(--wc-duration);
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 64px rgba(28, 25, 23, 0.08);
    border-color: var(--wc-stone-subtle);
}

.article-card__image {
    height: 220px;
    overflow: hidden;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) brightness(0.95) sepia(0.08);
    transition: transform 0.6s var(--wc-ease), filter 0.6s var(--wc-ease);
}

.article-card:hover .article-card__image img {
    transform: scale(1.05);
    filter: saturate(0.9) brightness(1) sepia(0.05);
}

.article-card__body {
    padding: 28px;
}

.article-card__tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--wc-ember);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.article-card__title {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
}

.article-card__excerpt {
    font-size: 0.875rem;
    color: var(--wc-stone);
    line-height: 1.6;
}

/* =======================================================================
   CTA — Call to action section
   ======================================================================= */
.cta {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
}

.evidence-panel .cta {
    margin-bottom: 64px;
}

.cta__bg {
    position: absolute;
    inset: 0;
}

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

.cta__bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 95, 0.88);
}

.cta__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
}

.cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--wc-canvas);
    margin-bottom: 12px;
}

.cta p {
    color: rgba(250, 250, 249, 0.7);
    font-size: 1.0625rem;
    max-width: 480px;
}

/* =======================================================================
   FOOTER — Dark footer
   ======================================================================= */
.footer {
    background: var(--wc-ink);
    color: var(--wc-stone-subtle);
    padding: 96px 0 48px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 80px;
}

.footer__brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wc-canvas);
    margin-bottom: 12px;
}

.footer__brand-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 280px;
    color: var(--wc-stone-light);
}

.footer__col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wc-stone-light);
    margin-bottom: 20px;
}

.footer__col ul {
    list-style: none;
}

.footer__col li {
    margin-bottom: 8px;
}

.footer__col a {
    font-size: 0.9375rem;
    color: var(--wc-stone-light);
    transition: color var(--wc-duration);
}

.footer__col a:hover {
    color: var(--wc-canvas);
}

.footer__bottom {
    padding-top: 32px;
    padding-right: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--wc-stone-light);
}

.footer__bottom a {
    color: var(--wc-stone-light);
    transition: color var(--wc-duration);
}

.footer__bottom a:hover {
    color: var(--wc-canvas);
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer__social a {
    color: var(--wc-muted);
    transition: color 0.2s ease;
}

.footer__social a:hover {
    color: var(--wc-canvas);
}

/* =======================================================================
   MIRA — Chat widget (floating)
   ======================================================================= */
.mira {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
}

.mira__trigger {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: none;
    border: 3px solid var(--wc-ember);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--wc-duration);
    box-shadow: 0 4px 24px rgba(5, 150, 105, 0.25);
    position: relative;
    padding: 0;
    overflow: hidden;
}

.mira__trigger:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.35);
    border-color: var(--wc-ember-light);
}

.mira__trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.mira__pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--wc-ember);
    animation: miraPulse 2.5s ease-in-out infinite;
}

.mira__tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-md);
    padding: 14px 20px;
    font-size: 0.875rem;
    color: var(--wc-ink);
    box-shadow: 0 4px 24px rgba(28, 25, 23, 0.08);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    max-width: 280px;
    white-space: normal;
    line-height: 1.5;
}

.mira__tooltip.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.4s var(--wc-ease), transform 0.4s var(--wc-ease);
}

.mira__tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: var(--wc-white);
    border-right: 1px solid var(--wc-stone-border);
    border-bottom: 1px solid var(--wc-stone-border);
    transform: rotate(45deg);
}

.mira__name {
    font-weight: 600;
    color: var(--wc-ember);
}

/* Mira expanded chat teaser */
.mira__teaser {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    width: 340px;
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-lg);
    box-shadow: 0 8px 40px rgba(28, 25, 23, 0.1);
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    pointer-events: none;
    overflow: hidden;
}

.mira__teaser.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    transition: opacity 0.4s var(--wc-ease), transform 0.4s var(--wc-ease);
}

.mira__teaser-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--wc-stone-border);
}

.mira__teaser-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--wc-ember);
}

.mira__teaser-info {
    flex: 1;
}

.mira__teaser-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--wc-ink);
}

.mira__teaser-status {
    font-size: 0.75rem;
    color: var(--wc-ember);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mira__teaser-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wc-ember);
    animation: miraDotPulse 1.5s ease-in-out infinite;
}

.mira__teaser-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: var(--wc-canvas-alt);
    cursor: pointer;
    font-size: 1rem;
    color: var(--wc-stone);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--wc-duration);
}

.mira__teaser-close:hover {
    background: var(--wc-stone-border);
}

.mira__teaser-body {
    padding: 16px 20px;
}

.mira__teaser-message {
    background: var(--wc-canvas-alt);
    border-radius: 12px 12px 12px 2px;
    padding: 12px 16px;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--wc-ink);
    margin-bottom: 12px;
}

.mira__teaser-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-md);
    cursor: pointer;
    transition: border-color var(--wc-duration);
}

.mira__teaser-input:hover {
    border-color: var(--wc-stone);
}

.mira__teaser-input span {
    color: var(--wc-stone-light);
    font-size: 0.875rem;
    flex: 1;
}

.mira__teaser-input svg {
    width: 18px;
    height: 18px;
    color: var(--wc-ember);
}

/* =======================================================================
   INNER PAGE HERO — Centered hero for subpages (About, etc.)
   ======================================================================= */
.page-hero {
    padding: 160px 0 96px;
    text-align: center;
    background: var(--wc-canvas);
}

.page-hero__content {
    max-width: 640px;
    margin: 0 auto;
}

.page-hero__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wc-ember);
    margin-bottom: 24px;
}

.page-hero__title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--wc-ink);
    margin-bottom: 24px;
}

.page-hero__title strong {
    font-weight: 600;
}

.page-hero__subtitle {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: var(--wc-stone);
    max-width: 520px;
    margin: 0 auto;
}

/* =======================================================================
   ABOUT PAGE — Team cards
   ======================================================================= */
.about-team {
    padding: 96px 0 128px;
    background: var(--wc-canvas);
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-team__card {
    padding: 40px 32px;
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-lg);
    transition: all var(--wc-duration) var(--wc-ease);
}

.about-team__card:hover {
    border-color: var(--wc-stone-light);
    box-shadow: 0 8px 40px rgba(28, 25, 23, 0.06);
    transform: translateY(-4px);
}

.about-team__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.06);
    color: var(--wc-ember);
    margin-bottom: 24px;
}

.about-team__card h3 {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--wc-ink);
    margin-bottom: 12px;
}

.about-team__card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--wc-stone);
}

/* ABOUT PAGE — Four-column approach steps variant */
.approach__steps--four {
    grid-template-columns: repeat(4, 1fr);
}

/* =======================================================================
   AI TRANSFORMATIE PAGE — Agent cards, Spotlight, Urgency
   ======================================================================= */

/* Agent cards grid */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.agent-card {
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-lg);
    padding: 32px 24px;
    transition: all 0.3s var(--wc-ease);
}

.agent-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(28, 25, 23, 0.08);
    border-color: var(--wc-stone-subtle);
}

.agent-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--wc-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--wc-white);
    background: var(--wc-signal); /* Default background */
}

.agent-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Agent card icon color variants */
.agent-card__icon--signal  { background: var(--wc-signal); }
.agent-card__icon--ember   { background: var(--wc-ember); }
.agent-card__icon--violet  { background: #7c3aed; }
.agent-card__icon--amber   { background: #ca8a04; }
.agent-card__icon--red     { background: #dc2626; }
.agent-card__icon--indigo  { background: #4f46e5; }
.agent-card__icon--orange  { background: #ea580c; }

.agent-card h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--wc-ink);
    margin-bottom: 8px;
}

.agent-card p {
    font-size: 0.875rem;
    color: var(--wc-stone);
    line-height: 1.6;
    margin-bottom: 12px;
}

.agent-card__tags {
    font-size: 0.75rem;
    color: var(--wc-ember);
    font-weight: 500;
}

.agents-cta {
    text-align: center;
}

.agents-cta p {
    color: var(--wc-stone);
    font-size: 1.0625rem;
    margin-bottom: 24px;
}

/* Spotlight card */
.spotlight {
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-xl);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.spotlight__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wc-ember);
    margin-bottom: 8px;
}

.spotlight h3 {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--wc-ink);
    margin-bottom: 16px;
}

.spotlight p {
    color: var(--wc-stone);
    line-height: 1.7;
    margin-bottom: 20px;
}

.spotlight__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.spotlight__feature svg {
    width: 20px;
    height: 20px;
    color: var(--wc-ember);
    flex-shrink: 0;
    margin-top: 2px;
}

.spotlight__feature strong {
    display: block;
    color: var(--wc-ink);
    font-weight: 500;
    font-size: 0.9375rem;
}

.spotlight__feature span {
    font-size: 0.8125rem;
    color: var(--wc-stone);
}

/* Spotlight example steps */
.spotlight__example {
    background: var(--wc-canvas-alt);
    border-radius: var(--wc-radius-lg);
    padding: 32px;
}

.spotlight__example h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--wc-ink);
    margin-bottom: 16px;
}

.spotlight__step {
    padding: 14px 16px;
    border-radius: var(--wc-radius-sm);
    margin-bottom: 12px;
    border-left: 3px solid;
}

.spotlight__step-label {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.spotlight__step-text {
    font-size: 0.8125rem;
    color: var(--wc-stone);
}

.spotlight__step--analysis {
    background: rgba(234, 88, 12, 0.04);
    border-color: #ea580c;
}
.spotlight__step--analysis .spotlight__step-label { color: #ea580c; }

.spotlight__step--adapt {
    background: rgba(30, 58, 95, 0.04);
    border-color: var(--wc-signal);
}
.spotlight__step--adapt .spotlight__step-label { color: var(--wc-signal); }

.spotlight__step--result {
    background: rgba(5, 150, 105, 0.04);
    border-color: var(--wc-ember);
}
.spotlight__step--result .spotlight__step-label { color: var(--wc-ember); }

/* Spotlight inline link — underline reveal on hover (mirrors wc-btn--ghost) */
.spotlight a {
    color: var(--wc-ember);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.spotlight a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--wc-ember);
    transition: width var(--wc-duration);
}

.spotlight a:hover::after {
    width: 100%;
}

/* Why act now card */
.urgency-card {
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-lg);
    padding: 32px;
}

.urgency-card h3 {
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--wc-ink);
    margin-bottom: 20px;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9375rem;
    color: var(--wc-stone);
}

.urgency-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* =======================================================================
   CONTACT PAGE — Form and info cards
   ======================================================================= */

.contact-section {
    padding: 5rem 0;
    background: var(--wc-canvas);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Form card */
.contact-form-card {
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-lg);
    padding: 2.5rem;
}

.contact-form-card h2 {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--wc-ink);
    margin: 0 0 2rem;
}

/* Form elements */
.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--wc-stone);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

/* Override design-tokens dark theme — needs higher specificity than form input[type="text"] */
.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-sm);
    color: var(--wc-ink);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: var(--wc-stone-light);
}

.contact-form-card input[type="text"]:focus,
.contact-form-card input[type="email"]:focus,
.contact-form-card input[type="tel"]:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: var(--wc-signal);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.08);
}

.contact-form-card textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form-card select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2378716C' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-form-card input[type="checkbox"] {
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
}

/* Checkbox */
.form-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox-row input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
    accent-color: var(--wc-ember);
    flex-shrink: 0;
}

.form-checkbox-row label {
    font-size: 0.875rem;
    color: var(--wc-stone);
    line-height: 1.5;
}

.form-checkbox-row label a {
    color: var(--wc-ember);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-checkbox-row label a:hover {
    color: var(--wc-ink);
}

/* Submit button feedback */
.contact-submit--success {
    background: var(--wc-ember);
    border-color: var(--wc-ember);
    color: var(--wc-white);
}

/* Info cards */
.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-lg);
    padding: 2rem;
}

.contact-info-card h3 {
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--wc-ink);
    margin: 0 0 1.25rem;
}

/* Contact details 2-column grid */
.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 640px) {
    .contact-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0 2rem;
    }
}

/* Contact detail rows */
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail__icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--wc-ember);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-detail__label {
    font-weight: 500;
    color: var(--wc-ink);
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.contact-detail__value {
    color: var(--wc-stone);
    font-size: 0.875rem;
    line-height: 1.6;
}

.contact-detail__note {
    color: var(--wc-stone-light);
    font-size: 0.8125rem;
    margin-top: 0.125rem;
}

/* Mira list */
.mira-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.mira-list li {
    color: var(--wc-stone);
    font-size: 0.9375rem;
    padding: 0.25rem 0;
}

.mira-list li::before {
    content: "\2022";
    color: var(--wc-ember);
    font-weight: 700;
    margin-right: 0.5rem;
}

.mira-card p {
    color: var(--wc-stone);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
}

/* Response times */
.response-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--wc-stone-border);
}

.response-row:last-child {
    border-bottom: none;
}

.response-row__label {
    color: var(--wc-stone);
    font-size: 0.9375rem;
}

.response-row__value {
    color: var(--wc-ink);
    font-weight: 500;
    font-size: 0.9375rem;
}

/* Status message */
.contact-status {
    padding: 0.875rem 1rem;
    border-radius: var(--wc-radius-sm);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: none;
}

.contact-status--success {
    display: block;
    background: rgba(5, 150, 105, 0.08);
    color: var(--wc-ember);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.contact-status--error {
    display: block;
    background: rgba(220, 38, 38, 0.06);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

/* =======================================================================
   ANIMATIONS
   ======================================================================= */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeIn 0.8s var(--wc-ease) forwards;
}

.fade-in--d1 {
    animation-delay: 0.15s;
}

.fade-in--d2 {
    animation-delay: 0.3s;
}

.fade-in--d3 {
    animation-delay: 0.45s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes miraPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.15);
    }
}

@keyframes miraDotPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* =======================================================================
   KENNISBANK PAGES — Article index, detail, search
   ======================================================================= */

/* Page header */
.kb-header {
    padding: 128px 0 64px;
    text-align: center;
    background: var(--wc-canvas);
}

.kb-header__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(5, 150, 101, 0.08);
    color: var(--wc-ember);
}

.kb-header__icon--search {
    background: rgba(5, 150, 101, 0.08);
    color: var(--wc-ember);
}

.kb-header__icon--tag {
    background: rgba(5, 150, 101, 0.08);
    color: var(--wc-ember);
}

.kb-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--wc-ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.kb-header__subtitle {
    font-size: 1.125rem;
    color: var(--wc-stone);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.kb-header__subtitle strong {
    color: var(--wc-ink);
    font-weight: 500;
}

/* Main content layout */
.kb-layout {
    padding: 64px 0 128px;
    background: var(--wc-canvas-alt);
}

.kb-layout__grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

/* Article cards grid */
.kb-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Sidebar — sticky: scrolls with content, sticks at top */
.kb-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 88px; /* nav height (72px) + 16px breathing room */
    max-height: calc(100vh - 104px);
    overflow-y: auto;
}

.kb-sidebar__panel {
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-lg);
    padding: 24px;
}

.kb-sidebar__title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--wc-ink);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kb-sidebar__title svg {
    width: 18px;
    height: 18px;
    color: var(--wc-stone);
}

/* Search form */
.kb-search-form {
    display: flex;
}

.kb-search-input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--wc-stone-border);
    border-right: none;
    border-radius: var(--wc-radius-sm) 0 0 var(--wc-radius-sm);
    font-size: 0.875rem;
    color: var(--wc-ink);
    background: var(--wc-canvas);
    font-family: var(--wc-font-primary);
    outline: none;
    transition: border-color var(--wc-duration);
}

.kb-search-input::placeholder {
    color: var(--wc-stone-light);
}

.kb-search-input:focus {
    border-color: var(--wc-signal);
}

.kb-search-btn {
    padding: 10px 16px;
    background: var(--wc-ink);
    color: var(--wc-canvas);
    border: none;
    border-radius: 0 var(--wc-radius-sm) var(--wc-radius-sm) 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--wc-duration);
}

.kb-search-btn:hover {
    background: var(--wc-ember);
}

.kb-search-btn svg {
    width: 16px;
    height: 16px;
}

/* Tag chips */
.kb-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--wc-ember);
    background: rgba(5, 150, 101, 0.08);
    transition: all var(--wc-duration);
    cursor: pointer;
}

.kb-tag:hover {
    background: var(--wc-ember);
    color: var(--wc-canvas);
}

.kb-tag--active {
    background: var(--wc-ember);
    color: var(--wc-canvas);
}

.kb-tag__count {
    margin-left: 6px;
    font-size: 0.6875rem;
    opacity: 0.7;
}

/* Stats in sidebar */
.kb-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: center;
}

.kb-stats__number {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--wc-ink);
    line-height: 1;
    margin-bottom: 4px;
}

.kb-stats__label {
    font-size: 0.75rem;
    color: var(--wc-stone-light);
}

/* Pagination */
.kb-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.kb-pagination__link {
    padding: 8px 14px;
    border-radius: var(--wc-radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--wc-stone);
    transition: all var(--wc-duration);
    display: flex;
    align-items: center;
    justify-content: center;
}

.kb-pagination__link:hover {
    background: var(--wc-white);
    color: var(--wc-ink);
}

.kb-pagination__link--active {
    background: var(--wc-ink);
    color: var(--wc-canvas);
}

.kb-pagination__link--active:hover {
    background: var(--wc-ember);
    color: var(--wc-canvas);
}

.kb-pagination__ellipsis {
    padding: 8px 6px;
    color: var(--wc-stone-light);
    font-size: 0.875rem;
}

/* Empty state */
.kb-empty {
    text-align: center;
    padding: 80px 24px;
    background: var(--wc-white);
    border-radius: var(--wc-radius-xl);
    border: 1px solid var(--wc-stone-border);
}

.kb-empty__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(5, 150, 101, 0.08);
    color: var(--wc-ember);
}

.kb-empty__title {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--wc-ink);
    margin-bottom: 12px;
}

.kb-empty__text {
    font-size: 1rem;
    color: var(--wc-stone);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.kb-empty__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Article detail page ---- */

.kb-detail-header {
    padding: 128px 0 48px;
    background: var(--wc-canvas);
}

.kb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--wc-stone);
    margin-bottom: 32px;
}

.kb-breadcrumb a {
    color: var(--wc-stone);
    transition: color var(--wc-duration);
}

.kb-breadcrumb a:hover {
    color: var(--wc-ink);
}

.kb-breadcrumb svg {
    width: 14px;
    height: 14px;
    color: var(--wc-stone-light);
}

.kb-breadcrumb__current {
    color: var(--wc-ink);
    font-weight: 500;
}

.kb-detail__image {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto 40px;
    border-radius: var(--wc-radius-xl);
    overflow: hidden;
    aspect-ratio: 16 / 7;
}

.kb-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) brightness(0.95) sepia(0.08);
    transition: filter 0.6s var(--wc-ease);
}

.kb-detail__image:hover img {
    filter: saturate(0.9) brightness(1) sepia(0.05);
}

.kb-detail__image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--wc-canvas-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--wc-stone-light);
}

.kb-detail__image-label {
    font-size: 0.875rem;
}

.kb-detail__title {
    font-family: var(--wc-font-accent);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 400;
    color: var(--wc-ink);
    line-height: 1.2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 28px;
    letter-spacing: -0.01em;
}

.kb-detail__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    color: var(--wc-stone);
    font-size: 0.8125rem;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.kb-detail__meta-item + .kb-detail__meta-item::before {
    content: '\00B7';
    margin-right: 8px;
    color: var(--wc-stone-light);
    font-weight: 700;
}

.kb-detail__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.kb-detail__meta-item svg {
    width: 16px;
    height: 16px;
}

.kb-detail__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

/* Article body content */
.kb-article-body {
    padding: 64px 0 128px;
    background: var(--wc-canvas-alt);
}

.kb-article-body__grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}

.kb-article__content {
    min-width: 0;
}

/* Excerpt block — see upgraded version below in article-footer section */

/* Main article prose */
.kb-prose {
    background: var(--wc-white);
    border-radius: var(--wc-radius-lg);
    padding: 56px 64px;
    border: 1px solid var(--wc-stone-border);
    max-width: 760px;
}

.kb-prose h1, .kb-prose h2, .kb-prose h3,
.kb-prose h4, .kb-prose h5, .kb-prose h6 {
    color: var(--wc-ink);
    font-family: var(--wc-font-accent);
    font-weight: 400;
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.kb-prose h1:first-child, .kb-prose h2:first-child,
.kb-prose h3:first-child {
    margin-top: 0;
}

.kb-prose h2 {
    font-family: var(--wc-font-accent);
    font-size: 1.75rem;
    padding-top: 16px;
    border-top: 1px solid var(--wc-stone-border);
}

.kb-prose h2:first-child {
    border-top: none;
    padding-top: 0;
}

.kb-prose h1 { font-size: 2rem; font-family: var(--wc-font-accent); }
.kb-prose h3 { font-size: 1.375rem; font-weight: 500; margin-top: 2rem; margin-bottom: 0.75rem; }
.kb-prose h4 { font-size: 1.125rem; font-weight: 600; }

.kb-prose p {
    color: var(--wc-ink-light);
    line-height: 1.85;
    margin-bottom: 24px;
    font-size: 1.0625rem;
}

.kb-prose a {
    color: var(--wc-ember);
    text-decoration: underline;
    text-decoration-color: rgba(5, 150, 105, 0.3);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color var(--wc-duration), text-decoration-color var(--wc-duration);
}

.kb-prose a:hover {
    color: var(--wc-pulse);
    text-decoration-color: var(--wc-pulse);
}

.kb-prose ul, .kb-prose ol {
    color: var(--wc-ink-light);
    margin-bottom: 24px;
    padding-left: 28px;
    line-height: 1.85;
    font-size: 1.0625rem;
}

.kb-prose ul { list-style-type: disc; }
.kb-prose ol { list-style-type: decimal; }

.kb-prose li {
    margin-bottom: 10px;
    padding-left: 6px;
}

.kb-prose li::marker {
    color: var(--wc-ember);
    font-weight: 600;
}

.kb-prose blockquote {
    border-left: 3px solid var(--wc-ember);
    padding: 4px 0 4px 24px;
    margin: 40px 0;
    background: transparent;
    border-radius: 0;
    font-style: italic;
    position: relative;
}

.kb-prose blockquote p {
    font-family: var(--wc-font-accent);
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--wc-ink);
}

.kb-prose blockquote p:last-child {
    margin-bottom: 0;
}

.kb-prose pre {
    background: rgba(30, 58, 95, 0.04);
    color: var(--wc-ink);
    border-radius: var(--wc-radius-md);
    padding: 24px 28px;
    overflow-x: auto;
    margin: 32px 0;
    font-size: 0.8125rem;
    line-height: 1.7;
    font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
    border: 1px solid var(--wc-stone-border);
}

.kb-prose code:not(pre code) {
    background: rgba(5, 150, 105, 0.06);
    color: var(--wc-ember);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85em;
    font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
}

/* Horizontal rule — three centered dots */
.kb-prose hr {
    border: none;
    text-align: center;
    margin: 48px 0;
    line-height: 1;
}

.kb-prose hr::after {
    content: '\00B7\2003\00B7\2003\00B7';
    color: var(--wc-stone-light);
    font-size: 1.5rem;
    letter-spacing: 0.5em;
}

/* =======================================================================
   KB-BOX — Info, Quote, Highlight boxes (generated by markdown_utils.py)
   ======================================================================= */
.kb-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: var(--wc-radius-md);
    border: 1px solid var(--wc-stone-border);
}

.kb-box__icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.kb-box__icon svg {
    width: 22px;
    height: 22px;
}

.kb-box__content {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--wc-ink-light);
}

.kb-box__content strong {
    color: var(--wc-ink);
    font-weight: 600;
}

.kb-box__content p {
    margin-bottom: 8px;
}

.kb-box__content p:last-child {
    margin-bottom: 0;
}

/* Info variant — ember green accent */
.kb-box--info {
    background: rgba(5, 150, 105, 0.05);
    border: none;
    border-left: 3px solid var(--wc-ember);
    padding: 24px 24px 24px 28px;
    border-radius: var(--wc-radius-lg);
    margin: 32px 0;
}

.kb-box--info .kb-box__icon {
    color: var(--wc-ember);
}

/* Quote variant — pull-quote style */
.kb-box--quote {
    flex-direction: column;
    gap: 0;
    border: none;
    border-left: 4px solid var(--wc-ember);
    background: transparent;
    border-radius: 0;
    font-style: italic;
    padding: 24px 0 24px 32px;
    margin: 40px 0;
}

.kb-box--quote .kb-box__content {
    font-family: var(--wc-font-accent);
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--wc-ink);
}

.kb-box__cite {
    margin-top: 16px;
    font-size: 0.875rem;
    font-style: normal;
    color: var(--wc-stone);
    letter-spacing: 0.01em;
}

/* Highlight variant — warm amber accent */
.kb-box--highlight {
    background: rgba(245, 158, 11, 0.08);
    border: none;
    border-left: 3px solid #F59E0B;
    padding: 24px 24px 24px 28px;
    border-radius: var(--wc-radius-lg);
    margin: 32px 0;
}

.kb-box--highlight .kb-box__icon {
    color: #F59E0B;
}

.kb-box--highlight .kb-box__content {
    font-weight: 500;
}

/* CTA inline (within article content) */
.kb-cta-inline {
    margin: 48px 0;
    text-align: center;
}

/* =======================================================================
   KB-COLUMNS — Two-column layout (generated by markdown_utils.py)
   ======================================================================= */
.kb-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 32px 0;
    position: relative;
}

.kb-columns__col {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--wc-ink-light);
}

.kb-columns__col p {
    margin-bottom: 12px;
}

.kb-columns__col p:last-child {
    margin-bottom: 0;
}

/* Subtle vertical divider between columns */
.kb-columns__col + .kb-columns__col {
    position: relative;
}

.kb-columns__col + .kb-columns__col::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: var(--wc-stone-border);
}

/* =======================================================================
   KB-FIGURE — Image with caption (generated by markdown_utils.py)
   ======================================================================= */
.kb-figure {
    margin: 40px 0;
}

.kb-figure img {
    width: 100%;
    height: auto;
    border-radius: var(--wc-radius-lg);
    filter: saturate(0.85) brightness(0.95) sepia(0.08);
    transition: filter 0.4s var(--wc-ease);
    box-shadow: 0 4px 24px rgba(28, 25, 23, 0.08);
}

.kb-figure img:hover {
    filter: saturate(0.9) brightness(1) sepia(0.05);
}

.kb-figure__caption {
    font-size: 0.8125rem;
    color: var(--wc-stone);
    text-align: center;
    font-style: italic;
    line-height: 1.5;
    margin-top: 12px;
}

/* =======================================================================
   KB-ARTICLE-STATS — In-content statistics block (generated by markdown_utils.py)
   Scoped with .kb-prose to avoid conflict with sidebar .kb-stats
   ======================================================================= */
.kb-prose .kb-stats,
.kb-article-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(30, 58, 95, 0.04);
    border-radius: var(--wc-radius-xl);
    padding: 40px 32px;
    margin: 48px 0;
    flex-wrap: wrap;
    gap: 24px;
}

.kb-prose .kb-stats__item,
.kb-article-stats .kb-stats__item {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid var(--wc-stone-border);
    flex: 1;
    min-width: 100px;
}

.kb-prose .kb-stats__item:last-child,
.kb-article-stats .kb-stats__item:last-child {
    border-right: none;
}

.kb-prose .kb-stats__number,
.kb-article-stats .kb-stats__number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wc-ember);
    font-family: var(--wc-font-primary);
    line-height: 1.1;
    margin-bottom: 6px;
}

.kb-prose .kb-stats__label,
.kb-article-stats .kb-stats__label {
    font-size: 0.8125rem;
    color: var(--wc-stone);
    line-height: 1.4;
}

/* =======================================================================
   KB-SIDENOTE — Marginal note / aside (generated by markdown_utils.py)
   ======================================================================= */
.kb-sidenote {
    background: var(--wc-canvas);
    border-left: 1px solid var(--wc-stone-subtle);
    padding: 20px 24px;
    border-radius: var(--wc-radius-md);
    margin: 24px 0;
    position: relative;
}

.kb-sidenote::before {
    content: 'KANTTEKENING';
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--wc-stone-light);
    margin-bottom: 10px;
}

.kb-sidenote__content {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--wc-stone);
}

.kb-sidenote__content p {
    margin-bottom: 8px;
}

.kb-sidenote__content p:last-child {
    margin-bottom: 0;
}

.kb-prose img {
    border-radius: var(--wc-radius-lg);
    margin: 40px 0;
    width: 100%;
    height: auto;
    filter: saturate(0.85) brightness(0.95) sepia(0.08);
    transition: filter 0.4s var(--wc-ease);
    box-shadow: 0 4px 24px rgba(28, 25, 23, 0.08);
}

.kb-prose img:hover {
    filter: saturate(0.9) brightness(1) sepia(0.05);
}

.kb-prose figure {
    margin: 40px 0;
}

.kb-prose figure img {
    margin: 0 0 12px;
}

.kb-prose figcaption {
    font-size: 0.8125rem;
    color: var(--wc-stone);
    text-align: center;
    font-style: italic;
    line-height: 1.5;
}

.kb-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 0.9375rem;
}

.kb-prose th {
    background: rgba(5, 150, 105, 0.06);
    color: var(--wc-ink);
    font-weight: 600;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--wc-stone-border);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.kb-prose td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--wc-stone-border);
    color: var(--wc-ink-light);
}

.kb-prose tr:nth-child(even) td {
    background: rgba(5, 150, 105, 0.02);
}

/* Article action buttons */
.kb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}

.kb-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--wc-radius-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--wc-stone);
    border: 1px solid var(--wc-stone-border);
    background: var(--wc-white);
    cursor: pointer;
    font-family: var(--wc-font-primary);
    transition: all var(--wc-duration);
}

.kb-action-btn:hover {
    color: var(--wc-ink);
    border-color: var(--wc-stone);
}

.kb-action-btn svg {
    width: 14px;
    height: 14px;
}

/* Author box */
.kb-author {
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-lg);
    padding: 28px 32px;
    margin-top: 48px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.kb-author__label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wc-stone-light);
    margin-bottom: 4px;
}

.kb-author__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--wc-stone-border);
}

.kb-author__avatar-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(5, 150, 101, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wc-ember);
}

.kb-author__name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--wc-ink);
    margin-bottom: 4px;
}

.kb-author__bio {
    font-size: 0.875rem;
    color: var(--wc-stone);
    line-height: 1.6;
}

/* TOC sidebar */
.kb-toc__link {
    display: block;
    font-size: 0.8125rem;
    color: var(--wc-stone);
    padding: 6px 12px;
    border-radius: var(--wc-radius-sm);
    transition: all var(--wc-duration);
    border-left: 2px solid transparent;
    line-height: 1.5;
}

.kb-toc__link:hover {
    color: var(--wc-ink);
    background: var(--wc-canvas-alt);
}

.kb-toc__link--active {
    color: var(--wc-ember);
    border-left-color: var(--wc-ember);
    background: rgba(5, 150, 105, 0.04);
    font-weight: 500;
}

/* Progress meta + time */
.kb-progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--wc-stone);
    margin-bottom: 8px;
}

.kb-progress-time {
    font-size: 0.6875rem;
    color: var(--wc-stone-light);
    margin-top: 8px;
}

/* Progress bar */
.kb-progress__bar {
    width: 100%;
    height: 4px;
    background: var(--wc-stone-border);
    border-radius: 2px;
    overflow: hidden;
}

.kb-progress__fill {
    height: 100%;
    background: var(--wc-ember);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Fixed progress bar — sticks under nav */
.kb-progress-fixed {
    position: fixed;
    top: 72px; /* nav height */
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    z-index: 99;
    pointer-events: none;
}

.kb-progress-fixed__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--wc-ember), var(--wc-ember-light));
    width: 0%;
    transition: width 0.15s linear;
}

/* Info rows in sidebar */
.kb-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    padding: 6px 0;
}

.kb-info-row__label {
    color: var(--wc-stone);
}

.kb-info-row__value {
    color: var(--wc-ink);
    font-weight: 500;
}

/* Related article in sidebar */
.kb-related-item {
    display: flex;
    gap: 12px;
    padding: 8px;
    border-radius: var(--wc-radius-sm);
    transition: background var(--wc-duration);
}

.kb-related-item:hover {
    background: var(--wc-canvas-alt);
}

.kb-related-item__thumb {
    width: 56px;
    height: 42px;
    border-radius: var(--wc-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--wc-canvas-alt);
}

.kb-related-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kb-related-item__title {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--wc-ink);
    line-height: 1.4;
    margin-bottom: 4px;
}

.kb-related-item__meta {
    font-size: 0.6875rem;
    color: var(--wc-stone-light);
}

.kb-related-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kb-related-item__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wc-stone-light);
}

.kb-info-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Article footer — tags + CTA after article */
.kb-article-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--wc-stone-border);
}

.kb-article-footer__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.kb-article-footer__tags-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wc-stone-light);
    width: 100%;
    margin-bottom: 4px;
}

.kb-article-cta {
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-lg);
    padding: 40px;
    text-align: center;
    margin-top: 48px;
}

.kb-article-cta__title {
    font-family: var(--wc-font-accent);
    font-size: 1.5rem;
    color: var(--wc-ink);
    margin-bottom: 12px;
}

.kb-article-cta__text {
    font-size: 0.9375rem;
    color: var(--wc-stone);
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.kb-article-nav {
    margin-top: 32px;
}

/* Excerpt — elevated intro block */
.kb-excerpt {
    background: var(--wc-white);
    border-left: 3px solid var(--wc-ember);
    border-radius: 0 var(--wc-radius-md) var(--wc-radius-md) 0;
    padding: 28px 32px;
    margin-bottom: 40px;
    font-size: 1.0625rem;
    color: var(--wc-ink-light);
    line-height: 1.8;
    font-style: italic;
}

/* ---- Search page specifics ---- */

.kb-search-hero {
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-xl);
    padding: 40px;
    margin-bottom: 40px;
}

.kb-search-hero__label {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--wc-ink);
    margin-bottom: 16px;
}

.kb-search-hero__row {
    display: flex;
    gap: 12px;
}

.kb-search-hero__input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-sm);
    font-size: 1rem;
    color: var(--wc-ink);
    background: var(--wc-canvas);
    font-family: var(--wc-font-primary);
    outline: none;
    transition: border-color var(--wc-duration);
}

.kb-search-hero__input::placeholder {
    color: var(--wc-stone-light);
}

.kb-search-hero__input:focus {
    border-color: var(--wc-signal);
}

.kb-search-hero__hint {
    font-size: 0.8125rem;
    color: var(--wc-stone-light);
    margin-top: 8px;
}

.kb-results-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 0.875rem;
    color: var(--wc-stone);
}

/* Search tips grid */
.kb-search-tips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.kb-search-tip {
    text-align: center;
}

.kb-search-tip__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: rgba(5, 150, 101, 0.08);
    color: var(--wc-ember);
}

.kb-search-tip__title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--wc-ink);
    margin-bottom: 4px;
}

.kb-search-tip__text {
    font-size: 0.8125rem;
    color: var(--wc-stone);
}

/* Newsletter form */
.kb-newsletter-input {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-sm);
    font-size: 0.875rem;
    color: var(--wc-ink);
    background: var(--wc-canvas);
    font-family: var(--wc-font-primary);
    outline: none;
    margin-bottom: 10px;
    transition: border-color var(--wc-duration);
}

.kb-newsletter-input::placeholder {
    color: var(--wc-stone-light);
}

.kb-newsletter-input:focus {
    border-color: var(--wc-signal);
}

/* Public index hero (light) */
.kb-index-hero {
    padding: 160px 0 80px;
    background: var(--wc-canvas);
}

.kb-index-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.kb-index-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 300;
    color: var(--wc-ink);
    line-height: 1.1;
    margin-bottom: 12px;
}

.kb-index-hero__subtitle {
    font-size: 1.25rem;
    color: var(--wc-stone);
    margin-bottom: 24px;
    line-height: 1.6;
}

.kb-index-card {
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-xl);
    padding: 40px;
    text-align: center;
}

.kb-index-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(5, 150, 101, 0.08);
    color: var(--wc-ember);
}

.kb-index-card__title {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--wc-ink);
    margin-bottom: 8px;
}

.kb-index-card__text {
    font-size: 0.9375rem;
    color: var(--wc-stone);
    line-height: 1.6;
}

/* Feature cards */
.kb-features {
    padding: 96px 0;
    background: var(--wc-canvas-alt);
}

.kb-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kb-feature-card {
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-xl);
    padding: 32px;
    text-align: center;
    transition: all var(--wc-duration);
}

.kb-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(28, 25, 23, 0.06);
    border-color: transparent;
}

.kb-feature-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.kb-feature-card__icon--signal {
    background: rgba(5, 150, 101, 0.08);
    color: var(--wc-ember);
}

.kb-feature-card__icon--ember {
    background: rgba(5, 150, 101, 0.08);
    color: var(--wc-ember);
}

.kb-feature-card__icon--pulse {
    background: rgba(37, 99, 235, 0.06);
    color: var(--wc-pulse);
}

.kb-feature-card__title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--wc-ink);
    margin-bottom: 8px;
}

.kb-feature-card__text {
    font-size: 0.9375rem;
    color: var(--wc-stone);
    line-height: 1.6;
}

/* CTA section */
.kb-cta {
    padding: 96px 0;
    background: var(--wc-canvas);
}

.kb-cta__box {
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-xl);
    padding: 64px;
    text-align: center;
}

.kb-cta__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--wc-ink);
    margin-bottom: 12px;
}

.kb-cta__text {
    font-size: 1.0625rem;
    color: var(--wc-stone);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.kb-cta__search-form {
    max-width: 560px;
    margin: 0 auto 24px;
    display: flex;
}

.kb-cta__search-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--wc-stone-border);
    border-right: none;
    border-radius: var(--wc-radius-md) 0 0 var(--wc-radius-md);
    font-size: 1rem;
    color: var(--wc-ink);
    background: var(--wc-canvas);
    font-family: var(--wc-font-primary);
    outline: none;
    transition: border-color var(--wc-duration);
}

.kb-cta__search-input::placeholder {
    color: var(--wc-stone-light);
}

.kb-cta__search-input:focus {
    border-color: var(--wc-signal);
}

/* Notification for light theme */
.kb-notification {
    position: fixed;
    top: 88px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wc-white);
    border: 1px solid var(--wc-stone-border);
    border-radius: var(--wc-radius-md);
    padding: 12px 24px;
    box-shadow: 0 4px 24px rgba(28, 25, 23, 0.1);
    z-index: 300;
    font-size: 0.875rem;
    color: var(--wc-ink);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeIn 0.4s var(--wc-ease) forwards;
}

.kb-notification--success {
    border-left: 3px solid var(--wc-ember);
}

.kb-notification__icon {
    color: var(--wc-ember);
    font-size: 1.125rem;
}

/* =======================================================================
   CASES PAGE — Results grid within editorial content
   ======================================================================= */
.case-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--wc-stone-border);
}

.case-results__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.case-results__value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--wc-ember);
    letter-spacing: -0.01em;
}

.case-results__label {
    font-size: 0.8125rem;
    color: var(--wc-stone-light);
}

/* =======================================================================
   RESPONSIVE — Nav breakpoint (max 1140px)
   ======================================================================= */
@media (max-width: 1140px) {
    /* Nav switches to hamburger when items no longer fit */
    .nav__links {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }
}

/* =======================================================================
   RESPONSIVE — Tablet (max 1024px)
   ======================================================================= */
@media (max-width: 1024px) {

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero__content {
        padding: 64px 24px;
    }

    .hero__visual {
        height: 40vh;
    }

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

    .editorial--reversed .editorial__image {
        order: 0;
    }

    .editorial--reversed .editorial__content {
        order: 0;
    }

    .editorial__image {
        height: 400px;
    }

    .editorial__content {
        padding: 48px 24px;
    }

    .magnitude__grid,
    .approach__steps,
    .services__grid,
    .kennisbank__grid,
    .about-team__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .page-hero {
        padding: 120px 0 64px;
    }

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

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

    .cta__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Kennisbank responsive */
    .kb-layout__grid {
        grid-template-columns: 1fr;
    }

    .kb-articles {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .kb-article-body__grid {
        grid-template-columns: 1fr;
    }

    .kb-sidebar {
        position: static;
        max-height: none;
        overflow-y: visible;
    }

    .kb-index-hero__grid {
        grid-template-columns: 1fr;
    }

    .kb-features__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .kb-search-tips {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .kb-search-hero__row {
        flex-direction: column;
    }

    .kb-prose {
        padding: 32px 20px;
    }

    .kb-prose h2 {
        font-size: 1.5rem;
    }

    .kb-prose blockquote {
        padding: 4px 0 4px 20px;
        margin: 28px 0;
    }

    .kb-prose blockquote p {
        font-size: 1.125rem;
    }

    .kb-article-cta {
        padding: 32px 20px;
    }

    /* Custom element responsive — tablet/mobile */
    .kb-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .kb-columns__col + .kb-columns__col::before {
        display: none;
    }

    .kb-prose .kb-stats,
    .kb-article-stats {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 32px 20px;
        gap: 20px;
    }

    .kb-prose .kb-stats__item,
    .kb-article-stats .kb-stats__item {
        flex: 0 0 calc(50% - 12px);
        border-right: none;
        padding: 12px 0;
        border-bottom: 1px solid var(--wc-stone-border);
    }

    .kb-prose .kb-stats__item:nth-last-child(-n+2),
    .kb-article-stats .kb-stats__item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .kb-prose .kb-stats__number,
    .kb-article-stats .kb-stats__number {
        font-size: 1.75rem;
    }

    .kb-box--quote .kb-box__content {
        font-size: 1.125rem;
    }

    .case-results {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* AI Transformatie responsive */
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spotlight {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    /* Contact responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .form-row .form-group {
        margin-bottom: 0;
    }
}

/* =======================================================================
   RESPONSIVE — Mobile (max 768px)
   ======================================================================= */
@media (max-width: 768px) {
    .hero__content {
        padding: 48px 24px;
    }

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

    .proof__divider {
        display: none;
    }

    .proof__inner {
        gap: 32px;
    }

    /* Inner page hero mobile */
    .page-hero {
        padding: 96px 0 48px;
    }

    /* Kennisbank mobile */
    .kb-header {
        padding: 96px 0 48px;
    }

    .kb-detail-header {
        padding: 96px 0 32px;
    }

    .kb-detail__meta {
        gap: 12px;
    }

    .kb-cta__box {
        padding: 40px 24px;
    }

    /* AI Transformatie mobile */
    .agents-grid {
        grid-template-columns: 1fr;
    }

    .spotlight {
        padding: 24px;
    }
}

/* =======================================================================
   EVIDENCE PAGE — Split Hero, Tab Navigation, Proof Companies, Innovation
   =======================================================================
   New classes for the Evidence page redesign.
   All existing classes remain untouched.
   ======================================================================= */

/* --- PAGE HERO SPLIT VARIANT (edge-to-edge image) --- */
.page-hero--split {
    padding: 0;
    text-align: left;
    overflow: hidden;
}

.page-hero--split__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.page-hero--split .page-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 64px 64px;
    padding-left: max(64px, calc((100vw - 1120px) / 2 + 24px));
    margin: 0;
    max-width: none;
}

.page-hero--split .page-hero__subtitle {
    margin: 0;
}

.page-hero__visual {
    position: relative;
    overflow: hidden;
}

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

/* --- EVIDENCE TAB NAVIGATION --- */
.evidence-tabs {
    padding: 32px 0;
    background: var(--wc-canvas);
}

.evidence-tabs__inner {
    display: flex;
    justify-content: center;
    gap: 8px;
    background: var(--wc-white);
    padding: 6px;
    border-radius: var(--wc-radius-xl);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--wc-stone-border);
    width: fit-content;
    margin: 0 auto;
}

.evidence-tabs__btn {
    padding: 12px 28px;
    font-family: var(--wc-font-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    border: none;
    border-radius: calc(var(--wc-radius-xl) - 4px);
    background: transparent;
    color: var(--wc-stone);
    cursor: pointer;
    transition: all var(--wc-duration) var(--wc-ease);
    white-space: nowrap;
    flex-shrink: 0;
}

.evidence-tabs__btn:hover {
    background: var(--wc-canvas-alt);
    color: var(--wc-ink);
}

.evidence-tabs__btn--active {
    background: var(--wc-signal);
    color: var(--wc-white);
}

.evidence-tabs__btn--active:hover {
    background: var(--wc-signal-light);
    color: var(--wc-white);
}

/* --- EVIDENCE PANELS (Tab content) --- */
.evidence-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.35s var(--wc-ease);
}

.evidence-panel--active {
    display: block;
    opacity: 1;
}

/* --- PROOF COMPANIES SECTION --- */
.proof-companies-intro {
    padding: 96px 0 48px;
    background: var(--wc-canvas);
}

.proof-companies-intro__content {
    max-width: 640px;
    text-align: center;
    margin: 0 auto;
}

.proof-companies-intro__content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--wc-ink);
    margin: 16px 0;
}

.proof-companies-intro__content p {
    font-size: 1.125rem;
    color: var(--wc-stone);
    line-height: 1.7;
}

.proof-companies-grid {
    padding: 0 0 96px;
    background: var(--wc-canvas);
}

.proof-companies-grid__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* --- PROOF COMPANY CARD --- */
.proof-company {
    background: var(--wc-white);
    border-radius: var(--wc-radius-lg);
    padding: 40px;
    border: 1px solid var(--wc-stone-border);
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    height: 100%;
    transition: transform var(--wc-duration) var(--wc-ease),
                box-shadow var(--wc-duration) var(--wc-ease);
}

.proof-company:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.proof-company--signal {
    border-left: 4px solid var(--wc-signal);
}

.proof-company--ember {
    border-left: 4px solid #F27926;
}

.proof-company__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.proof-company__logo {
    width: 160px;
    height: auto;
    max-height: 64px;
    object-fit: contain;
}

.proof-company__title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--wc-signal);
    line-height: 1.2;
}

.proof-company__title--snap {
    color: #1D6BAB;
}

.proof-company__title--sale {
    color: #F27926;
}

.proof-company__tagline {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--wc-stone);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.proof-company__description {
    font-size: 1rem;
    color: var(--wc-stone);
    line-height: 1.7;
    margin-bottom: 24px;
}

.proof-company .case-results {
    margin-bottom: 24px;
}

.proof-company__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--wc-stone-border);
}

.proof-company__live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--wc-stone);
}

.proof-company__live a {
    color: var(--wc-signal);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.proof-company__live a:hover {
    color: var(--wc-signal-light);
}

.proof-company__live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wc-ember);
    display: inline-block;
    animation: evidence-pulse 2s ease-in-out infinite;
}

@keyframes evidence-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* --- INNOVATION LAB SECTION --- */
.innovation-intro {
    padding: 96px 0 48px;
    background: var(--wc-canvas);
}

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

.innovation-intro__content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--wc-ink);
    margin: 16px 0;
}

.innovation-intro__content p {
    font-size: 1.125rem;
    color: var(--wc-stone);
    line-height: 1.7;
}

.innovation-grid {
    padding: 0 0 96px;
    background: var(--wc-canvas);
}

.innovation-grid__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* --- INNOVATION PROJECT CARD --- */
.innovation-project {
    background: var(--wc-white);
    border-radius: var(--wc-radius-lg);
    border: 1px solid var(--wc-stone-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--wc-duration) var(--wc-ease),
                box-shadow var(--wc-duration) var(--wc-ease);
}

.innovation-project:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.innovation-project__accent {
    height: 6px;
    width: 100%;
}

.innovation-project__accent--teal {
    background: linear-gradient(to right, #14b8a6, #0f172a);
}

.innovation-project__accent--indigo {
    background: linear-gradient(to right, #6366F1, #312E81);
}

.innovation-project__body {
    padding: 36px 40px 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.innovation-project__title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--wc-ink);
    margin-bottom: 4px;
}

.innovation-project__tagline {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--wc-stone);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.innovation-project__description {
    font-size: 1rem;
    color: var(--wc-stone);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.innovation-project__features {
    font-size: 0.875rem;
    color: var(--wc-stone-light);
    margin-bottom: 24px;
}

.innovation-project__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.innovation-project__status {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--wc-radius-xl);
    color: var(--wc-white);
}

.innovation-project__status--teal {
    background: #14b8a6;
}

.innovation-project__status--indigo {
    background: #6366F1;
}

.innovation-project__accent--amber {
    background: linear-gradient(to right, #f59e0b, #92400e);
}

.innovation-project__status--amber {
    background: #f59e0b;
    color: #451a03;
}

.innovation-project--coming-soon {
    opacity: 0.75;
}

.innovation-project__partnership {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--wc-radius-xl);
    background: var(--wc-ember);
    color: var(--wc-white);
}

/* --- EVIDENCE PAGE RESPONSIVE --- */
@media (max-width: 1024px) {
    .page-hero--split__inner {
        grid-template-columns: 1fr;
    }

    .page-hero--split .page-hero__content {
        padding: 120px 24px 40px;
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
    }

    .page-hero--split .page-hero__subtitle {
        margin: 0 auto;
    }

    .page-hero__visual {
        height: 50vw;
        min-height: 260px;
        max-height: 400px;
    }

    .proof-companies-grid__inner,
    .innovation-grid__inner {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-hero--split .page-hero__content {
        padding: 96px 20px 32px;
    }

    .page-hero__visual {
        height: 56vw;
        min-height: 220px;
    }

    .evidence-tabs {
        padding: 24px 16px;
    }

    .evidence-tabs__inner {
        width: 100%;
        justify-content: stretch;
        gap: 4px;
        padding: 4px;
    }

    .evidence-tabs__btn {
        padding: 10px 14px;
        font-size: 0.8125rem;
        flex: 1;
        text-align: center;
    }

    .proof-company {
        padding: 28px 24px;
    }

    .innovation-project__body {
        padding: 28px 24px 32px;
    }

    .proof-company__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .proof-companies-intro,
    .innovation-intro {
        padding: 64px 0 32px;
    }

    .proof-companies-grid,
    .innovation-grid {
        padding: 0 0 64px;
    }
}

/* =======================================================================
   EVIDENCE DETAIL — Logo + actions section
   ======================================================================= */
.evidence-detail-logo {
    padding: 96px 0;
    background: var(--wc-canvas);
    text-align: center;
}

.evidence-detail-logo .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.evidence-detail-logo__img {
    max-width: 320px;
    height: auto;
}

.evidence-detail-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 600px) {
    .evidence-detail-logo {
        padding: 64px 0;
    }

    .evidence-detail-actions {
        flex-direction: column;
        gap: 16px;
    }
}

/* =======================================================================
   PASSIE MODEL — Management Framework Diagram
   =======================================================================
   Premium SVG-based triangle model: Visie / Capability / Evidence / Passie
   Used in editorial split-page sections and standalone.
   ======================================================================= */

/* --- Wrapper & sizing --- */
.passie-model {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.passie-model--sm { max-width: 360px; }
.passie-model--md { max-width: 480px; }
.passie-model--lg { max-width: 620px; }

.passie-model__svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

/* --- Typography inside SVG --- */
.passie-model__node-title {
    font-family: var(--wc-font-primary);
    font-size: 13px;
    font-weight: 500;
    fill: var(--wc-ink, #1C1917);
    letter-spacing: 0.02em;
}

.passie-model__node-title--accent {
    font-family: var(--wc-font-accent);
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
    fill: var(--wc-ember, #059669);
}

.passie-model__node-subtitle {
    font-family: var(--wc-font-primary);
    font-size: 9px;
    font-weight: 300;
    fill: var(--wc-stone, #78716C);
    letter-spacing: 0.04em;
}

.passie-model__description {
    font-family: var(--wc-font-primary);
    font-size: 9.5px;
    font-weight: 400;
    fill: var(--wc-stone-light, #A8A29E);
    letter-spacing: 0.01em;
}

.passie-model__description--ember {
    fill: var(--wc-ember, #059669);
    opacity: 0.7;
    font-style: italic;
    font-family: var(--wc-font-accent);
    font-size: 9px;
}

.passie-model__edge-label {
    font-family: var(--wc-font-primary);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.03em;
    font-style: italic;
}

/* --- Hover animations (when --animated) --- */
.passie-model--animated .passie-model__node--vertex circle {
    transition: stroke-width var(--wc-duration, 0.3s) var(--wc-ease),
                stroke var(--wc-duration, 0.3s) var(--wc-ease),
                fill var(--wc-duration, 0.3s) var(--wc-ease);
}

.passie-model--animated .passie-model__node--vertex:hover circle {
    stroke-width: 2.5;
    stroke: var(--wc-ember, #059669);
}

/* Light theme: vertex nodes get Passie's look on hover */
.passie-model--light.passie-model--animated .passie-model__node--vertex:hover circle {
    fill: var(--wc-white, #FFFFFF);
    stroke: var(--wc-ember, #059669);
}

/* Dark theme: vertex nodes glow like Passie on hover */
.passie-model--dark.passie-model--animated .passie-model__node--vertex:hover circle {
    fill: #0c2d4a;
    stroke: #10B981;
}

.passie-model--animated .passie-model__node--center circle {
    transition: stroke-width var(--wc-duration, 0.3s) var(--wc-ease),
                filter var(--wc-duration, 0.3s) var(--wc-ease);
}

.passie-model--animated .passie-model__node--center:hover circle {
    stroke-width: 2.5;
}

.passie-model--animated .passie-model__edge {
    transition: stroke var(--wc-duration, 0.3s) var(--wc-ease);
}

.passie-model--animated .passie-model__spoke {
    transition: opacity var(--wc-duration, 0.3s) var(--wc-ease);
}

.passie-model--animated:hover .passie-model__spoke {
    opacity: 0.65;
}

.passie-model--animated .passie-model__fill {
    transition: fill-opacity var(--wc-duration, 0.3s) var(--wc-ease);
}

.passie-model--animated:hover .passie-model__fill {
    fill-opacity: 0.05;
}

/* --- Editorial placement --- */
.passie-model-editorial__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wc-canvas-alt, #F5F5F4);
    padding: 48px 24px;
    overflow: visible;
}

/* Constrain the model within editorial layout */
.passie-model-editorial__visual .passie-model {
    max-width: 100%;
}

/* Allow the editorial section to grow when containing the passie model */
.editorial:has(.passie-model-editorial__visual) {
    overflow: visible;
    min-height: auto;
}

.editorial:has(.passie-model-editorial__visual) .editorial__content {
    padding: 60px 48px;
}

/* Mobile: editorial with model stacks vertically */
@media (max-width: 768px) {
    .passie-model--sm { max-width: 280px; }
    .passie-model--md { max-width: 340px; }
    .passie-model--lg { max-width: 400px; }

    .passie-model-editorial__visual {
        padding: 40px 24px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .passie-model--lg { max-width: 300px; }

    .passie-model__description {
        font-size: 8px;
    }

    .passie-model__edge-label {
        font-size: 9px;
    }
}

/* Print-friendly: no animations, full opacity */
@media print {
    .passie-model--animated .passie-model__spoke {
        opacity: 0.5;
    }
    .passie-model--animated .passie-model__fill {
        fill-opacity: 0.04;
    }
}

/* ── Passie Model: Dark Theme ── */
.passie-model--dark .passie-model__node-title {
    fill: #FFFFFF;
}

.passie-model--dark .passie-model__node-title--accent {
    fill: #10B981;
}

.passie-model--dark .passie-model__node-subtitle {
    fill: rgba(255, 255, 255, 0.6);
}

.passie-model--dark .passie-model__description {
    fill: rgba(255, 255, 255, 0.5);
}

.passie-model--dark .passie-model__description--ember {
    fill: #10B981;
}

/* Dark editorial wrapper — deep signal blue background */
.passie-model-editorial--dark .passie-model-editorial__visual {
    background: var(--wc-signal, #1E3A5F);
}

/* Tekst-kant behoudt licht thema */

/* ── Team Profiles Section ── */
.team-profiles {
    padding: 96px 0;
    background: var(--wc-canvas, #FAFAF9);
}

.team-profiles__header {
    text-align: center;
    margin-bottom: 64px;
}

.team-profiles__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wc-ember, #059669);
    margin-bottom: 16px;
}

.team-profiles__header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--wc-ink, #1C1917);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.team-profiles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
}

.team-profiles__person {
    text-align: center;
}

.team-profiles__photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 3px solid var(--wc-stone-border, #E7E5E4);
    transition: border-color var(--wc-duration, 0.3s) var(--wc-ease);
}

.team-profiles__photo:hover {
    border-color: var(--wc-ember, #059669);
}

.team-profiles__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-profiles__photo:hover img {
    transform: scale(1.05);
}

.team-profiles__name {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--wc-ink, #1C1917);
    margin-bottom: 4px;
}

.team-profiles__role {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--wc-ember, #059669);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.team-profiles__bio {
    font-size: 1rem;
    color: var(--wc-stone, #78716C);
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto 12px;
}

.team-profiles__linkedin {
    display: inline-flex;
    color: var(--wc-stone-light, #A8A29E);
    transition: color var(--wc-duration, 0.3s) var(--wc-ease);
}

.team-profiles__linkedin:hover {
    color: #0A66C2;
}

/* Responsive: tablet */
@media (max-width: 768px) {
    .team-profiles__grid {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 400px;
    }

    .team-profiles {
        padding: 64px 0;
    }
}

/* =======================================================================
   FOOTNOTES
   ======================================================================= */
.footnotes {
    font-size: 0.8125rem;
    color: var(--color-text-muted, #6b7280);
    line-height: 1.6;
    padding-left: 1.25rem;
    margin: 0;
}

.footnotes li {
    margin-bottom: 0.25rem;
}

.footnotes a {
    color: var(--color-primary, #059669);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footnotes a:hover {
    color: var(--color-primary-dark, #047857);
}
