/* ═══════════════════════════════════════════════════════════════
   ClaimHulp — Unified Stylesheet
   All pages: index, funnel, algemene-voorwaarden, privacybeleid
   ═══════════════════════════════════════════════════════════════ */

/* ─── FONT FACES ──────────────────────────────────────────── */
@font-face { font-family:'Pogonia'; src:url('../fonts/pogonia-thin.ttf') format('truetype'); font-weight:100; }
@font-face { font-family:'Pogonia'; src:url('../fonts/pogonia-extralight.ttf') format('truetype'); font-weight:200; }
@font-face { font-family:'Pogonia'; src:url('../fonts/pogonia-light.ttf') format('truetype'); font-weight:300; }
@font-face { font-family:'Pogonia'; src:url('../fonts/pogonia-regular.ttf') format('truetype'); font-weight:400; }
@font-face { font-family:'Pogonia'; src:url('../fonts/pogonia-medium.ttf') format('truetype'); font-weight:500; }
@font-face { font-family:'Pogonia'; src:url('../fonts/pogonia-semibold.ttf') format('truetype'); font-weight:600; }
@font-face { font-family:'Pogonia'; src:url('../fonts/pogonia-bold.ttf') format('truetype'); font-weight:700; }
@font-face { font-family:'Pogonia'; src:url('../fonts/pogonia-extrabold.ttf') format('truetype'); font-weight:800; }
@font-face { font-family:'Pogonia'; src:url('../fonts/pogonia-black.ttf') format('truetype'); font-weight:900; }

/* ─── RESET & VARIABLES ──────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
    --white: #FFFFFF;
    --green: #72D55B;
    --green-light: rgba(114,213,91,0.10);
    --green-border: rgba(114,213,91,0.35);
    --dark: #222222;
    --dark2: #1a1a1a;
    --muted: rgba(255,255,255,0.55);
    --gray: #888;
    --gray-light: #f5f5f5;
    --border: #e8e8e8;
    --text: #333;
    --muted-text: #666;
    --line: #e8e8e8;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Pogonia', system-ui, sans-serif;
    background-color: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

/* Page-specific body overrides */
html:has(body.page-funnel) {
    scrollbar-gutter: stable;
}

body.page-funnel {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

body.page-legal {
    color: var(--text);
    line-height: 1.65;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

body.page-situation {
    color: var(--text);
    background: var(--white);
}

/* Anchors on heads/hero-inner: scroll-margin on <section> extended the target upward and showed the block above. */
body.page-situation .situation-section-head[id],
body.page-situation .situation-hero-inner#home {
    scroll-margin-top: calc(92px + 22px);
}

#home, #voordelen, #situaties, #over-ons, #ervaringen, #contact {
    scroll-margin-top: 100px;
}


/* ═══════════════════════════════════════════════════════════════
   NAVBAR  (index.html)
   ═══════════════════════════════════════════════════════════════ */
.navbar {
    background-color: var(--dark);
    height: 92px;
    padding: 0 clamp(24px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-logo img {
    height: 32px;
    display: block;
}

.navbar-menu {
    display: contents;
}

.navbar-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.navbar-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: color 0.18s;
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: width 0.22s;
}

.navbar-links a:hover,
.navbar-links a.active {
    color: var(--white);
}

.navbar-links a.active::after,
.navbar-links a:hover::after {
    width: 100%;
}

.navbar-cta {
    background-color: var(--green);
    color: var(--dark);
    font-family: 'Pogonia', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.2px;
    padding: 11px 22px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, transform 0.18s;
}

.navbar-cta:hover {
    background-color: #80df67;
    transform: translateY(-1px);
}

/* Hamburger toggle — hidden on desktop */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
}

.navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.open .navbar-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.open .navbar-toggle span:nth-child(2) {
    opacity: 0;
}

.navbar.open .navbar-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ═══════════════════════════════════════════════════════════════
   HERO  (index.html)
   ═══════════════════════════════════════════════════════════════ */
.hero {
    background-color: var(--dark2);
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 80px) 160px;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin-left: clamp(32px, 12vw, 180px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background-color: rgba(114, 213, 91, 0.12);
    border: 1px solid rgba(114, 213, 91, 0.25);
    color: var(--green);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

.hero h1 {
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 22px;
}

.hero h1 em {
    font-style: normal;
    color: var(--green);
}

.hero-sub {
    color: var(--muted);
    font-size: 15.5px;
    font-weight: 300;
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-sizing: border-box;
    min-height: 50px;
    padding: 12px 28px;
    border: 1px solid transparent;
    border-radius: 8px;
    background-color: var(--green);
    color: var(--dark);
    font-family: 'Pogonia', system-ui, sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s, transform 0.18s;
}

.btn-primary:hover {
    background-color: #80df67;
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-family: 'Pogonia', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.18s;
}

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

/* Hero illustration panel */
.hero-visual {
    position: absolute;
    right: clamp(72px, 14vw, 200px);
    top: 50%;
    transform: translateY(-50%);
    width: min(42%, 460px);
    z-index: 2;
    pointer-events: none;
}

/* ── Claim result widget ─────────────────────── */
.cr-wrap {
    position: relative;
    padding: 28px 32px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.cr-slides {
    position: relative;
    min-height: 282px;
}

.cr-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.cr-slide--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cr-slide--out {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.cr-context {
    display: block;
    font-size: 10.5px;
    font-weight: 400;
    color: rgba(255,255,255,0.36);
    line-height: 1.55;
    margin-bottom: 18px;
}

.cr-eyebrow {
    display: block;
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.24);
    margin-bottom: 8px;
}

.cr-eyebrow--green { color: rgba(114,213,91,0.68); }

.cr-old {
    display: inline-block;
    font-size: 38px;
    font-weight: 700;
    color: rgba(255,255,255,0.14);
    line-height: 1;
    position: relative;
    margin-bottom: 16px;
}

.cr-old.cr-animated::after {
    content: '';
    position: absolute;
    left: 0; top: 46%;
    width: 0; height: 3px;
    background: rgba(215,55,55,0.68);
    border-radius: 2px;
    animation: crStrike 0.4s ease-out 0.35s forwards;
}

.cr-new {
    display: block;
    font-size: clamp(52px, 6.5vw, 66px);
    font-weight: 800;
    color: rgba(255,255,255,0.94);
    line-height: 1;
}

.cr-bar {
    width: 55%;
    height: 2.5px;
    background: var(--green);
    border-radius: 2px;
    margin-top: 14px;
}

.cr-sub {
    display: block;
    font-size: 10px;
    font-weight: 300;
    color: rgba(255,255,255,0.26);
    margin-top: 16px;
    line-height: 1.55;
}

@keyframes crStrike { to { width: 100%; } }

.cr-breakdown {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.cr-brow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    opacity: 0;
}

.cr-brow-name {
    font-size: 11.5px;
    font-weight: 400;
    color: rgba(255,255,255,0.52);
}

.cr-brow-amt {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.78);
}

.cr-slide--active .cr-brow-1 { animation: crSlideIn 0.28s ease-out 0.10s forwards; }
.cr-slide--active .cr-brow-2 { animation: crSlideIn 0.28s ease-out 0.28s forwards; }
.cr-slide--active .cr-brow-3 { animation: crSlideIn 0.28s ease-out 0.46s forwards; }
.cr-slide--active .cr-brow-4 { animation: crSlideIn 0.28s ease-out 0.64s forwards; }
.cr-slide--active .cr-brow-5 { animation: crSlideIn 0.28s ease-out 0.82s forwards; }

.cr-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 14px;
    opacity: 0;
}

.cr-slide--active .cr-total {
    animation: crSlideIn 0.38s ease-out 1.05s forwards;
}

.cr-total-label {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(114,213,91,0.65);
}

.cr-total-amt {
    font-size: 30px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}

.cr-approved {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    opacity: 0;
}

.cr-slide--active .cr-approved {
    animation: crSlideIn 0.35s ease-out 0.88s forwards;
}

@keyframes crSlideIn {
    from { opacity: 0; transform: translateX(-5px); }
    to   { opacity: 1; transform: translateX(0); }
}


/* ═══════════════════════════════════════════════════════════════
   CARDS  (index.html)
   ═══════════════════════════════════════════════════════════════ */
.cards-section {
    position: relative;
    z-index: 10;
    margin-top: -72px;
    padding: 0 clamp(24px, 5vw, 80px) 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1060px;
    margin: 0 auto;
}

.card {
    position: relative;
    overflow: hidden;
    padding: 24px 22px 26px 24px;
    min-height: 148px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(34,34,34,0.08);
    box-shadow: 0 6px 28px rgba(0,0,0,0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.11);
    border-color: rgba(34,34,34,0.11);
}

.card:hover .card-bg-icon {
    opacity: 0.24;
    transform: scale(1.05) translate(4px, 2px);
}

.card-bg-icon {
    position: absolute;
    right: -42px;
    bottom: -38px;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.19;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.card-bg-icon svg {
    width: 100%;
    height: 100%;
}

.card-body {
    position: relative;
    z-index: 1;
    max-width: 62%;
}

.card-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: rgba(34,34,34,0.42);
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.28;
}

.card-lead {
    margin-top: 10px;
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(34,34,34,0.58);
    line-height: 1.45;
}


/* ═══════════════════════════════════════════════════════════════
   SITUATIONS  (index.html)
   ═══════════════════════════════════════════════════════════════ */
.situations-section {
    background: var(--white);
    padding: 100px clamp(24px, 5vw, 80px) 100px;
}

.situations-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.situations-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.situations-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.15;
}

.situations-header p {
    font-size: 15px;
    font-weight: 300;
    color: #888;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Tabs */
.sit-tabs-wrap {
    margin-bottom: 44px;
}

.sit-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.sit-tabs-scroll-hint {
    display: none;
}

.sit-tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #f5f5f5;
    color: #888;
    font-family: 'Pogonia', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 22px;
    border: 2px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s;
}

.sit-tab-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.sit-tab:hover {
    background: #efefef;
    color: var(--dark);
}

.sit-tab.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.sit-tab.active .sit-tab-icon svg {
    stroke: var(--green);
}

/* Panels */
.sit-panels { position: relative; }

.sit-panel {
    display: none;
    animation: fadeUp 0.3s ease;
}

.sit-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto auto;
    column-gap: 72px;
    row-gap: 0;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sit-panel-intro {
    grid-column: 1;
    grid-row: 1;
    padding-bottom: 28px;
}

.sit-panel-intro h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.25;
}

.sit-panel-intro p {
    font-size: 14.5px;
    font-weight: 300;
    color: #777;
    line-height: 1.75;
}

.sit-panel-intro strong {
    font-weight: 600;
    color: var(--dark);
}

.sit-panel-intro .sit-intro-continue {
    display: block;
    margin-top: 0.55em;
}

.sit-cta-row {
    grid-column: 1;
    grid-row: 3;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 32px;
}

.sit-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

/* Global .btn-secondary is for dark backgrounds; situations panel is white */
.situations-section .sit-cta-info.btn-secondary {
    border-color: rgba(34,34,34,0.12);
    background: #fff;
    color: var(--dark);
}

.situations-section .sit-cta-info.btn-secondary:hover {
    background: #f7f7f7;
    border-color: rgba(34,34,34,0.18);
    color: var(--dark);
}

.sit-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 400;
    color: #aaa;
}

.sit-note svg {
    stroke: var(--green);
    flex-shrink: 0;
}

/* Steps timeline */
.sit-steps {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: start;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 0;
    border-left: 2px solid #f0f0f0;
    margin-left: 16px;
}

.sit-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 0 0 28px 0;
    position: relative;
}

.sit-step:last-child { padding-bottom: 0; }

.step-marker {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -19px;
    position: relative;
    z-index: 1;
}

.step-marker span {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}

.step-body { padding-top: 6px; }

.step-body h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.step-body p {
    font-size: 13px;
    font-weight: 300;
    color: #888;
    line-height: 1.65;
}

/* ─── FAQ ───────────────────────────────────────── */
.sit-faq {
    grid-column: 1 / -1;
    grid-row: 4;
    margin-top: 52px;
    padding-top: 44px;
    border-top: 1px solid #efefef;
}

.faq-heading {
    font-size: 13px;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1.5px solid #ebebeb;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.open {
    border-color: var(--dark);
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}

.faq-trigger {
    width: 100%;
    background: #fafafa;
    border: none;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: 'Pogonia', system-ui, sans-serif;
    transition: background 0.18s;
}

.faq-item.open .faq-trigger { background: var(--white); }
.faq-trigger:hover { background: #f3f3f3; }
.faq-item.open .faq-trigger:hover { background: var(--white); }

.faq-trigger-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.35;
    transition: color 0.18s;
}

.faq-trigger:hover .faq-trigger-text { color: #444; }

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.25s;
}

.faq-icon svg { stroke: #999; transition: stroke 0.18s; }

.faq-item.open .faq-icon {
    background: var(--dark);
    transform: rotate(45deg);
}

.faq-item.open .faq-icon svg { stroke: var(--white); }
.faq-item.open .faq-trigger-text { color: var(--dark); }

.faq-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.28s ease;
}

.faq-body-inner {
    overflow: hidden;
}

.faq-body-inner p {
    font-size: 14px;
    font-weight: 300;
    color: #777;
    line-height: 1.75;
    padding: 4px 18px 20px;
    max-width: 760px;
}

.faq-more-region { margin-top: 8px; }

.faq-more-region > .faq-item + .faq-item {
    margin-top: 14px;
}

.faq-more-toggle {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    padding: 6px 0;
    cursor: pointer;
    text-align: left;
    font-family: 'Pogonia', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.18s;
}

.faq-more-toggle:hover { color: #444; }

.faq-more-toggle__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 1.5px solid #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.25s, border-color 0.2s;
}

.faq-more-toggle:hover .faq-more-toggle__icon {
    background: #eee;
    border-color: #ddd;
}

.faq-more-toggle__icon svg { stroke: #666; }

.faq-more-toggle--open .faq-more-toggle__icon {
    background: var(--dark);
    border-color: var(--dark);
}

.faq-more-toggle--open .faq-more-toggle__icon svg { stroke: var(--white); }

.faq-more-toggle .faq-more-icon--minus { display: none; }

.faq-more-toggle--open .faq-more-icon--plus { display: none; }

.faq-more-toggle--open .faq-more-icon--minus { display: block; }


/* ═══════════════════════════════════════════════════════════════
   ABOUT / OVER ONS  (index.html)
   ═══════════════════════════════════════════════════════════════ */
.about-section {
    background: linear-gradient(180deg, #f4f5f4 0%, #fafafa 100%);
    padding: 72px clamp(24px, 5vw, 80px) 72px;
    border-top: 1px solid rgba(34,34,34,0.06);
    border-bottom: 1px solid rgba(34,34,34,0.06);
}

.about-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
    margin-bottom: 0;
}

.about-main {
    display: grid;
    gap: 14px;
}

.about-header {
    margin-bottom: 4px;
}

.about-header h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0;
    line-height: 1.15;
    max-width: 16ch;
}

.about-text {
    font-size: 15.5px;
    font-weight: 400;
    color: #5a5f5a;
    line-height: 1.75;
    margin: 0;
}

.about-points {
    display: grid;
    gap: 12px;
}

.about-point {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(34,34,34,0.08);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.03);
}

.about-point-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    background: rgba(114,213,91,0.12);
    border-radius: 10px;
}

.about-point-copy h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.about-point-copy p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(34,34,34,0.65);
}


/* ═══════════════════════════════════════════════════════════════
   REVIEWS  (index.html)
   ═══════════════════════════════════════════════════════════════ */
.reviews-section {
    background: var(--white);
    padding: 100px clamp(24px, 5vw, 80px) 110px;
}

.reviews-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 52px;
}

.reviews-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.15;
}

.reviews-header p {
    font-size: 15px;
    font-weight: 300;
    color: #888;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.7;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--white);
    border: 1.5px solid #ebebeb;
    border-radius: 12px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.review-card:hover {
    border-color: #ddd;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
}

.review-text {
    font-size: 14px;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-avatar span {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.review-author-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
}

.review-author-meta {
    font-size: 11.5px;
    font-weight: 400;
    color: #aaa;
}


/* ═══════════════════════════════════════════════════════════════
   CONTACT  (index.html)
   ═══════════════════════════════════════════════════════════════ */
.contact-section {
    background: linear-gradient(180deg, #f4f5f4 0%, #fafafa 100%);
    padding: 88px clamp(24px, 5vw, 80px) 100px;
    border-top: 1px solid rgba(34,34,34,0.06);
}

.contact-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.15;
}

.contact-header p {
    font-size: 15px;
    font-weight: 300;
    color: #888;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-form {
    max-width: 560px;
    margin: 0 auto;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.contact-form-card {
    background: var(--white);
    border: 1.5px solid #ebebeb;
    border-radius: 12px;
    padding: clamp(22px, 4vw, 32px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 4px;
}

.contact-field {
    margin-bottom: 16px;
    min-width: 0;
}

/* Inputs default to intrinsic width; stretch to column / full row so naam spans the full card width */
.contact-field .form-input {
    width: 100%;
    min-width: 0;
}

.contact-field label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.contact-field .form-input[aria-invalid="true"] {
    border-color: #f87171;
}

.contact-req {
    color: var(--green);
    font-weight: 700;
}

.contact-opt {
    font-weight: 400;
    color: #aaa;
    font-size: 11.5px;
}

.contact-privacy {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin: 4px 0 18px;
}

/* Optional checkbox + label row (if present) */
.contact-privacy:has(input) {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.contact-privacy input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--green);
    cursor: pointer;
}

.contact-privacy a {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
}

.contact-privacy a:hover {
    text-decoration: underline;
}

.contact-form-msg {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.contact-form-msg--error {
    color: #b33;
    font-weight: 500;
}

.contact-form-msg--ok {
    color: #2a7a3a;
    font-weight: 500;
}

.contact-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER  (index.html)
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.55);
    padding: 64px clamp(24px, 5vw, 80px) 32px;
}

.footer-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand > img {
    height: 28px;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 13.5px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 340px;
}

.footer-chs-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    line-height: 1;
    vertical-align: -0.18em;
    margin-inline: 0.05em;
}

.footer-chs-logo {
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    display: block;
    object-fit: contain;
}

.footer-brand .footer-company-details {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255,255,255,0.38);
    line-height: 1.5;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.18s;
}

.footer-col a:hover { color: var(--white); }

.footer-directory {
    padding: 0 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-directory-head {
    margin-bottom: 22px;
}

.footer-directory-head h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.footer-directory-head p {
    max-width: 620px;
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
}

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

.footer-directory-group {
    padding: 20px 22px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-directory-group h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-directory-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-directory-group a,
.footer-directory-empty {
    font-size: 13.5px;
    line-height: 1.6;
    text-decoration: none;
}

.footer-directory-group a {
    color: rgba(255,255,255,0.6);
    transition: color 0.18s;
}

.footer-directory-group a:hover {
    color: var(--white);
}

.footer-directory-empty {
    color: rgba(255,255,255,0.34);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.3);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.18s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }


/* ═══════════════════════════════════════════════════════════════
   FUNNEL PAGE  (funnel.html)
   ═══════════════════════════════════════════════════════════════ */

/* Header */
.funnel-header {
    background: var(--dark);
    padding: 0 clamp(20px, 4vw, 48px);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.funnel-header-logo img { height: 26px; display: block; }

/* Progress bar */
.funnel-progress {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 4px;
    background: var(--border);
}

.funnel-progress-fill {
    height: 100%;
    background: var(--green);
    width: 0%;
    transition: width 0.6s ease;
    border-radius: 0 4px 4px 0;
}

/* Two-column layout */
.funnel-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px clamp(20px, 4vw, 48px) 100px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: start;
    flex: 1;
}

.funnel-main {
    display: flex;
    flex-direction: column;
    /* Extra scroll runway so newly revealed steps can scroll to the top
       instead of getting stuck with previous answers still visible above. */
    padding-bottom: min(70vh, 520px);
}

.funnel-sidebar {
    position: sticky;
    top: 20px;
    overflow-anchor: none;
}

.funnel-sidebar-inner {
    background: var(--dark);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Sidebar head */
.funnel-sidebar-head {
    margin-bottom: 28px;
}

.funnel-sidebar-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
}

.funnel-sidebar-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
}

/* Divider */
.funnel-sidebar-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 28px 0;
}

/* Question blocks */
.funnel-q {
    display: none;
    opacity: 0;
    margin-bottom: 48px;
}

.funnel-q--visible {
    display: block;
    animation: fqReveal 0.5s ease forwards;
}

@keyframes fqReveal {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.funnel-q-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.funnel-q-title {
    font-size: clamp(19px, 2.5vw, 24px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.funnel-q-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Card grid */
.fq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.fq-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
    text-align: left;
    font-family: inherit;
    color: var(--dark);
    line-height: 1.35;
}

.fq-card:hover {
    border-color: #ccc;
    background: #fafafa;
}

.fq-card--selected {
    border-color: var(--green);
    background: var(--green-light);
    box-shadow: 0 0 0 1px var(--green);
}

/* Situatie-kiezer op funnel (zonder ?situatie=) */
.fq-grid--sit-pick {
    grid-template-columns: 1fr;
    max-width: 520px;
}

a.fq-card--sit-link {
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

a.fq-card--sit-link:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

a.fq-card--sit-link:hover .fq-sit-chevron {
    color: var(--dark);
}

.fq-sit-chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    transition: color 0.18s;
}

.fq-sit-chevron svg {
    width: 16px;
    height: 16px;
}

.funnel-sit-pick-foot {
    margin-top: 28px;
    text-align: center;
}

.funnel-sit-pick-back {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
}

.funnel-sit-pick-back:hover {
    color: var(--dark);
    text-decoration: underline;
}

.fq-card--full { grid-column: 1 / -1; }

.fq-card--muted { opacity: 0.75; }
.fq-card--muted.fq-card--selected { opacity: 1; }

.fq-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.18s;
}

.fq-card--selected .fq-card-icon { background: rgba(114,213,91,0.18); }

.fq-card-icon svg { width: 18px; height: 18px; }

.fq-card-label {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.fq-card-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.18s, border-color 0.18s;
}

.fq-card--selected .fq-card-check {
    background: var(--green);
    border-color: var(--green);
}

.fq-card-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--white);
    opacity: 0;
    transition: opacity 0.15s;
}

.fq-card--selected .fq-card-check svg { opacity: 1; }

/* Overig textbox */
.fq-overig-wrap {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-bottom: 0;
}

.fq-overig-wrap--visible {
    max-height: 280px;
    opacity: 1;
    margin-bottom: 16px;
}

.fq-overig-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.4;
    margin-bottom: 6px;
}

.fq-overig-input {
    width: 100%;
}

.fq-overig-wrap .form-input.fq-overig-input[aria-invalid="true"] {
    border-color: #f87171;
}

.fq-char-count {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    text-align: right;
    margin: 6px 0 0;
    line-height: 1.35;
}

.fq-char-count--full {
    color: #b45309;
}

.fq-desc-field {
    margin-bottom: 4px;
}

.fq-desc-field textarea.form-input {
    margin-bottom: 0;
}

/* Step next button */
.fq-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--border);
    color: #bbb;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    cursor: not-allowed;
    transition: background 0.22s, color 0.22s, transform 0.18s;
    margin-top: 4px;
}

.fq-next:not(:disabled) {
    background: var(--green);
    color: var(--dark);
    cursor: pointer;
}

.fq-next:not(:disabled):hover {
    background: #80df67;
    transform: translateY(-1px);
}

/* Date picker — block spacing matches .fq-grid margin-bottom before Volgende */
.fq-step-date-block {
    margin-bottom: 20px;
}

.fq-date-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fq-date-wrap .form-input.fq-date {
    flex: 0 0 auto;
    width: auto;
    min-width: 12.5rem;
    max-width: 100%;
}

.fq-date-check {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.fq-date-check.fq-date-ok { opacity: 1; }

.fq-date-check svg {
    width: 18px;
    height: 18px;
    stroke: var(--green);
}

.fq-date-picker-slot {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

/*
 * iOS Safari does not open the date UI when the input is clipped to 1px or when only
 * showPicker()/focus() is used from a separate button. The native input must receive
 * the actual tap (full hit target, non-zero opacity).
 */
.fq-date-picker-native {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 48px;
    opacity: 0.03;
    -webkit-tap-highlight-color: transparent;
}

.fq-date-cal-facade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    box-sizing: border-box;
}

.fq-date-cal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}

.fq-date-cal-btn:hover {
    border-color: var(--green);
    background: #fafafa;
}

.fq-date-cal-btn:focus-visible {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(114,213,91,0.12);
}

.fq-date-cal-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--dark);
}

.fq-date-error {
    font-size: 13px;
    font-weight: 500;
    color: #b91c1c;
    line-height: 1.45;
    margin: 10px 0 0;
    max-width: 420px;
}

.fq-date-error[hidden] {
    display: none !important;
}

.form-input.fq-date[aria-invalid="true"] {
    border-color: #f87171;
}

/* Inline field errors (contact email/phone, same look as date) */
.fq-field-error {
    font-size: 13px;
    font-weight: 500;
    color: #b91c1c;
    line-height: 1.45;
    margin: 8px 0 0;
    max-width: 420px;
}

.fq-field-error[hidden] {
    display: none !important;
}

.fq-contact-field .form-input[aria-invalid="true"] {
    border-color: #f87171;
}

/* Eligibility check */
.funnel-check {
    display: none;
    margin-bottom: 48px;
}

.funnel-check--visible {
    display: block;
    animation: fqReveal 0.5s ease forwards;
}

.funnel-check-pass {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(114,213,91,0.1);
    border: 1.5px solid rgba(114,213,91,0.3);
    border-radius: 12px;
}

.funnel-check-pass-body {
    flex: 1;
    min-width: 0;
}

.funnel-check-pass-headline {
    font-size: 15px;
    font-weight: 500;
    color: #2a5a1e;
    line-height: 1.45;
    margin: 0 0 12px;
}

.funnel-check-pass-fact {
    font-size: 14px;
    font-weight: 500;
    color: #2a5a1e;
    line-height: 1.55;
    margin: 0 0 6px;
}

.funnel-check-pass-source {
    font-size: 11px;
    font-weight: 400;
    color: rgba(42, 90, 30, 0.55);
    line-height: 1.45;
    margin: 0 0 12px;
}

.funnel-check-pass-cta {
    font-size: 14px;
    font-weight: 600;
    color: #2a5a1e;
    line-height: 1.5;
    margin: 0;
}

/* Author `display` must not beat the HTML `hidden` attribute (same issue as success overlay) */
.funnel-check-pass[hidden],
.funnel-check-fail[hidden] {
    display: none !important;
}

.funnel-check-pass svg {
    width: 28px;
    height: 28px;
    stroke: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.funnel-check-fail {
    text-align: center;
    padding: 32px 24px;
    background: rgba(220,38,38,0.06);
    border: 1.5px solid rgba(220,38,38,0.2);
    border-radius: 12px;
}

.funnel-check-fail > svg {
    width: 32px;
    height: 32px;
    stroke: #dc2626;
    margin-bottom: 12px;
}

.funnel-check-fail > p:first-of-type {
    font-size: 17px;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 8px;
}

.funnel-check-fail-sub {
    font-size: 14px;
    font-weight: 300;
    color: #888;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto 20px;
}

.funnel-check-fail-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.18s;
}

.funnel-check-fail-link:hover { color: var(--dark); }

/* Shared form input (used by funnel + contact form) */
.form-input {
    flex: 1;
    padding: 15px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'Pogonia', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.form-input::placeholder { color: #bbb; font-weight: 300; }

.form-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(114,213,91,0.12);
}

textarea.form-input {
    width: 100%;
    resize: vertical;
    min-height: 140px;
}

input[type="date"].form-input {
    appearance: none;
    -webkit-appearance: none;
}

/* Contact form — 2×2 grid so email/phone match name column widths */
.fq-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.fq-contact-field {
    min-width: 0;
}

.fq-contact-grid .form-input {
    min-width: 0;
    width: 100%;
}

/* Preference pills */
.fq-pref-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin: 20px 0 12px;
}

.fq-pref-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.fq-pref-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    background: var(--white);
    cursor: pointer;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark);
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}

.fq-pref-pill:hover {
    border-color: #ccc;
    background: #fafafa;
}

.fq-pref-pill--selected {
    border-color: var(--green);
    background: var(--green-light);
    box-shadow: 0 0 0 1px var(--green);
}

.fq-pref-pill svg { width: 16px; height: 16px; }

/* Funnel privacy note (block text; flex only if a checkbox is added) */
.fq-privacy {
    font-size: 13px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin: 8px 0 20px;
}

.fq-privacy:has(input) {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.fq-privacy input {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--green);
    cursor: pointer;
}

.fq-privacy-link {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
}

.fq-privacy-link:hover {
    text-decoration: underline;
}

/* Error message */
.fq-error {
    font-size: 13px;
    font-weight: 500;
    color: #dc2626;
    background: #fef2f2;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 12px;
}

/* Submit button */
.fq-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--border);
    color: #bbb;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 36px;
    border: none;
    border-radius: 10px;
    cursor: not-allowed;
    transition: background 0.22s, color 0.22s, transform 0.18s;
    width: 100%;
    justify-content: center;
}

.fq-submit:not(:disabled) {
    background: var(--green);
    color: var(--dark);
    cursor: pointer;
}

.fq-submit:not(:disabled):hover {
    background: #80df67;
    transform: translateY(-1px);
}

/* Trust badges */
.funnel-trust {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
}

.funnel-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.funnel-trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.funnel-trust-icon svg {
    width: 13px;
    height: 13px;
    stroke: var(--dark);
}

.funnel-trust-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.funnel-trust-item strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.funnel-trust-item span {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.45;
}

/* Mini FAQ — overflow-anchor avoids scroll “twitch” when height changes */
.funnel-mini-faq {
    overflow-anchor: none;
}

.funnel-mini-faq h3 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
}

.fmf-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    overflow-anchor: none;
    transition: border-color 0.2s;
}

.fmf-item:last-child { border-bottom: none; }

.fmf-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-align: left;
    transition: color 0.18s;
}

.fmf-trigger:hover { color: var(--white); }
.fmf-item--open .fmf-trigger { color: var(--white); }

.fmf-trigger-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: rotate(0deg);
    transition: background 0.25s, transform 0.25s;
}

.fmf-item--open .fmf-trigger-icon {
    background: var(--green);
    transform: rotate(45deg);
}

.fmf-trigger-icon svg { width: 12px; height: 12px; stroke: rgba(255,255,255,0.5); }
.fmf-item--open .fmf-trigger-icon svg { stroke: var(--dark); }

.fmf-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
    min-height: 0;
}

.fmf-item--open .fmf-body { grid-template-rows: 1fr; }

.fmf-body-inner {
    overflow: hidden;
    min-height: 0;
}

.fmf-body-inner p {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    padding: 0 0 14px;
}

/* Success overlay */
.funnel-success {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
    background: var(--white);
    align-items: center;
    justify-content: center;
}

.funnel-success--visible {
    display: flex;
    animation: fqReveal 0.4s ease;
}

.funnel-success-inner {
    text-align: center;
    max-width: 400px;
    padding: 32px;
}

.funnel-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.funnel-success h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.funnel-success p {
    font-size: 15px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Placeholder (other situaties) */
.funnel-placeholder {
    text-align: center;
    padding: 80px 24px;
}

.funnel-placeholder h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.funnel-placeholder p {
    font-size: 15px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Funnel-specific responsive */
@media (max-width: 900px) {
    .funnel-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .funnel-sidebar {
        order: -1;
        position: static;
    }
    .funnel-sidebar-inner {
        border-radius: 14px;
        padding: 24px 20px;
    }
    .funnel-sidebar-title { font-size: 19px; }
    .funnel-trust {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }
    .funnel-trust-item {
        flex: 1;
        min-width: 180px;
    }
    .funnel-mini-faq { display: none; }
    .funnel-sidebar-divider { display: none; }
}

@media (max-width: 600px) {
    .fq-grid { grid-template-columns: 1fr; }
    .fq-contact-grid { grid-template-columns: 1fr; }
    .funnel-trust { flex-direction: column; gap: 14px; }
    .funnel-trust-item { min-width: auto; }
    .fq-pref-pills { flex-direction: column; }
    .fq-pref-pill { justify-content: center; }
}

@media (max-width: 400px) {
    .funnel-q-title { font-size: 18px; }
    .fq-card { padding: 11px 12px; gap: 10px; }
    .fq-card-icon { width: 32px; height: 32px; }
    .fq-card-label { font-size: 13px; }
}


/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES  (algemene-voorwaarden.html, privacybeleid.html)
   ═══════════════════════════════════════════════════════════════ */
.legal-header {
    background: var(--dark2);
    height: 72px;
    padding: 0 clamp(20px, 4vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.legal-header a.logo img { height: 28px; display: block; }

.legal-back {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.18s;
}

.legal-back:hover { color: var(--white); }

.legal-main {
    flex: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 48px clamp(20px, 4vw, 32px) 64px;
    width: 100%;
}

.legal-main h1 {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.15;
}

.legal-version,
.legal-updated {
    font-size: 13px;
    color: var(--muted-text);
    margin-bottom: 36px;
}

.legal-main h2 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 32px 0 14px;
    line-height: 1.3;
}

.legal-main h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin: 22px 0 10px;
}

.legal-main p,
.legal-main li {
    font-size: 15px;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 14px;
}

.legal-main ul,
.legal-main ol {
    padding-left: 1.35em;
    margin-bottom: 14px;
}

.legal-main li { margin-bottom: 8px; }
.legal-main ol ol { list-style-type: lower-alpha; margin-top: 8px; }

.legal-main a {
    color: var(--green);
    font-weight: 500;
    text-decoration: none;
}

.legal-main a:hover { text-decoration: underline; }

.legal-footer {
    border-top: 1px solid var(--line);
    padding: 24px clamp(20px, 4vw, 64px);
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--muted-text);
}

.legal-footer a {
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
}

.legal-footer a:hover { color: var(--green); }


/* ═══════════════════════════════════════════════════════════════
   SITUATION PAGE  (verkeersongeval.html)
   ═══════════════════════════════════════════════════════════════ */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    min-height: 50px;
    padding: 12px 22px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
    color: var(--white);
    font-family: 'Pogonia', system-ui, sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s, transform 0.18s, color 0.18s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}

.page-situation .btn-secondary {
    border-color: rgba(34,34,34,0.12);
    background: #fff;
    color: var(--dark);
}

.page-situation .btn-secondary:hover {
    background: #f7f7f7;
    border-color: rgba(34,34,34,0.18);
}

.situation-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 22%, rgba(114,213,91,0.16), transparent 32%),
        linear-gradient(135deg, #282828 0%, #1c1c1c 100%);
    padding: clamp(56px, 8vw, 92px) clamp(24px, 5vw, 80px) 72px;
}

.situation-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.45));
    pointer-events: none;
}

.situation-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 380px);
    gap: 42px;
    align-items: center;
}

.situation-hero-copy {
    max-width: 680px;
    min-width: 0;
}

.situation-hero-copy h1 {
    font-size: clamp(38px, 5.5vw, 64px);
    line-height: 1.03;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 22px;
}

.situation-hero-copy h1 em {
    font-style: normal;
    color: var(--green);
}

.situation-hero-lead {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.72);
    max-width: 700px;
    margin-bottom: 24px;
}

.situation-hero-points {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 34px;
}

.situation-hero-points li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
}

.situation-hero-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.48em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(114,213,91,0.12);
}

.situation-hero-note {
    margin-top: 16px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
}

.situation-hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 22px;
    padding: 28px 28px 26px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.22);
    backdrop-filter: blur(10px);
    min-width: 0;
}

.situation-hero-card-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    color: rgba(114,213,91,0.78);
    margin-bottom: 18px;
}

.situation-case-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.situation-case-list li {
    padding: 0 0 12px 22px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.84);
    font-size: 14px;
    line-height: 1.55;
}

.situation-case-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.situation-inline-cta {
    display: inline-flex;
    margin-top: 22px;
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.situation-inline-cta:hover {
    text-decoration: underline;
}

.situation-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 84px clamp(24px, 5vw, 80px);
}

.situation-section-alt {
    max-width: none;
    background: #fbfbfb;
}

.situation-section-alt > * {
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(24px, 5vw, 80px);
    padding-right: clamp(24px, 5vw, 80px);
}

.situation-section-dark {
    max-width: none;
    background: var(--dark2);
}

.situation-section-dark > * {
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(24px, 5vw, 80px);
    padding-right: clamp(24px, 5vw, 80px);
}

/* Head spans the content column; h2/p cap line length (narrow max-width on this
   block centered it under full-bleed alt/dark sections). */
.situation-section-head {
    margin-bottom: 38px;
}

.situation-section-head h2 {
    max-width: 760px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
}

.situation-section-head p {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted-text);
}

.situation-section-head-dark h2 {
    color: var(--white);
}

.situation-section-head-dark p {
    color: rgba(255,255,255,0.62);
}

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

.situation-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 34px rgba(0,0,0,0.04);
}

.situation-card h3 {
    font-size: 20px;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 12px;
}

.situation-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted-text);
}

.situation-card-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 16px;
    background: rgba(114,213,91,0.10);
    color: var(--green);
}

.situation-card-icon svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.situation-card-dark {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    box-shadow: none;
}

.situation-card-dark h3 {
    color: var(--white);
}

.situation-card-dark p {
    color: rgba(255,255,255,0.62);
}

.situation-cta-band {
    margin-top: 34px;
    padding: 24px 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(114,213,91,0.10), rgba(114,213,91,0.03));
    border: 1px solid rgba(114,213,91,0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.situation-cta-band h3 {
    font-size: 24px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 8px;
}

.situation-cta-band p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted-text);
    max-width: 620px;
}

.situation-steps-list {
    list-style: none;
    counter-reset: situation-step;
    display: grid;
    gap: 18px;
}

.situation-steps-list li {
    counter-increment: situation-step;
    position: relative;
    padding: 22px 24px 22px 74px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.situation-steps-list li::before {
    content: counter(situation-step);
    position: absolute;
    left: 24px;
    top: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--green);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.situation-steps-list strong,
.situation-steps-list span {
    display: block;
}

.situation-steps-list strong {
    font-size: 16px;
    line-height: 1.45;
    color: var(--dark);
    margin-bottom: 5px;
}

.situation-steps-list span {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--muted-text);
}

.situation-damage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.situation-damage-col {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
}

.situation-damage-col h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 16px;
}

.situation-damage-col ul {
    padding-left: 1.2em;
}

.situation-damage-col li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted-text);
}

.situation-faq {
    display: grid;
    gap: 14px;
}

.page-situation .faq-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.page-situation .faq-trigger {
    width: 100%;
    padding: 22px;
    background: #fff;
}

.page-situation .faq-trigger-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.page-situation .faq-body-inner {
    padding: 0 22px 22px;
}

.page-situation .faq-body-inner p {
    padding: 0;
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--muted-text);
}

.situation-final-cta {
    padding: 0 clamp(24px, 5vw, 80px) 84px;
}

.situation-final-cta-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 24px;
    background: linear-gradient(135deg, #252525 0%, #1c1c1c 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.situation-final-cta-inner h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    margin-bottom: 12px;
}

.situation-final-cta-inner p {
    max-width: 700px;
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
}

.situation-final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — LARGE TABLETS & SMALL DESKTOPS  (max-width: 1024px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .sit-panel.active {
        column-gap: 40px;
    }

    .hero-visual {
        right: clamp(32px, 6vw, 100px);
        width: min(38%, 380px);
    }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLETS  (max-width: 900px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-visual { display: none; }

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

    .card-body { max-width: 75%; }

    .situation-grid-3,
    .situation-damage-grid {
        grid-template-columns: 1fr;
    }

    .situation-hero-inner,
    .situation-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .situation-hero-inner,
    .situation-final-cta-inner,
    .situation-cta-band {
        display: grid;
    }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL TABLETS  (max-width: 820px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 820px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

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


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE BREAKPOINT  (max-width: 768px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Navbar: hamburger menu */
    .navbar {
        height: 72px;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--dark2);
        flex-direction: column;
        padding: 8px 24px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 16px 48px rgba(0,0,0,0.25);
        z-index: 199;
    }

    .navbar.open .navbar-menu {
        display: flex;
    }

    .navbar-links {
        flex-direction: column;
        gap: 0;
    }

    .navbar-links li { list-style: none; }

    .navbar-links a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .navbar-links a::after { display: none; }

    .navbar-cta {
        margin-top: 16px;
        text-align: center;
        width: 100%;
        display: block;
        padding: 14px 22px;
        font-size: 14.5px;
    }

    #home, #voordelen, #situaties, #over-ons, #ervaringen, #contact {
        scroll-margin-top: 80px;
    }

    body.page-situation .situation-section-head[id],
    body.page-situation .situation-hero-inner#home {
        scroll-margin-top: calc(72px + 20px);
    }

    /* Hero adjustments */
    .hero {
        min-height: auto;
        padding: 48px clamp(20px, 5vw, 40px) 120px;
    }

    .hero-content {
        margin-left: 0;
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(30px, 7vw, 42px);
    }

    .hero-sub {
        max-width: 100%;
        font-size: 14.5px;
    }

    .hero-badge {
        font-size: 10.5px;
        letter-spacing: 1.2px;
    }

    /* Cards */
    .cards-section {
        margin-top: -56px;
    }

    /* Situations: stack to single column */
    .sit-panel.active {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 0;
    }

    .sit-panel-intro {
        grid-column: 1;
        grid-row: auto;
    }

    .sit-steps {
        grid-column: 1;
        grid-row: auto;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .sit-cta-row {
        grid-column: 1;
        grid-row: auto;
    }

    .sit-faq {
        grid-column: 1;
    }

    .situations-section {
        padding: 64px clamp(20px, 5vw, 40px) 64px;
    }

    .situations-header {
        margin-bottom: 32px;
    }

    .sit-tabs-wrap {
        margin-bottom: 32px;
    }

    /* About */
    .about-section {
        padding: 56px clamp(20px, 5vw, 40px) 56px;
    }

    .about-layout {
        gap: 18px;
    }

    .about-header h2 {
        max-width: none;
    }

    /* Reviews */
    .reviews-section {
        padding: 64px clamp(20px, 5vw, 40px) 72px;
    }

    /* Contact */
    .contact-section {
        padding: 64px clamp(20px, 5vw, 40px) 80px;
    }

    /* Footer */
    .site-footer {
        padding: 48px clamp(20px, 5vw, 40px) 28px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-directory {
        padding: 0 0 34px;
    }

    .footer-top {
        padding-top: 40px;
    }

    .footer-directory-head {
        margin-bottom: 18px;
    }

    .footer-directory-group {
        padding: 18px 18px;
    }

    /* Legal pages */
    .legal-main {
        padding: 32px clamp(16px, 4vw, 24px) 48px;
    }

    .legal-main h2 {
        margin: 24px 0 10px;
    }

    .situation-hero {
        padding-top: 42px;
        padding-bottom: 48px;
    }

    .situation-hero-copy h1 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .situation-hero-lead {
        font-size: 15.5px;
    }

    .situation-section,
    .situation-final-cta {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    body.page-situation .situation-hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    body.page-situation .situation-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    body.page-situation .situation-section-alt > *,
    body.page-situation .situation-section-dark > * {
        padding-left: 0;
        padding-right: 0;
    }

    body.page-situation .situation-section-alt > .situation-cta-band,
    body.page-situation .situation-section-dark > .situation-cta-band {
        padding-left: 22px;
        padding-right: 22px;
    }

    body.page-situation .situation-final-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .situation-card,
    .situation-damage-col,
    .situation-cta-band,
    .situation-final-cta-inner,
    .situation-hero-card {
        padding: 22px;
    }

    .situation-steps-list li {
        padding: 20px 18px 20px 64px;
    }

    .situation-steps-list li::before {
        left: 18px;
    }

    .situation-final-cta-actions {
        justify-content: flex-start;
    }

    .page-situation .btn-secondary,
    .page-situation .btn-primary,
    .page-situation .hero-actions a {
        width: 100%;
    }

    .page-situation .hero-actions {
        width: 100%;
    }

    .page-situation .hero-actions a {
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONES  (max-width: 600px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    /* Situation tabs: horizontal scroll on small screens */
    .sit-tabs-wrap {
        position: relative;
    }

    .sit-tabs-scroll-hint {
        display: flex;
        align-items: center;
        position: absolute;
        top: 0;
        bottom: 4px;
        width: 40px;
        pointer-events: none;
        z-index: 2;
        opacity: 0;
        transition: opacity 0.22s ease;
    }

    .sit-tabs-wrap--scroll-left .sit-tabs-scroll-hint--left,
    .sit-tabs-wrap--scroll-right .sit-tabs-scroll-hint--right {
        opacity: 1;
    }

    .sit-tabs-scroll-hint--left {
        left: 0;
        justify-content: flex-start;
        padding-left: 2px;
        background: linear-gradient(to right, var(--white) 35%, transparent);
    }

    .sit-tabs-scroll-hint--right {
        right: 0;
        justify-content: flex-end;
        padding-right: 2px;
        background: linear-gradient(to left, var(--white) 35%, transparent);
    }

    .sit-tabs-scroll-hint__icon {
        color: var(--dark);
        opacity: 0.5;
        flex-shrink: 0;
    }

    @media (prefers-reduced-motion: reduce) {
        .sit-tabs-scroll-hint {
            transition: none;
        }
    }

    .sit-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
        gap: 8px;
    }

    .sit-tabs::-webkit-scrollbar { display: none; }

    .sit-tab {
        flex-shrink: 0;
        font-size: 13px;
        padding: 10px 16px;
    }

    .sit-panel-intro h3 {
        font-size: 19px;
    }

    .sit-panel-intro p {
        font-size: 13.5px;
    }

    .step-body h4 { font-size: 13.5px; }
    .step-body p { font-size: 12.5px; }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Cards */
    .cards-grid {
        max-width: 100%;
    }

    .card { min-height: auto; }
    .card-body { max-width: 70%; }

    /* FAQ */
    .faq-trigger {
        padding: 14px 14px;
        gap: 12px;
    }

    .faq-trigger-text { font-size: 14px; }

    .faq-body-inner p {
        font-size: 13px;
        padding: 4px 14px 16px;
    }

    .faq-more-toggle {
        font-size: 13px;
        margin-top: 12px;
    }

    /* Reviews */
    .reviews-grid {
        max-width: 100%;
    }

    .review-card {
        padding: 22px 18px 20px;
    }

    /* Hero */
    .hero {
        padding: 40px 20px 100px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .situation-section-head h2,
    .situation-final-cta-inner h2 {
        font-size: 26px;
    }

    .situation-hero-copy h1 {
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .situation-steps-list strong,
    .page-situation .faq-trigger-text,
    .situation-card h3,
    .situation-damage-col h3,
    .situation-cta-band h3 {
        font-size: 18px;
    }

    .situation-hero-points li,
    .situation-card p,
    .situation-steps-list span,
    .situation-damage-col li,
    .page-situation .faq-body-inner p,
    .situation-cta-band p,
    .situation-section-head p,
    .situation-final-cta-inner p {
        font-size: 14px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — VERY SMALL PHONES  (max-width: 400px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-sub {
        font-size: 13.5px;
        margin-bottom: 28px;
    }

    .hero-badge {
        font-size: 9.5px;
        padding: 5px 10px;
        margin-bottom: 18px;
    }

    .btn-primary {
        font-size: 13.5px;
        padding: 13px 20px;
    }

    .btn-secondary {
        font-size: 13.5px;
        padding: 13px 20px;
    }

    .navbar-cta {
        font-size: 13px;
    }

    .situations-header h2,
    .reviews-header h2,
    .about-header h2,
    .contact-header h2 {
        font-size: 24px;
    }

    .sit-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .sit-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .sit-cta-row .btn-primary,
    .sit-cta-buttons .btn-primary,
    .sit-cta-buttons .btn-secondary {
        justify-content: center;
    }

    .sit-note {
        justify-content: center;
    }

    /* Legal */
    .legal-header {
        height: 60px;
    }

    .legal-back {
        font-size: 12.5px;
    }

    .legal-main p,
    .legal-main li {
        font-size: 14px;
    }

    .legal-main h2 {
        font-size: 15.5px;
    }
}
