*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --blue: #2d4b9c;
    --blue-deep: #213879;
    --blue-bright: #3a5fbe;
    --blue-soft: #e8edf7;
    --blue-tint: #f4f6fc;
    --bg: #ffffff;
    --bg-soft: #f8f9fc;
    --ink: #0f1a3a;
    --ink-soft: rgba(15, 26, 58, 0.7);
    --ink-faint: rgba(15, 26, 58, 0.45);
    --line: rgba(15, 26, 58, 0.1);
    --line-strong: rgba(15, 26, 58, 0.18);
    --warn: #f4b942;
    --warn-deep: #e0a52a;
    --green: #4ec46e;
    --red: #e74c3c;
}
html { scroll-behavior: smooth; }

/* ============ BREADCRUMB ============ */
.breadcrumb {
    background: var(--bg-soft); padding: 14px 32px;
    border-bottom: 1px solid var(--line);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
}
.breadcrumb-inner {
    max-width: 1480px; margin: 0 auto;
    display: flex; align-items: center; gap: 10px; color: var(--ink-soft);
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-current { color: var(--ink); font-weight: 500; }
.breadcrumb-sep { color: var(--ink-faint); }

/* ============ SECTION LABEL ============ */
.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--blue); font-weight: 500; display: inline-block;
}

/* ============ HERO ============ */
.hero {
    padding: 56px 32px 64px;
    max-width: 1480px;
    margin: 0 auto;
}
.hero-inner {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 56px; align-items: center;
}
.hero-text { max-width: 580px; }
.hero-text .section-label { margin-bottom: 14px; }
.hero-text h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-text > p {
    font-size: 17px; line-height: 1.6;
    color: var(--ink-soft); margin-bottom: 28px;
    max-width: 520px;
}
.hero-buttons {
    display: flex; gap: 10px; flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
}
.hero-image {
    aspect-ratio: 4/3.6;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-soft);
    position: relative;
}
.hero-image img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center center;
}
.hero-text h1 em {
    font-style: normal;
    color: var(--blue);
}
.hero-text p {
    font-size: 18px; line-height: 1.6;
    color: var(--ink-soft); margin-bottom: 32px;
    max-width: 520px;
}
.hero-buttons {
    display: flex; gap: 10px; flex-wrap: wrap;
    align-items: center;
    margin-bottom: 36px;
}
.btn {
    font-family: 'Archivo', sans-serif;
    font-weight: 700; font-size: 15px;
    padding: 18px 28px; border-radius: 100px;
    text-decoration: none; display: inline-flex;
    align-items: center; gap: 10px;
    transition: all 0.25s; cursor: pointer;
    border: 1.5px solid transparent;
}
.btn-warn {
    background: var(--warn); color: var(--ink);
    border-color: var(--warn);
    box-shadow: 0 8px 24px -8px rgba(244, 185, 66, 0.5);
}
.btn-warn:hover { background: var(--warn-deep); border-color: var(--warn-deep); transform: translateY(-2px); }
.btn-outline {
    background: white; color: var(--ink);
    border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* Knop met portret (Tim/Klaas-Jan) */
.btn-with-portret {
    padding: 10px 24px 10px 10px;
    gap: 14px;
}
.btn-portret {
    width: 40px; height: 40px;
    border-radius: 50%;
    background-size: cover;
    background-position: center top;
    background-color: var(--blue-soft);
    flex-shrink: 0;
    border: 2px solid var(--blue-soft);
}
.btn-light {
    background: transparent; color: white;
    border-color: rgba(255, 255, 255, 0.3);
}
.btn-light:hover { border-color: white; background: rgba(255, 255, 255, 0.06); }

.hero-trust-pills {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.hero-trust-pill {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    padding: 8px 14px;
    border-radius: 100px;
    font-family: 'Archivo', sans-serif;
    font-weight: 600; font-size: 13px;
    color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
}
.hero-trust-pill::before {
    content: '✓'; color: var(--green); font-weight: 900;
}

.hero-image-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: white;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 12px 32px -8px rgba(15, 26, 58, 0.25);
    display: flex; align-items: center; gap: 12px;
}
.hero-image-badge .icon {
    width: 38px; height: 38px;
    background: var(--warn); color: var(--ink);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
}
.hero-image-badge .icon svg { width: 18px; height: 18px; }
.hero-image-badge .text {
    font-family: 'Archivo', sans-serif;
    line-height: 1.2;
}
.hero-image-badge .text strong {
    display: block;
    font-weight: 900; font-size: 16px;
    color: var(--ink); letter-spacing: -0.01em;
}
.hero-image-badge .text span {
    font-size: 12px; color: var(--ink-soft);
}

/* ============ DOELGROEP CARDS ============ */
.doelgroep {
    background: var(--ink);
    color: white;
    padding: 80px 32px;
    position: relative;
    overflow: hidden;
}
.doelgroep::before {
    content: '';
    position: absolute;
    top: -180px; right: -180px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background:
            radial-gradient(circle, transparent 0%, transparent 60px, rgba(244, 185, 66, 0.2) 60px, rgba(244, 185, 66, 0.2) 62px, transparent 62px),
            radial-gradient(circle, transparent 0%, transparent 110px, rgba(255, 255, 255, 0.05) 110px, rgba(255, 255, 255, 0.05) 112px, transparent 112px);
    pointer-events: none;
}
.doelgroep-inner {
    max-width: 1480px; margin: 0 auto;
    position: relative; z-index: 1;
}
.doelgroep-head {
    text-align: center; max-width: 720px;
    margin: 0 auto 48px;
}
.doelgroep-head .section-label { color: var(--warn); margin-bottom: 12px; }
.doelgroep-head h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: white;
}
.doelgroep-head h2 em { font-style: normal; color: var(--warn); }
.doelgroep-head p {
    font-size: 17px; line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}
.doelgroep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.doelgroep-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px 28px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.doelgroep-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--warn);
    transform: translateY(-6px);
}
.doelgroep-card .icon {
    width: 52px; height: 52px;
    background: var(--warn); color: var(--ink);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s;
}
.doelgroep-card:hover .icon { transform: rotate(-5deg); }
.doelgroep-card .icon svg { width: 24px; height: 24px; }
.doelgroep-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.doelgroep-card p {
    font-size: 14px; line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    flex: 1;
}
.doelgroep-card .card-cta {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700; font-size: 13px;
    color: var(--warn);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: gap 0.25s;
}
.doelgroep-card:hover .card-cta { gap: 12px; }

/* ============ JOUW VOORDELEN (werknemer-grid) ============ */
.voordelen-werknemer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
/* Werkgever-variant: 3 cards gecentreerd */
.voordelen-werkgever-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1080px;
    margin: 0 auto;
}
.voordeel-wn-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 28px 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.voordeel-wn-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--warn);
    transform: translateY(-4px);
}
.voordeel-wn-card.highlight {
    background: var(--warn);
    border-color: var(--warn);
    color: var(--ink);
}
.voordeel-wn-card.highlight:hover {
    background: var(--warn-deep);
    border-color: var(--warn-deep);
    transform: translateY(-4px);
}
.vw-num {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--warn);
    margin-bottom: 16px;
}
.voordeel-wn-card.highlight .vw-num { color: var(--ink); }
.voordeel-wn-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: white;
}
.voordeel-wn-card.highlight h3 { color: var(--ink); }
.voordeel-wn-card p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}
.voordeel-wn-card.highlight p { color: rgba(15, 26, 58, 0.8); }

/* ============ STAPPENPLAN ============ */
.stappen {
    padding: 100px 32px;
    max-width: 1480px;
    margin: 0 auto;
}
.stappen-head {
    text-align: center; max-width: 720px;
    margin: 0 auto 56px;
}
.stappen-head .section-label { margin-bottom: 12px; }
.stappen-head h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.stappen-head h2 em { font-style: normal; color: var(--blue); }
.stappen-head p {
    font-size: 17px; line-height: 1.6;
    color: var(--ink-soft);
}
.stappen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    position: relative;
}
/* 6-grid voor werkgever */
.stappen-grid.stappen-grid-6 {
    grid-template-columns: repeat(3, 1fr);
}
/* Stagger animatie — elke kaart later */
.stappen-grid .reveal:nth-child(1) { transition-delay: 0s; }
.stappen-grid .reveal:nth-child(2) { transition-delay: 0.10s; }
.stappen-grid .reveal:nth-child(3) { transition-delay: 0.20s; }
.stappen-grid .reveal:nth-child(4) { transition-delay: 0.30s; }
.stappen-grid .reveal:nth-child(5) { transition-delay: 0.40s; }
.stappen-grid .reveal:nth-child(6) { transition-delay: 0.50s; }

/* Verbindingslijn tussen stappen */
.stappen-grid::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(
            to right,
            var(--blue-soft) 0,
            var(--blue-soft) 8px,
            transparent 8px,
            transparent 16px
    );
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease 0.6s;
}
.stappen-grid.line-in::before { opacity: 1; }
.stappen-grid.stappen-grid-6::before { display: none; }

.stap-card {
    background: white;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 32px 28px;
    transition: all 0.3s, opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}
.stap-card:hover {
    border-color: var(--blue);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -16px rgba(45, 75, 156, 0.18);
}
.stap-card:hover .stap-num {
    transform: scale(1.1) rotate(-5deg);
}
.stap-num {
    width: 48px; height: 48px;
    background: var(--warn); color: var(--ink);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px -6px rgba(244, 185, 66, 0.5);
}
.stap-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 17px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.stap-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
}

/* ============ VOORDELEN ============ */
.voordelen {
    background: var(--bg-soft);
    padding: 100px 32px;
}
.voordelen-inner {
    max-width: 1480px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
}
.voordelen-text .section-label { margin-bottom: 12px; }
.voordelen-text h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4.5vw, 60px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.voordelen-text h2 em { font-style: normal; color: var(--blue); }
.voordelen-text p {
    font-size: 16px; line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 28px;
    max-width: 480px;
}
.voordelen-stat {
    display: flex; align-items: baseline; gap: 14px;
    background: var(--ink); color: white;
    padding: 24px 28px;
    border-radius: 18px;
    max-width: 420px;
}
.voordelen-stat-num {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 56px;
    line-height: 0.85;
    color: var(--warn);
    letter-spacing: -0.04em;
}
.voordelen-stat-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.85);
}
.voordelen-stat-text strong {
    color: white; font-weight: 800;
    display: block; font-size: 16px;
    margin-bottom: 2px;
}

.voordelen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.voordeel-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 26px;
    display: flex; gap: 16px;
    align-items: flex-start;
    transition: all 0.3s;
}
.voordeel-card:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -16px rgba(45, 75, 156, 0.18);
}
.voordeel-icon {
    width: 44px; height: 44px;
    background: var(--blue-tint); color: var(--blue);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.voordeel-icon svg { width: 20px; height: 20px; }
.voordeel-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}
.voordeel-card p {
    font-size: 13px;
    line-height: 1.45;
    color: var(--ink-soft);
}

/* ============ PARALLAX BANNER ============ */
.parallax-banner {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center 35%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}
.parallax-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(180deg, rgba(15, 26, 58, 0) 0%, rgba(15, 26, 58, 0.15) 50%, rgba(15, 26, 58, 0) 100%);
    pointer-events: none;
}

/* ============ CALCULATOR ============ */
.calculator {
    padding: 100px 32px;
    max-width: 1280px;
    margin: 0 auto;
}
.calculator-head {
    text-align: center; max-width: 720px;
    margin: 0 auto 40px;
}
.calculator-head .section-label { margin-bottom: 12px; }
.calculator-head h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.calculator-head h2 em { font-style: normal; color: var(--blue); }
.calculator-head p {
    font-size: 17px; line-height: 1.6;
    color: var(--ink-soft);
}
.calculator-frame-wrap {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(15, 26, 58, 0.15);
}
.calculator-frame-wrap iframe {
    width: 100%;
    min-height: 700px;
    border: none;
    border-radius: 16px;
    background: white;
    display: block;
}
.calculator-disclaimer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--ink-faint);
    font-style: italic;
}

/* ============ PARTNERS ============ */
.partners {
    background: var(--blue-soft);
    padding: 80px 32px;
}
.partners-inner {
    max-width: 1280px; margin: 0 auto;
    text-align: center;
}
.partners-head .section-label { margin-bottom: 12px; }
.partners-head h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.partners-head h2 em { font-style: normal; color: var(--blue); }
.partners-head p {
    font-size: 16px; line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 48px;
    max-width: 540px;
    margin-left: auto; margin-right: auto;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.partner-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 40px 32px;
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
    transition: all 0.3s;
}
.partner-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -16px rgba(45, 75, 156, 0.15);
}
.partner-name {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -0.025em;
    color: var(--blue);
}
.partner-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-align: center;
}

/* ============ FAQ ============ */
.faq {
    padding: 100px 32px;
    max-width: 1080px;
    margin: 0 auto;
}
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-head .section-label { margin-bottom: 12px; }
.faq-head h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 12px 0;
}
.faq-head h2 em { font-style: normal; color: var(--blue); }
.faq-list {
    display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.2s;
    position: relative;
}
.faq-item:has(.faq-toggle:checked) {
    border-color: var(--blue);
    box-shadow: 0 8px 24px -12px rgba(45, 75, 156, 0.15);
}
.faq-toggle {
    position: absolute;
    opacity: 0; pointer-events: none;
}
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 22px 26px;
    cursor: pointer;
    font-family: 'Archivo', sans-serif;
    font-weight: 700; font-size: 16px;
    color: var(--ink);
    transition: color 0.2s;
}
.faq-question:hover { color: var(--blue); }
.faq-question .faq-plus {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--blue-tint); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 600;
    transition: all 0.25s; flex-shrink: 0;
}
.faq-toggle:checked ~ .faq-question .faq-plus {
    background: var(--blue); color: white;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-toggle:checked ~ .faq-answer { max-height: 800px; }
.faq-answer-inner {
    padding: 0 26px 24px;
    font-size: 15px; line-height: 1.6;
    color: var(--ink-soft);
}
.faq-answer-inner p { margin-bottom: 12px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner strong { color: var(--ink); }

/* ============ CTA + TIM BLOK ============ */
.cta-tim {
    padding: 60px 32px 100px;
    max-width: 1480px;
    margin: 0 auto;
}
.cta-tim-card {
    background: var(--blue-soft);
    border-radius: 24px;
    padding: 56px 56px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.cta-tim-card::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background:
            radial-gradient(circle, transparent 0%, transparent 50px, rgba(45, 75, 156, 0.12) 50px, rgba(45, 75, 156, 0.12) 52px, transparent 52px),
            radial-gradient(circle, transparent 0%, transparent 95px, rgba(45, 75, 156, 0.06) 95px, rgba(45, 75, 156, 0.06) 97px, transparent 97px);
    pointer-events: none;
}
.cta-tim-card > * { position: relative; z-index: 1; }
.cta-tim-portret {
    width: 160px; height: 160px;
    border-radius: 50%;
    background-size: cover; background-position: center top;
    background-color: white;
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--blue), 0 16px 32px -12px rgba(15, 26, 58, 0.25);
    flex-shrink: 0;
}
.cta-tim-content {
    max-width: 600px;
}
.cta-tim-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 8px;
}
.cta-tim-content h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.cta-tim-content h2 em { font-style: normal; color: var(--blue); }
.cta-tim-content p {
    font-size: 15px; line-height: 1.5;
    color: var(--ink-soft);
}
.cta-tim-btns {
    display: flex; gap: 8px; flex-shrink: 0;
}
.cta-tim-btn {
    background: var(--warn); color: var(--ink);
    padding: 14px 22px; border-radius: 100px;
    font-family: 'Archivo', sans-serif;
    font-weight: 800; font-size: 13px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}
.cta-tim-btn:hover { background: var(--warn-deep); transform: translateY(-1px); }
.cta-tim-btn.whatsapp {
    background: #25d366; color: white;
}
.cta-tim-btn.whatsapp:hover { background: #1da851; }

/* ============ FOOTER ============ */
footer { background: var(--ink); color: white; position: relative; }
.footer-contact-block {
    background-color: var(--blue-deep);
    background-image:
            linear-gradient(135deg, rgba(33, 56, 121, 0.95) 0%, rgba(15, 26, 58, 0.97) 100%);
    padding: 72px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-contact-inner {
    max-width: 1480px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px; align-items: stretch;
}
.footer-contact-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--warn);
    margin-bottom: 16px; font-weight: 500;
}
.footer-contact-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 0.95; letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 36px; color: white;
}
.footer-contact-title em { font-style: normal; color: var(--warn); }
.footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px; margin-bottom: 28px;
}
.contact-block-item {
    display: flex; gap: 16px; align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px 22px;
    text-decoration: none;
    transition: all 0.25s;
}
.contact-block-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--warn);
    transform: translateY(-2px);
}
.contact-block-icon {
    width: 48px; height: 48px;
    background: var(--warn); color: var(--ink);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s;
}
.contact-block-item:hover .contact-block-icon { transform: rotate(-5deg); }
.contact-block-icon svg { width: 20px; height: 20px; }
.contact-block-text { min-width: 0; flex: 1; }
.contact-block-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500; margin-bottom: 4px;
}
.contact-block-value {
    font-family: 'Archivo', sans-serif;
    font-weight: 800; font-size: 16px;
    color: white; line-height: 1.2;
    word-break: break-word;
    letter-spacing: -0.01em;
}
.contact-block-item:hover .contact-block-value { color: var(--warn); }
.footer-route-btn {
    background: var(--warn); color: var(--ink);
    border-color: var(--warn);
    box-shadow: 0 8px 24px -8px rgba(244, 185, 66, 0.5);
}
.footer-route-btn:hover {
    background: var(--warn-deep); border-color: var(--warn-deep);
    transform: translateY(-2px);
}
.footer-hours-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 28px;
    height: 100%;
    display: flex; flex-direction: column;
}
.hours-card-header {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 16px; margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.status-indicator {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700; font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.status-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(78, 196, 110, 0.2);
    animation: pulse 2s infinite;
}
.status-text { color: var(--green); }
.status-indicator.closed .status-dot { background: var(--red); box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.2); }
.status-indicator.closed .status-text { color: var(--red); }
.footer-hours {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 4px; flex: 1;
}
.footer-hours li {
    display: flex; justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Archivo', sans-serif;
    padding: 4px 0;
}
.footer-hours li span:first-child { font-weight: 500; }
.footer-hours li span:last-child { color: rgba(255, 255, 255, 0.6); }
.footer-hours li.closed span:last-child { color: var(--red); font-weight: 600; }
.status-time-row {
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
}
.footer-region-strip {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 32px;
}
.footer-region-inner {
    max-width: 1480px; margin: 0 auto;
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.region-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--warn);
    font-weight: 500; white-space: nowrap;
}
.region-places { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; }
.region-places span {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px; border-radius: 100px;
    font-family: 'Archivo', sans-serif;
    font-weight: 600; font-size: 13px;
    color: white;
}
.region-note {
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    white-space: nowrap;
}
.footer-inner { max-width: 1480px; margin: 0 auto; padding: 56px 32px 28px; }
.footer-nav-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-nav-brand .footer-logo img {
    height: 44px; width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 18px;
}
.footer-tagline-small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 360px;
    line-height: 1.5;
    margin-bottom: 22px;
}
.footer-reviews {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--warn); color: var(--ink);
    padding: 12px 18px; border-radius: 14px;
    text-decoration: none; transition: all 0.25s;
}
.footer-reviews:hover { background: var(--warn-deep); transform: translateY(-2px); }
.footer-reviews-score {
    font-family: 'Archivo', sans-serif;
    font-weight: 900; font-size: 32px;
    line-height: 0.85; letter-spacing: -0.04em;
    color: var(--ink);
}
.footer-reviews-info {
    font-family: 'Archivo', sans-serif;
    font-size: 12px; color: var(--ink); line-height: 1.3;
}
.footer-reviews-info .stars {
    font-size: 13px; margin-bottom: 2px;
    letter-spacing: 0.05em;
}
.footer-reviews-info > div:last-child { font-weight: 600; }
.footer-col h5 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--warn);
    margin-bottom: 18px; font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
    color: white; text-decoration: none;
    font-size: 14px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--warn); }
.footer-brands-list { display: flex; flex-direction: column; gap: 8px; }
.footer-brands-list span {
    font-family: 'Archivo', sans-serif;
    font-weight: 700; font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}
.footer-brands-list span:hover { color: var(--warn); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.footer-bottom a { color: white; text-decoration: none; }
.footer-bottom a:hover { color: var(--warn); }
.footer-bottom-right { display: flex; gap: 24px; align-items: center; }

/* ============ ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ TABLET ============ */
@media (max-width: 1100px) {
    .nav-links { display: none; }
    .menu-burger { display: flex; }
    .top-usp-list span:nth-child(n+3) { display: none; }
    .hero-wrap { min-height: auto; }
    .hero { padding: 48px 24px 56px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { height: auto; aspect-ratio: 4/3; min-height: auto; max-height: none; }
    .doelgroep-grid { grid-template-columns: 1fr; }
    .voordelen-werknemer-grid { grid-template-columns: repeat(2, 1fr); }
    .voordelen-werkgever-grid { grid-template-columns: 1fr; max-width: 560px; }
    .stappen-grid { grid-template-columns: repeat(2, 1fr); }
    .stappen-grid.stappen-grid-6 { grid-template-columns: repeat(2, 1fr); }
    .stappen-grid::before { display: none; }
    .voordelen-inner { grid-template-columns: 1fr; gap: 40px; }
    .voordelen-grid { grid-template-columns: 1fr 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .cta-tim-card { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .cta-tim-portret { margin: 0 auto; }
    .cta-tim-btns { justify-content: center; }
    .footer-contact-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-nav-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; align-items: start; }
}

/* ============ MOBIEL ============ */
@media (max-width: 640px) {
    .top-usp { padding: 10px 0; font-size: 11px; }
    .top-usp-inner { padding: 0 14px; }
    .top-usp-list { gap: 14px; }
    .top-usp-right { display: none; }
    nav { padding: 12px 14px; }
    .logo img { height: 36px; }
    .phone-btn { padding: 9px 14px; font-size: 13px; }
    .breadcrumb { padding: 12px 14px; font-size: 10px; }
    body { padding-bottom: 0; }
    .hero-wrap { min-height: auto; }
    .hero { padding: 40px 14px 48px; }
    .hero-image { height: auto; min-height: auto; }
    .hero-text h1 { font-size: 36px; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .doelgroep { padding: 56px 14px; }
    .doelgroep-head h2 { font-size: 28px; }
    .doelgroep-card { padding: 26px 22px; }
    .voordelen-werknemer-grid { grid-template-columns: 1fr; gap: 10px; }
    .voordeel-wn-card { padding: 22px 22px; }
    .parallax-banner {
        height: 280px;
        background-attachment: scroll;
        background-position: center;
    }
    .stappen { padding: 56px 14px; }
    .stappen-head h2 { font-size: 28px; }
    .stappen-grid { grid-template-columns: 1fr; gap: 10px; }
    .stappen-grid.stappen-grid-6 { grid-template-columns: 1fr; gap: 10px; }
    .stap-card { padding: 24px 20px; }
    .voordelen { padding: 56px 14px; }
    .voordelen-text h2 { font-size: 32px; }
    .voordelen-grid { grid-template-columns: 1fr; gap: 10px; }
    .voordeel-card { padding: 18px 20px; }
    .calculator { padding: 56px 14px; }
    .calculator-head h2 { font-size: 28px; }
    .calculator-frame-wrap { padding: 16px; border-radius: 18px; }
    .calculator-frame-wrap iframe { min-height: 900px; }
    .partners { padding: 56px 14px; }
    .partners-head h2 { font-size: 24px; }
    .partner-card { padding: 28px 24px; }
    .faq { padding: 56px 14px; }
    .faq-head h2 { font-size: 28px; }
    .faq-question { padding: 18px 20px; font-size: 14px; }
    .faq-answer-inner { padding: 0 20px 20px; font-size: 14px; }
    .cta-tim { padding: 32px 14px 56px; }
    .cta-tim-card { padding: 32px 24px; }
    .cta-tim-portret { width: 120px; height: 120px; }
    .cta-tim-btns { flex-direction: column; width: 100%; }
    .cta-tim-btn { width: 100%; justify-content: center; }
    footer { padding: 0; }
    .footer-contact-block { padding: 40px 14px; }
    .footer-contact-title { font-size: 36px; margin-bottom: 28px; }
    .footer-contact-grid { grid-template-columns: 1fr; gap: 14px; }
    .footer-hours-card { padding: 22px; }
    .footer-region-strip { padding: 18px 14px; }
    .footer-region-inner { flex-direction: column; align-items: start; gap: 12px; }
    .region-note { white-space: normal; font-size: 12px; }
    .region-places span { font-size: 12px; padding: 5px 12px; }
    .footer-inner { padding: 40px 14px 20px; }
    .footer-nav-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
    .footer-bottom-right { flex-wrap: wrap; gap: 16px; }
}