/* ============================================
   CSS Variables — ZumFlo Color System v4
   ============================================ */
:root {
    /* Brand */
    --brand-100: #F0FAF8;
    --brand-500: #4FD4BE;
    --brand-600: #0A8379;
    --brand-700: #08756C;
    --brand-900: #153D36;

    /* Neutral (teal-tinted, hue 173°) */
    --n-50:  #FBFDFC;
    --n-100: #F5F8F7;
    --n-150: #EFF3F2;
    --n-200: #E4EAE8;
    --n-250: #D5DDDA;
    --n-300: #CDD6D3;
    --n-400: #A3B0AC;
    --n-500: #8A9895;
    --n-600: #6B7B77;
    --n-700: #4A5955;
    --n-800: #2E3B38;
    --n-900: #1A2623;
    --n-950: #0F1714;

    /* Layout */
    --max-width: 880px;
    --max-width-wide: 1200px;
    --section-padding: 112px 48px;
    --section-padding-mobile: 64px 20px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--n-50);
    color: var(--n-700);
    font-size: 18px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   Typography
   ============================================ */
h1 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    color: var(--n-900);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

h2 {
    font-size: clamp(26px, 4.5vw, 40px);
    font-weight: 700;
    color: var(--n-900);
    line-height: 1.2;
    letter-spacing: -0.015em;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 253, 252, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--n-150);
    padding: 0 48px;
}

.nav-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand img {
    width: 40px;
    height: 40px;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--n-900);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.nav-brand-tagline {
    font-size: 11px;
    color: var(--n-500);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--n-600);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 8px 14px;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--n-900);
    background: var(--brand-100);
}

.nav-links .nav-sep {
    color: var(--n-400);
    font-size: 18px;
    user-select: none;
    line-height: 1;
}

.nav-links .lang {
    font-size: 14px;
    color: var(--n-500);
    margin-left: 12px;
    padding-left: 18px;
    border-left: 1px solid var(--n-250);
}

.nav-links .lang a {
    font-size: 14px;
    padding: 8px 10px;
}

.nav-cta {
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-600) !important;
}

.nav-cta:hover {
    background: var(--brand-100) !important;
}

/* ── Kennis dropdown ── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    cursor: pointer;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--n-200);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 6px 0;
    min-width: 260px;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 8px 16px !important;
    font-size: 14px !important;
    font-weight: 500;
    color: var(--n-600);
    text-decoration: none;
    border-radius: 0 !important;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    color: var(--n-900);
    background: var(--brand-50, var(--brand-100));
}

/* Hamburger button */
.nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--n-900);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile right group (lang + separator + hamburger) */
.nav-mobile-right {
    display: none;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}
.nav-mobile-right .lang {
    font-size: 14px;
    font-weight: 500;
    color: var(--n-500);
    text-decoration: none;
}
.nav-mobile-sep {
    width: 1px;
    height: 20px;
    background: var(--n-300);
}

/* Mobile dropdown menu */
.nav-mobile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    min-width: 200px;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 14px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.12),
        0 0 0 0.5px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-mobile-dropdown.open {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}
.nav-mobile-dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--n-900);
    text-decoration: none;
    transition: background 0.15s ease;
}
.nav-mobile-dropdown a:hover,
.nav-mobile-dropdown a:active {
    background: rgba(0, 0, 0, 0.04);
}
.nav-mobile-dropdown .nav-mobile-cta {
    color: var(--brand-600);
    font-weight: 600;
}

/* Mobile submenu */
.nav-mobile-submenu {
    display: flex;
    flex-direction: column;
}

.nav-mobile-submenu-toggle {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--n-900);
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background 0.15s ease;
}

.nav-mobile-submenu-toggle:hover,
.nav-mobile-submenu-toggle:active {
    background: rgba(0, 0, 0, 0.04);
}

.nav-mobile-submenu-toggle svg {
    transition: transform 0.2s ease;
}

.nav-mobile-submenu-toggle.open svg {
    transform: rotate(180deg);
}

.nav-mobile-submenu-items {
    display: none;
    flex-direction: column;
    padding-left: 16px;
}

.nav-mobile-submenu-items.open {
    display: flex;
}

.nav-mobile-submenu-items a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--n-600, #666);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-mobile-submenu-items a:hover,
.nav-mobile-submenu-items a:active {
    background: rgba(0, 0, 0, 0.04);
    color: var(--n-900);
}

@media (max-width: 640px) {
    .nav { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-brand-tagline { display: none; }
    .nav-mobile-right { display: flex; }
}
@media (min-width: 641px) {
    .nav-mobile-right { display: none; }
    .nav-hamburger { display: none; }
}

/* ============================================
   Section Utilities
   ============================================ */
.section {
    padding: var(--section-padding);
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-wide {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--n-500);
    margin-bottom: 20px;
}

.bg-light  { background: var(--n-50); }
.bg-alt    { background: var(--n-100); }
.bg-dark   { background: #000; color: #fff; }
.bg-cta    { background: var(--brand-100); }
.bg-footer { background: var(--n-950); }

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

@media (max-width: 640px) {
    .section { padding: var(--section-padding-mobile); }
}

/* ============================================
   Section 1: Hero
   ============================================ */
.hero {
    padding: 100px 48px 112px;
    text-align: center;
}

.hero-bars {
    width: 160px;
    height: auto;
    margin: 0 auto 36px;
    position: relative;
}

.hero-bars::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.hero-bars svg {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.hero h1 {
    max-width: 720px;
    margin: 0 auto 28px;
}

.hero-sub {
    font-size: clamp(17px, 2.8vw, 22px);
    color: var(--n-600);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    background: var(--brand-600);
    color: #fff;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--brand-700);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(10, 131, 121, 0.18);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--brand-600);
    border: 1.5px solid var(--brand-600);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.btn-secondary:hover {
    background: rgba(10, 131, 121, 0.06);
}

/* App Store Badge */
.appstore-badge {
    display: block;
    width: fit-content;
    margin: 0 auto;
    line-height: 0;
    cursor: default;
}
.appstore-badge img {
    height: 54px;
    width: auto;
}
.badge-subtitle {
    font-size: 0.8rem;
    color: var(--n-400);
    text-align: center;
    margin-top: 0.25rem;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}
.microcopy {
    font-size: 14px;
    color: var(--n-500);
    margin-top: 12px;
}

.hero-scroll {
    margin-top: 48px;
    font-size: 13px;
    color: var(--n-400);
}

@media (max-width: 640px) {
    .hero { padding: 72px 20px 56px; }
    .hero-bars { width: 120px; margin-bottom: 28px; }
}

/* ============================================
   Section 2: Problem
   ============================================ */
.problem-intro {
    font-size: clamp(18px, 2.8vw, 22px);
    font-weight: 600;
    color: var(--n-800);
    margin-bottom: 32px;
    line-height: 1.5;
}

.problem-card {
    padding: 22px 28px;
    background: var(--n-50);
    border-radius: 12px;
    border-left: 3px solid var(--n-300);
    margin-bottom: 16px;
    font-size: 17px;
    color: var(--n-800);
    line-height: 1.65;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.problem-card:hover {
    transform: scale(1.015) translateY(-1px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    border-left-color: var(--n-400);
}

/* Touch devices: brief highlight on tap */
.problem-card:active {
    transform: scale(0.995);
    transition-duration: 0.1s;
}

/* Transition card gets a stronger accent shift */
.transition-card {
    padding: 28px 32px;
    background: var(--n-50);
    border-radius: 12px;
    border-left: 4px solid var(--brand-600);
    margin-top: 40px;
    font-size: 22px;
    font-weight: 500;
    color: var(--n-700);
    font-style: italic;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transition-card:hover {
    transform: scale(1.01) translateY(-1px);
    box-shadow: 0 8px 28px rgba(10, 131, 121, 0.08);
}

.problem-block {
    margin-bottom: 40px;
}

.problem-block-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--n-400);
    margin-bottom: 16px;
}

/* ============================================
   Scroll Reveal Animation
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Staggered cards */
.problem-card.reveal { transition-delay: calc(var(--i, 0) * 0.08s); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .compound-step { opacity: 1; transform: none; }
    .problem-card,
    .transition-card,
    .step-card,
    .pos-card,
    .integration-card {
        transition: none;
    }
    .problem-card:hover,
    .transition-card:hover,
    .step-card:hover,
    .pos-card:hover,
    .integration-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* ============================================
   Screenshot Showcase (swipeable)
   ============================================ */
.screenshot-showcase {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 24px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    scrollbar-width: none;
}

.screenshot-showcase::-webkit-scrollbar {
    display: none;
}

.screenshot-slide {
    flex: 0 0 min(85%, 340px);
    scroll-snap-align: center;
}

.screenshot-slide .screenshot-placeholder {
    height: 280px;
    margin-top: 0;
}

.screenshot-slide-label {
    font-size: 12px;
    color: var(--n-500);
    text-align: center;
    margin-top: 10px;
}

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.showcase-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: var(--n-300);
    transition: background 0.3s, width 0.3s;
}

.showcase-dot.active {
    background: var(--brand-600);
    width: 18px;
}

/* On desktop: show all three side by side */
@media (min-width: 768px) {
    .screenshot-showcase {
        overflow-x: visible;
        scroll-snap-type: none;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .screenshot-slide {
        flex: 1;
    }
    .showcase-dots {
        display: none;
    }
}

/* ============================================
   Compound Timeline Animation
   ============================================ */
.compound-step {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.compound-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Section 3: Animation (static placeholder)
   ============================================ */
.animation-zone {
    padding: 80px 48px;
}

.animation-pre {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    max-width: 580px;
    margin: 0 auto 56px;
    text-align: center;
    line-height: 1.7;
}

.animation-placeholder {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.anim-input-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.anim-input-item {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.anim-input-dot {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: rgba(79, 212, 190, 0.15);
    margin-bottom: 5px;
    will-change: background-color;
}

.anim-input-label {
    font-size: 9px;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
}

.anim-arrow {
    font-size: 20px;
    color: rgba(255,255,255,0.45);
    opacity: 0.3;
    will-change: opacity;
}

.anim-bars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 14px;
    height: 160px;
}

.anim-bar {
    width: 40px;
    border-radius: 8px;
    will-change: transform;
}

.anim-bar-label {
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}

.anim-bar-accent { background: var(--brand-500); }
.anim-bar-muted  { background: rgba(79, 212, 190, 0.33); }
.anim-bar-accent + .anim-bar-label,
.anim-bar-col.accent .anim-bar-label { color: var(--brand-500); }
.anim-bar-col .anim-bar-label { color: rgba(255,255,255,0.25); }
.anim-bar-col.accent .anim-bar-label { color: var(--brand-500); }

.anim-bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.anim-output-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.anim-output-item {
    padding: 10px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--brand-900);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-500);
    will-change: opacity, background-color, border-color;
}

.animation-post {
    max-width: 480px;
    margin: 56px auto 0;
    text-align: center;
}

.animation-post p {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}

.animation-post strong {
    color: rgba(255,255,255,0.7);
}

/* ============================================
   Section 4: Outcomes
   ============================================ */
.outcome {
    margin-bottom: 64px;
}

.outcome:last-child {
    margin-bottom: 0;
}

.outcome h2 {
    margin-bottom: 20px;
}

.outcome p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.outcome-payoff {
    font-size: 17px;
    font-weight: 500;
    color: var(--n-800);
    font-style: italic;
    margin-top: 20px;
}

.screenshot-placeholder {
    width: 100%;
    height: 260px;
    background: var(--n-150);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--n-400);
    font-weight: 600;
}

.midpage-cta {
    text-align: center;
    padding: 48px 32px;
}

.midpage-cta a {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-600);
    text-decoration: none;
}

.midpage-cta a:hover {
    text-decoration: underline;
}

/* ============================================
   Section 5: How it works
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.step-card {
    background: var(--brand-600);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10, 131, 121, 0.25);
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.step-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.how-text {
    font-size: 17px;
    color: var(--n-600);
    line-height: 1.7;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 28px;
}

.compound-list {
    text-align: center;
    max-width: 540px;
    margin: 28px auto 0;
}

.compound-list p {
    font-size: 17px;
    color: var(--n-600);
    margin-bottom: 6px;
    line-height: 1.7;
}

.compound-list .compound-close {
    margin-top: 20px;
    font-weight: 600;
    color: var(--n-800);
}

@media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr; gap: 10px; }
}

/* ============================================
   Section 6: Host
   ============================================ */
.host-intro {
    font-size: 17px;
    color: var(--n-600);
    margin-bottom: 36px;
    line-height: 1.7;
}

.host-point {
    margin-bottom: 28px;
}

.host-point-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--n-900);
    margin-bottom: 6px;
}

.host-point p {
    font-size: 17px;
    color: var(--n-700);
    line-height: 1.7;
}

.host-payoff {
    margin-top: 40px;
    padding: 28px 32px;
    background: var(--brand-100);
    border-radius: 14px;
}

.host-payoff em {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-600);
    font-style: italic;
    display: block;
    margin-bottom: 12px;
    line-height: 1.4;
}

.host-payoff .host-micro {
    font-size: 15px;
    color: var(--n-600);
    font-style: italic;
}

/* ============================================
   Section 7: Trust
   ============================================ */
.privacy-block {
    text-align: center;
    margin-bottom: 56px;
}

.privacy-block h2 {
    margin-bottom: 16px;
}

.privacy-block p {
    font-size: 17px;
    color: var(--n-600);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.positioning h2 {
    text-align: center;
    margin-bottom: 12px;
}

.positioning-sub {
    text-align: center;
    font-size: 17px;
    color: var(--n-600);
    margin-bottom: 36px;
}

.pos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 44px;
}

.pos-card {
    padding: 22px;
    background: var(--n-50);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pos-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.pos-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--n-800);
    margin-bottom: 6px;
}

.pos-card p {
    font-size: 14px;
    color: var(--n-500);
    line-height: 1.6;
}

.languages {
    text-align: center;
    margin-top: 48px;
}

.languages-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--n-600);
    margin-bottom: 10px;
}

.languages-list {
    font-size: 14px;
    color: var(--n-500);
    line-height: 1.8;
}

@media (max-width: 480px) {
    .pos-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Section 8: Integrations
   ============================================ */
.integration-block {
    margin-bottom: 36px;
}

.integration-question {
    font-size: 17px;
    font-weight: 500;
    color: var(--n-800);
    margin-bottom: 10px;
}

.integration-answer {
    font-size: 17px;
    color: var(--n-600);
    line-height: 1.7;
}

.integration-cards {
    display: flex;
    gap: 14px;
    margin: 36px 0 28px;
}

.integration-card {
    flex: 1;
    padding: 24px 18px;
    background: var(--n-100);
    border-radius: 14px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.integration-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--n-900);
}

.integration-card-status {
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

.integration-card-status.live { color: var(--brand-600); }

.integration-footnote {
    font-size: 15px;
    color: var(--n-500);
    text-align: center;
    font-style: italic;
}

/* ============================================
   Section 9: CTA
   ============================================ */
.cta-section {
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 17px;
    color: var(--n-600);
    margin-bottom: 36px;
}

.cta-paths {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.cta-paths .microcopy {
    margin-top: -4px;
}

.cta-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: left;
}

.cta-tier {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px 32px;
    text-align: left;
    border: 2px solid var(--n-200);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.cta-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.cta-tier-pro {
    border-color: var(--brand-600);
}

.cta-tier-pro:hover {
    box-shadow: 0 12px 32px rgba(10, 131, 121, 0.18);
}

@media (prefers-reduced-motion: reduce) {
    .cta-tier {
        transition: none;
    }
    .cta-tier:hover {
        transform: none;
    }
}

.cta-tier-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: var(--brand-600);
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 1;
}

.cta-tier-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.cta-tier-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--n-900);
    letter-spacing: -0.01em;
}

.cta-tier-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--n-900);
    white-space: nowrap;
}

.cta-tier-period {
    font-size: 13px;
    font-weight: 500;
    color: var(--n-500);
}

.cta-tier-yearly {
    font-size: 12px;
    color: var(--n-500);
    margin-bottom: 18px;
}

.cta-tier-plus {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--n-500);
    margin-bottom: 12px;
}

.cta-tier-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-feature {
    font-size: 14px;
    color: var(--n-600);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cta-feature-icon {
    font-size: 15px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    filter: grayscale(1) opacity(0.5);
}

.cta-feature.pro .cta-feature-icon {
    filter: none;
}

.cta-tier-name .pro-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #78590A;
    background: linear-gradient(135deg, #F5D485, #D4A843);
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.cta-discount {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-600);
    background: rgba(10, 131, 121, 0.08);
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: 4px;
}

.cta-roi {
    font-size: 14px;
    color: var(--n-500);
    font-style: italic;
    margin-top: 20px;
}

.cta-host-micro {
    font-size: 14px;
    color: var(--n-500);
    font-style: italic;
    margin-top: 10px;
}

@media (max-width: 640px) {
    .cta-pricing {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .cta-tier {
        padding: 24px 20px;
    }
}

/* ============================================
   Sticky CTA (mobile)
   ============================================ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(251, 253, 252, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--n-200);
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom)) 20px;
    text-align: center;
}

/* iOS Safari: anchor to dynamic viewport bottom so the bar stays glued
   to the visible edge as the browser's bottom toolbar collapses/expands. */
@supports (top: 100dvh) {
    .sticky-cta {
        top: 100dvh;
        bottom: auto;
        transform: translateY(-100%);
        will-change: transform;
    }
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta a {
    display: block;
    width: fit-content;
    margin: 0 auto;
    line-height: 0;
}

.sticky-cta .appstore-badge img {
    height: 44px;
}

@media (min-width: 641px) {
    .sticky-cta { display: none !important; }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 40px 48px;
    text-align: center;
}

.footer-company {
    font-size: 13px;
    color: var(--n-500);
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
}

.footer-links a {
    font-size: 13px;
    color: var(--n-400);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--n-200);
}

.footer-disclaimer {
    font-size: 11px;
    color: var(--n-600);
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .footer { padding: 32px 20px; }
}

/* ============================================
   KENNISPAGINA COMPONENTEN — FASE 2
   Scenario-block, Host-block, Disclaimer, Stat-highlight
   ============================================ */

/* --- Scenario Block --- */
.scenario-block {
    background: var(--n-100);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 1.5rem 0;
    border-left: 3px solid var(--n-300);
}
.scenario-block .scenario-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--n-500);
    margin-bottom: 8px;
}

/* --- Host Block --- */
.host-block {
    background: var(--n-100);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 1.5rem 0;
    border-left: 3px solid var(--brand-500);
}
.host-block .host-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-600);
    margin-bottom: 8px;
}

/* --- Disclaimer Block --- */
.disclaimer {
    background: rgba(255, 107, 107, 0.04);
    border-left: 3px solid rgba(255, 107, 107, 0.3);
    padding: 14px 20px;
    border-radius: 0 10px 10px 0;
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--n-600);
    margin: 1.5rem 0;
}

/* --- Stat Highlight --- */
.stat-highlight {
    text-align: center;
    padding: 20px 0;
    margin: 1rem 0;
}
.stat-highlight .stat-number {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--brand-600);
    letter-spacing: -0.02em;
}
.stat-highlight .stat-label {
    font-size: 0.875rem;
    color: var(--n-500);
    margin-top: 4px;
}

/* ============================================
   KENNISPAGINA — ARTICLE LAYOUT
   Consolidated from inline <style> blocks
   Reference: page 1 (stoelhuur-wat-is-het)
   ============================================ */

/* --- Article layout --- */
.article-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Full-width article sections --- */
.article-section {
    padding: 64px 0;
}
.article-section:first-of-type {
    padding-top: 40px;
}

/* --- Article hero --- */
.article-hero {
    padding: 48px 0 56px;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--n-500);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.breadcrumbs a {
    color: var(--brand-600);
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.breadcrumbs .sep {
    color: var(--n-400);
    user-select: none;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--n-500);
    margin-bottom: 1.25rem;
}
.reading-time {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.reading-time svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.article-hero h1 {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    line-height: 1.15;
    color: var(--n-900);
    margin: 0 0 1.25rem;
    letter-spacing: -0.025em;
}
.lead {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--n-600);
    line-height: 1.8;
    max-width: 600px;
}

/* --- Article body typography --- */
.article-body {
    color: var(--n-600);
    font-size: 1.0625rem;
    line-height: 1.75;
}
.article-body h2 {
    font-size: clamp(1.35rem, 3vw, 1.625rem);
    color: var(--n-900);
    margin: 0 0 1.25rem;
    letter-spacing: -0.015em;
    line-height: 1.25;
    padding-left: 16px;
    border-left: 3px solid var(--brand-500);
}
.article-body h3 {
    font-size: 1.0625rem;
    color: var(--n-800);
    margin: 1.75rem 0 0.625rem;
    font-weight: 600;
    line-height: 1.4;
}
.article-body p {
    margin: 0 0 1.25rem;
}
.article-body a {
    color: var(--brand-600);
    text-decoration: underline;
    text-decoration-color: var(--brand-500);
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    transition: text-decoration-color 0.2s;
}
.article-body a:hover {
    text-decoration-color: var(--brand-600);
}
.article-body strong {
    color: var(--n-800);
    font-weight: 600;
}
.article-body hr {
    border: none;
    border-top: 1px solid var(--n-200);
    margin: 2rem 0;
}
.article-body ul {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
}
.article-body li {
    margin-bottom: 0.5rem;
}

/* --- Section label --- */
.article-section .section-label {
    margin-bottom: 24px;
}

/* --- Link to other page --- */
.link-page1 {
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 16px;
    color: var(--brand-600);
    text-decoration: none;
}

/* ============================================
   KENNISPAGINA — BEROEP CARDS (page 1)
   ============================================ */
.beroep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 1.5rem 0;
}
.beroep-card {
    background: var(--n-50);
    border: 1px solid var(--n-200);
    border-radius: 12px;
    padding: 20px 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bg-alt .beroep-card {
    background: #fff;
}
.beroep-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 38, 35, 0.06);
}
.beroep-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--n-900);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.beroep-card-emoji {
    font-size: 1.25rem;
    line-height: 1;
}
.beroep-card p {
    font-size: 0.9375rem;
    color: var(--n-600);
    line-height: 1.6;
    margin: 0;
}
.beroep-card .tarief {
    color: var(--brand-600);
    font-weight: 600;
}
.beroep-card .btw {
    font-size: 0.8125rem;
    color: var(--n-500);
    margin-top: 6px;
    display: block;
}

/* ============================================
   KENNISPAGINA — MODEL CARDS
   ============================================ */
.model-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin: 1.5rem 0;
}
.model-card {
    background: var(--n-50);
    border: 1px solid var(--n-200);
    border-radius: 12px;
    padding: 22px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.model-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 38, 35, 0.06);
}
.model-card-number {
    width: 28px;
    height: 28px;
    border-radius: 14px;
    background: var(--brand-600);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.model-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--n-900);
    margin-bottom: 8px;
}
.model-card p {
    font-size: 0.9375rem;
    color: var(--n-600);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   KENNISPAGINA — WATERFALL VISUALIZATION (page 1)
   ============================================ */
.waterfall-viz {
    margin: 2rem 0;
    padding: 32px 28px;
    background: var(--n-950);
    border-radius: 16px;
    overflow: hidden;
}
.waterfall-viz svg {
    width: 100%;
    height: auto;
    display: block;
}
.waterfall-label {
    font-size: 12px;
    fill: var(--n-400);
    font-family: "DM Sans", sans-serif;
}
.waterfall-amount {
    font-size: 14px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
}
.waterfall-amount-positive { fill: var(--brand-500); }
.waterfall-amount-negative { fill: #FF6B6B; }
.waterfall-amount-result { fill: #fff; font-size: 18px; }
.waterfall-bar-positive { fill: var(--brand-600); }
.waterfall-bar-negative { fill: rgba(255, 107, 107, 0.7); }
.waterfall-bar-result { fill: var(--brand-500); }
.waterfall-connector { stroke: var(--n-700); stroke-width: 1; stroke-dasharray: 3,3; }

/* ============================================
   KENNISPAGINA — WATERFALL SECTION (page 2 SVG)
   ============================================ */
.waterfall-section {
    background: var(--n-950);
    border-radius: 16px;
    padding: 40px 32px;
    margin: 32px 0;
    overflow: hidden;
}
.waterfall-section h3 {
    color: #fff;
    margin-top: 0;
}

/* ============================================
   KENNISPAGINA — INDICATOR GRID (page 5)
   ============================================ */
.indicator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.indicator-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.indicator-header {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 10px;
}
.indicator-col-risk .indicator-header {
    border-bottom: 2px solid rgba(255, 107, 107, 0.5);
}
.indicator-col-ok .indicator-header {
    border-bottom: 2px solid var(--brand-500);
}
.indicator-item {
    font-size: 0.875rem;
    color: var(--n-400);
    line-height: 1.5;
    padding: 6px 0 6px 16px;
    position: relative;
}
.indicator-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.indicator-col-risk .indicator-item::before {
    background: rgba(255, 107, 107, 0.5);
}
.indicator-col-ok .indicator-item::before {
    background: var(--brand-500);
}

/* ============================================
   KENNISPAGINA — STEP INDICATORS (page 2)
   ============================================ */
.step-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brand-600);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-right: 10px;
    flex-shrink: 0;
}
.step-heading {
    display: flex;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 16px;
}
.step-heading h3 {
    margin: 0;
}

/* ============================================
   KENNISPAGINA — TUSSENSTAND (page 2)
   ============================================ */
.tussenstand {
    background: var(--n-150);
    border-radius: 10px;
    padding: 14px 20px;
    margin: 20px 0 32px;
    font-size: 16px;
    color: var(--n-700);
    border-left: 3px solid var(--brand-500);
}
.tussenstand strong {
    color: var(--n-900);
    font-weight: 600;
}

/* ============================================
   KENNISPAGINA — PRODUCT CARDS (page 2)
   ============================================ */
.product-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
}
.product-card {
    background: var(--n-50);
    border: 1px solid var(--n-200);
    border-radius: 12px;
    padding: 20px;
}
.section-alt .product-card { background: #fff; }
.product-card-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-600);
    margin-bottom: 8px;
}
.product-card p {
    font-size: 16px;
    margin-bottom: 0;
}

/* ============================================
   KENNISPAGINA — FLOW BLOCKS (page 2)
   ============================================ */
.flow-block {
    border-radius: 12px;
    padding: 24px;
    margin: 16px 0;
}
.flow-out {
    background: #FEF3F2;
    border: 1px solid #FECDCA;
}
.flow-in {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
}
.flow-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.flow-out .flow-label { color: #B42318; }
.flow-in .flow-label { color: #047857; }
.flow-block p { font-size: 16px; margin-bottom: 8px; }
.flow-block p:last-child { margin-bottom: 0; }
.flow-block .calc-table {
    margin: 12px 0 0 0;
    width: 100%;
}

/* ============================================
   KENNISPAGINA — CALC TABLE (merged p1 + p2)
   ============================================ */
.calc-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0 1.5rem;
    font-size: 0.9375rem;
}
.calc-table th {
    padding: 0.625rem 0;
    font-weight: 600;
    color: var(--n-900);
    border-bottom: 2px solid var(--n-300);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: left;
}
.calc-table th:not(:first-child) {
    text-align: right;
}
.calc-table td {
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--n-150);
}
.calc-table td:first-child {
    color: var(--n-700);
}
.calc-table td:not(:first-child) {
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.calc-table tr:last-child td {
    border-bottom: 2px solid var(--brand-500);
    font-weight: 700;
    color: var(--n-900);
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}
/* Direction badges (page 1) */
.calc-table .direction {
    display: inline-block;
    font-size: 0.6875rem;
    padding: 2px 7px;
    border-radius: 4px;
    margin-left: 6px;
    font-weight: 600;
    vertical-align: middle;
    letter-spacing: 0.02em;
}
.direction-out {
    background: rgba(255, 107, 107, 0.1);
    color: #E53E3E;
}
.direction-in {
    background: rgba(79, 212, 190, 0.12);
    color: var(--brand-600);
}
/* Row variants (page 2) */
.calc-table tr.row-sub td {
    font-size: 15px;
    color: var(--n-500);
    padding-left: 32px;
}
.calc-table tr.row-highlight td {
    font-weight: 600;
    color: var(--n-900);
    background: var(--brand-100);
}
.flow-out .calc-table tr.row-highlight td {
    background: rgba(220, 38, 38, 0.04);
}
.flow-in .calc-table tr.row-highlight td {
    background: rgba(16, 185, 129, 0.05);
    border-bottom: none;
}
.calc-table tr.row-result td {
    font-weight: 700;
    font-size: 18px;
    color: var(--brand-600);
    border-top: 2px solid var(--brand-600);
    border-bottom: none;
}
.calc-table tr.row-fooi td {
    color: var(--n-500);
    font-style: italic;
    border-bottom: none;
}
.table-note {
    font-size: 14px;
    color: var(--n-500);
    margin-top: 16px;
    line-height: 1.6;
}

/* ============================================
   KENNISPAGINA — COMPARE TABLE (merged p2 + p3/p4)
   ============================================ */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}
.compare-table th {
    text-align: left;
    padding: 10px 14px;
    font-weight: 600;
    color: var(--n-900);
    border-bottom: 2px solid var(--n-300);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.compare-table th:first-child:empty {
    color: var(--n-500);
}
.compare-table th:last-child,
.compare-table td:last-child {
    text-align: right;
}
.compare-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--n-200);
    color: var(--n-600);
}
.compare-table td:first-child {
    color: var(--n-800);
    font-weight: 500;
}
.compare-table tr:last-child td {
    font-weight: 600;
    color: var(--brand-600);
    border-bottom: none;
}
/* Variants (page 3) */
.compare-table .check {
    color: var(--brand-500);
    font-weight: 600;
}
.compare-table .dash {
    color: var(--n-400);
}

/* ============================================
   KENNISPAGINA — SEASON TABLE (page 2)
   ============================================ */
.season-table {
    width: 100%;
    max-width: 480px;
    border-collapse: collapse;
    margin: 24px 0;
}
.season-table th {
    text-align: left;
    padding: 10px 16px;
    font-weight: 600;
    color: var(--n-900);
    border-bottom: 2px solid var(--n-300);
    font-size: 15px;
}
.season-table th:first-child {
    font-weight: 400;
    color: var(--n-500);
}
.season-table td {
    padding: 8px 16px;
    border-bottom: 1px solid var(--n-200);
    color: var(--n-700);
    font-variant-numeric: tabular-nums;
}
.season-table td:first-child {
    color: var(--n-500);
    font-size: 15px;
}
.season-good { color: var(--brand-600) !important; font-weight: 500; }
.season-bad { color: #B42318 !important; font-weight: 500; }

/* ============================================
   KENNISPAGINA — PROFESSION CARDS (page 2)
   ============================================ */
.prof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0;
}
.prof-card {
    background: #fff;
    border: 1px solid var(--n-200);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.prof-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 38, 35, 0.08);
}
.section-alt .prof-card { background: var(--n-50); }
.prof-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--n-900);
    margin-bottom: 8px;
}
.prof-detail {
    font-size: 14px;
    color: var(--n-500);
    line-height: 1.6;
}
.prof-detail .teal {
    color: var(--brand-600);
    font-weight: 600;
}

/* ============================================
   KENNISPAGINA — MISTAKE ITEMS (page 2)
   ============================================ */
.mistake-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--n-200);
}
.mistake-item:last-child { border-bottom: none; }
.mistake-title {
    font-weight: 600;
    color: var(--n-900);
    font-size: 17px;
    margin-bottom: 6px;
}
.mistake-item p {
    margin-bottom: 0;
    font-size: 16px;
}

/* ============================================
   KENNISPAGINA — CALLOUT
   ============================================ */
.callout {
    background: var(--brand-100);
    border-left: 3px solid var(--brand-500);
    padding: 16px 20px;
    margin: 1.5rem 0;
    border-radius: 0 10px 10px 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--n-700);
}

/* ============================================
   KENNISPAGINA — FAQ
   ============================================ */
.faq-list {
    margin-top: 1.5rem;
}
.faq-item {
    border-bottom: 1px solid var(--n-200);
}
.faq-item:first-of-type {
    border-top: 1px solid var(--n-200);
}
.faq-question {
    font-weight: 600;
    color: var(--n-800);
    font-size: 1rem;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 18px 0;
    user-select: none;
    /* Reset for <button> elements (page 2) */
    background: none;
    border: none;
    font-family: inherit;
    text-align: left;
    width: 100%;
}
.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--n-400);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}
.faq-answer {
    color: var(--n-600);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-bottom: 0;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 18px;
}
.faq-answer p {
    margin: 0;
}

/* ============================================
   KENNISPAGINA — CTA (dark banner)
   ============================================ */
.article-cta {
    text-align: center;
    padding: 72px 0;
}
.article-cta .article-inner {
    max-width: 600px;
}
.article-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0 0 0.75rem;
}
.article-cta .cta-headline {
    font-size: clamp(1.35rem, 3vw, 1.625rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.015em;
    line-height: 1.3;
}
.article-cta .zumflo-mention {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.article-cta .appstore-badge {
    display: inline-block;
    margin-top: 0.5rem;
}
.article-cta .appstore-badge img {
    height: 48px;
}

/* --- Series nav (inside dark CTA) --- */
.series-nav {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.7;
}
.series-nav a {
    color: var(--brand-500);
    text-decoration: none;
}
.series-nav a:hover {
    text-decoration: underline;
}
.series-nav .series-sep {
    margin: 0 0.35rem;
    color: rgba(255, 255, 255, 0.25);
}

/* --- Beroep nav (after series-nav, inside dark CTA) --- */
.beroep-nav {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.75rem;
    line-height: 1.7;
}
.beroep-nav a {
    color: var(--brand-500);
    text-decoration: none;
}
.beroep-nav a:hover {
    text-decoration: underline;
}

/* --- Copyright notice --- */
/* --- Beroep links (legacy, unused) --- */
.beroep-links {
    text-align: center;
    padding: 24px 0;
    font-size: 0.875rem;
    color: var(--n-500);
}
.beroep-links-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--n-400);
    margin-bottom: 6px;
}
.beroep-links-nav a {
    color: var(--brand-600);
    text-decoration: none;
}
.beroep-links-nav a:hover {
    text-decoration: underline;
}
.beroep-links-nav .sep {
    margin: 0 0.35rem;
    color: var(--n-400);
}

.article-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1rem;
}

/* ============================================
   KENNISPAGINA — RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .beroep-grid {
        grid-template-columns: 1fr;
    }
    .model-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .article-inner {
        padding: 0 20px;
    }
    .article-hero {
        padding: 32px 0 40px;
    }
    .article-section {
        padding: 48px 0;
    }
    .article-cta {
        padding: 48px 0;
    }
    .waterfall-viz {
        padding: 24px 16px;
        margin: 1.5rem -4px;
        border-radius: 12px;
    }
    .waterfall-section {
        padding: 28px 20px;
        margin: 24px -24px;
        border-radius: 0;
    }
    .indicator-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .calc-table .direction {
        display: none;
    }
    .calc-table td {
        padding: 10px 12px;
        font-size: 15px;
    }
    .compare-table td,
    .compare-table th {
        padding: 8px 10px;
        font-size: 14px;
    }
    .product-types {
        grid-template-columns: 1fr;
    }
    .prof-grid {
        grid-template-columns: 1fr;
    }
    .flow-block {
        padding: 18px;
    }
    .scenario-block,
    .host-block {
        padding: 18px 20px;
    }
    .disclaimer {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .step-indicator {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

/* ============================================
   KENNISPAGINA — REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .faq-answer { transition: none; }
    .faq-chevron { transition: none; }
    .beroep-card,
    .model-card,
    .prof-card {
        transition: none;
    }
    .beroep-card:hover,
    .model-card:hover,
    .prof-card:hover {
        transform: none;
    }
}
