*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1D234F; --navy-2: #2A3164; --navy-3: #343b78;
  --orange: #EF8000; --orange-2: #ff9a2e; --orange-hover: #D97200;
  --white: #FFFFFF; --bg: #FAFBFC; --gray-50: #F4F5F7; --gray-100: #E2E4E9;
  --gray-200: #cdd1da; --gray-400: #8a8f9e; --gray-600: #5a5e6e;
  --text: #1a1a2e; --green: #059669; --red: #dc2626;
  --radius: 12px; --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(29,35,79,0.06);
  --shadow: 0 6px 20px rgba(29,35,79,0.08);
  --shadow-lg: 0 16px 48px rgba(29,35,79,0.14);
}
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body { font-family: 'Poppins', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; max-width: 100vw; position: relative; }
/* Text wrapping zonder hyphenation (geen afgekapte woorden) */
h1, h2, h3, p { overflow-wrap: break-word; word-wrap: break-word; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
/* iOS auto-zoom voorkomen bij input focus */
input, select, textarea { font-size: 16px !important; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(226,228,233,0.6);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-brand { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: 0.3px; }
.nav-brand img { width: 36px; height: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--gray-600); transition: color .2s; }
.nav-links a:hover { color: var(--navy); }
/* Inzichten dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-drop-trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-caret { width: 13px; height: 13px; opacity: .75; transition: transform .25s; }
.nav-dropdown:hover .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); margin-top: 14px; min-width: 292px; background: white; border: 1px solid var(--gray-100); border-radius: 14px; box-shadow: 0 20px 50px rgba(29,35,79,0.16); padding: 8px; opacity: 0; visibility: hidden; transition: opacity .22s, transform .22s; z-index: 200; }
.nav-dropdown-menu::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a { display: block; padding: 10px 14px; border-radius: 10px; font-size: 14px; color: var(--gray-600); font-weight: 500; line-height: 1.35; }
.nav-dropdown-menu a:hover { background: var(--gray-50); color: var(--navy); }
.nav-drop-all { color: var(--orange) !important; font-weight: 600 !important; margin-top: 2px; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 10px; transition: transform .15s, box-shadow .2s, background .2s; white-space: nowrap; }
.btn-primary { background: var(--orange); color: white; box-shadow: 0 4px 12px rgba(29,35,79,0.12); }
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-secondary { background: white; color: var(--navy); border: 1.5px solid var(--gray-100); }
.btn-secondary:hover { border-color: var(--navy); }
.btn-ghost { color: var(--navy); padding: 10px 0; }
.nav-toggle { display: none; padding: 10px; }
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--navy); }

/* ─── HERO ─── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 50%, var(--navy-3) 100%);
  color: white; padding: 80px 0 120px;
}
.hero::before { content: ''; position: absolute; top: -250px; right: -200px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(239,128,0,0.18), transparent 60%); }
.hero::after { content: ''; position: absolute; bottom: -200px; left: -150px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(239,128,0,0.08), transparent 60%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.hero-inner > * { min-width: 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; padding: 6px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; margin-bottom: 24px; color: rgba(255,255,255,0.9); letter-spacing: 0.5px; }
.hero-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 8px var(--orange); }
h1.hero-title { font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; line-height: 1.15; letter-spacing: -0.6px; margin-bottom: 22px; text-wrap: balance; word-break: normal; overflow-wrap: break-word; hyphens: manual; }
.hero-title .accent { color: var(--orange); }
.hero-sub { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,0.78); margin-bottom: 36px; max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-ctas .btn-secondary { background: rgba(255,255,255,0.06); color: white; border-color: rgba(255,255,255,0.2); }
.hero-ctas .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }
.hero-checks { display: flex; gap: 20px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; }
.hero-check { display: flex; align-items: center; gap: 6px; }
.hero-check svg { width: 16px; height: 16px; stroke: var(--orange); }

/* Hero side mockup (3D-rotated, brochure-stijl) */
.hero-mockup {
  position: relative;
  transform: perspective(1400px) rotateY(-8deg) rotateX(4deg) rotateZ(1deg);
}
.mockup-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #f1f3f5; border-bottom: 1px solid #e2e4e9; }
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup-dot.r { background: #ff5f57; } .mockup-dot.y { background: #febc2e; } .mockup-dot.g { background: #28c840; }
.mockup-url { flex: 1; text-align: center; font-size: 11px; color: var(--gray-400); }
.mockup-body { display: flex; min-height: 380px; font-family: 'Poppins', sans-serif; }
.mm-side { width: 150px; background: var(--navy); padding: 16px 12px; flex-shrink: 0; color: white; }
.mm-brand { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; margin-bottom: 18px; }
.mm-brand img { width: 22px; height: 22px; }
.mm-nav { padding: 8px 10px; border-radius: 6px; margin-bottom: 2px; font-size: 11.5px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px; }
.mm-nav.active { background: rgba(239,128,0,0.18); color: var(--orange); font-weight: 600; }
.mm-nav svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: 0.85; }
.mm-main { flex: 1; padding: 18px; background: #f8fafc; }
.mm-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.mm-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px; }
.mm-kpi { background: white; border: 1px solid #e2e8f0; border-radius: 7px; padding: 10px 8px; text-align: left; }
.mm-kpi-n { font-size: 18px; font-weight: 800; line-height: 1; margin-bottom: 3px; }
.mm-kpi-n.navy { color: var(--navy); } .mm-kpi-n.red { color: var(--red); } .mm-kpi-n.orange { color: var(--orange); } .mm-kpi-n.green { color: var(--green); }
.mm-kpi-l { font-size: 8px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; }
.mm-row { background: white; border: 1px solid #e2e8f0; border-radius: 7px; padding: 12px; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; font-size: 10px; }
.mm-row-ic { width: 22px; height: 22px; border-radius: 5px; background: #f1f5f9; flex-shrink: 0; }
.mm-row-info { flex: 1; }
.mm-row-name { font-weight: 600; color: var(--text); font-size: 10.5px; }
.mm-row-meta { color: var(--gray-600); font-size: 8.5px; margin-top: 1px; }
.mm-row-tag { font-size: 8.5px; font-weight: 600; padding: 2px 6px; border-radius: 3px; }
.mm-row-tag.red { background: #fef2f2; color: var(--red); }
.mm-row-tag.orange { background: #fff7ed; color: var(--orange); }
.mm-row-tag.green { background: #ecfdf5; color: var(--green); }

.hero-floating-card {
  position: absolute; bottom: -30px; left: -60px;
  background: white; border-radius: 12px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  transform: rotate(-3deg); z-index: 3;
}
.hfc-ic { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--green), #10b981); display: flex; align-items: center; justify-content: center; color: white; }
.hfc-ic svg { width: 20px; height: 20px; stroke: white; }
.hfc-text { font-size: 13px; }
.hfc-text strong { color: var(--navy); display: block; font-weight: 700; }
.hfc-text span { color: var(--gray-600); font-size: 11px; }

/* Gradient text */
.gradient-text { background: linear-gradient(135deg, #FFB800 0%, var(--orange) 45%, #D94500 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--orange); /* fallback wanneer gradient niet rendert */ }
@supports not (background-clip: text) { .gradient-text { background: none !important; -webkit-text-fill-color: var(--orange) !important; color: var(--orange) !important; } }

/* Hero "vs" badge */
.hero-vs { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(239,128,0,0.3); border-radius: 999px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); margin-top: 24px; letter-spacing: 0.3px; }
.hero-vs strong { color: var(--orange); }

/* ─── STATS STRIP ─── */
.stats { background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy-2) 100%); padding: 80px 0; color: white; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); }
.stats::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(239,128,0,0.06), transparent 60%); pointer-events: none; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; z-index: 2; }
.stat-card { text-align: center; padding: 0 8px; }
.stat-num { font-size: 68px; font-weight: 800; line-height: 1; background: linear-gradient(135deg, #FFB800 0%, var(--orange) 60%, #D94500 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -3px; }
.stat-num .unit { font-size: 32px; font-weight: 700; margin-left: 2px; vertical-align: text-top; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.85); margin-top: 12px; font-weight: 600; }
.stat-sub { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ─── COMPARISON SECTION ─── */
.comparison { background: var(--bg); }
.comp-wrap { max-width: 920px; margin: 0 auto; }
.comp-table { background: white; border-radius: 20px; box-shadow: 0 24px 60px rgba(29,35,79,0.1); border: 1px solid var(--gray-100); overflow: hidden; }
.comp-row { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr); align-items: center; padding: 20px 28px; border-bottom: 1px solid var(--gray-100); font-size: 15px; }
.comp-row:last-child { border-bottom: none; }
.comp-head { background: var(--gray-50); padding: 22px 28px; }
.comp-head .comp-cell { font-weight: 700; color: var(--navy); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; text-align: center; }
.comp-head .comp-us { background: var(--navy); color: white; border-radius: 12px; padding: 14px; box-shadow: 0 6px 18px rgba(29,35,79,0.2); position: relative; }
.comp-head .comp-us::after { content: none; }
.comp-head .comp-us .comp-brand { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; }
.comp-head .comp-us img { width: 22px; height: 22px; }
.comp-feature { font-weight: 600; color: var(--text); }
.comp-feature small { display: block; font-weight: 400; color: var(--gray-600); font-size: 12px; margin-top: 2px; }
.comp-cell { text-align: center; font-size: 14px; overflow-wrap: break-word; hyphens: manual; }
.comp-us-cell { color: var(--green); font-weight: 800; background: rgba(5,150,105,0.08); border-left: 1px solid rgba(5,150,105,0.18); border-right: 1px solid rgba(5,150,105,0.18); align-self: stretch; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.comp-us-cell small { display: block; font-weight: 500; font-size: 10.5px; color: var(--gray-600); margin-top: 4px; line-height: 1.3; }
.comp-row.body .comp-us-cell { padding: 20px 8px; margin: -20px 0; border-bottom: 1px solid var(--gray-100); }
.comp-row.body:last-child .comp-us-cell { border-bottom: none; }
.comp-them { color: var(--gray-600); font-weight: 500; }
.comp-check { width: 22px; height: 22px; margin: 0 auto; display: block; }
.comp-x { width: 22px; height: 22px; margin: 0 auto; display: block; stroke: var(--gray-400); opacity: 0.7; }
.comp-note { text-align: center; font-size: 13px; color: var(--gray-400); margin-top: 22px; font-style: italic; }

/* ─── AUDIT READY SECTION ─── */
.audit { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%); color: white; position: relative; overflow: hidden; }
.audit::before { content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(239,128,0,0.12), transparent 60%); }
.audit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.audit h2.section-title { color: white; }
.audit .section-sub { color: rgba(255,255,255,0.78); }
.audit-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.audit-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }
.audit-badge svg { width: 14px; height: 14px; stroke: var(--orange); }
.audit-points { list-style: none; margin: 28px 0; }
.audit-points li { padding-left: 32px; position: relative; margin-bottom: 14px; font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.audit-points li::before { content: '✓'; position: absolute; left: 0; top: 4px; width: 22px; height: 22px; background: var(--orange); border-radius: 50%; color: white; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; line-height: 1; box-shadow: 0 2px 6px rgba(239,128,0,0.3); }

/* PDF mockup voor audit-sectie */
.audit-pdf-stack { position: relative; perspective: 1500px; }
.audit-pdf { background: white; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.4); transform-style: preserve-3d; transition: transform .4s; }
.audit-pdf.behind-2 { position: absolute; inset: 0; transform: translate(28px, 28px) rotate(4deg); opacity: 0.6; z-index: 1; }
.audit-pdf.behind-1 { position: absolute; inset: 0; transform: translate(14px, 14px) rotate(2deg); opacity: 0.85; z-index: 2; }
.audit-pdf.front { position: relative; z-index: 3; transform: rotate(-2deg); }
.audit-pdf-head { background: var(--navy); color: white; padding: 18px 24px; border-radius: 8px 8px 0 0; display: flex; align-items: center; justify-content: space-between; }
.audit-pdf-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; }
.audit-pdf-brand img { width: 26px; height: 26px; }
.audit-pdf-tag { background: var(--orange); color: white; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 6px; letter-spacing: 1px; }
.audit-pdf-body { padding: 26px 24px 28px; }
.audit-pdf-h1 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.audit-pdf-h2 { font-size: 12px; color: var(--gray-600); margin-bottom: 18px; }
.audit-pdf-meta { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; padding: 14px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); margin-bottom: 16px; }
.pdf-meta-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-400); }
.pdf-meta-value { font-size: 13px; font-weight: 700; color: var(--navy); margin-top: 2px; }
.pdf-meta-value.green { color: var(--green); font-weight: 800; }
.audit-pdf-rows { font-size: 11px; }
.audit-pdf-row { display: grid; grid-template-columns: 1.5fr 1fr 0.8fr; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--gray-50); align-items: center; }
.audit-pdf-row:last-child { border-bottom: none; }
.pdf-row-name { font-weight: 600; color: var(--text); }
.pdf-row-date { color: var(--gray-600); }
.pdf-row-status { font-weight: 700; font-size: 10px; padding: 4px 10px; border-radius: 5px; text-align: center; background: var(--green); color: white; box-shadow: 0 1px 3px rgba(22,163,74,0.25); }
.audit-pdf-footer { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--gray-100); font-size: 10px; color: var(--gray-400); display: flex; justify-content: space-between; }

/* Brochure: hoofdstuk-marker */
.chapter { display: flex; align-items: center; gap: 14px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); margin-bottom: 14px; }
.chapter-num { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-size: 26px; font-weight: 600; color: var(--orange); letter-spacing: 0; }
.chapter-line { flex: 1; height: 2px; background: linear-gradient(to right, var(--orange) 0%, rgba(239,128,0,0.4) 60%, transparent 100%); max-width: 80px; border-radius: 2px; }
.features .chapter, .pricing .chapter, .lead .chapter { color: var(--orange); }
.features .chapter-num, .pricing .chapter-num, .lead .chapter-num { color: var(--orange); }
.features .chapter-line, .pricing .chapter-line, .lead .chapter-line { background: linear-gradient(to right, var(--orange), transparent); }

/* ─── HERO WIDGET CLUSTER (zoals oude site) ─── */
@keyframes float1 { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-6px) rotate(-2deg)} }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(1deg)} 50%{transform:translateY(-7px) rotate(1deg)} }
@keyframes float3 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-5px) rotate(-1deg)} }
@keyframes float4 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float5 { 0%,100%{transform:translateY(0) rotate(2deg)} 50%{transform:translateY(-6px) rotate(2deg)} }
@keyframes float6 { 0%,100%{transform:translateY(0) rotate(-1.5deg)} 50%{transform:translateY(-7px) rotate(-1.5deg)} }
@keyframes float7 { 0%,100%{transform:translateY(0) rotate(1.5deg)} 50%{transform:translateY(-5px) rotate(1.5deg)} }

.widget-cluster { position: relative; z-index: 2; max-width: 1100px; margin: 56px auto 0; padding: 0 24px; }
.widget-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.widget-row + .widget-row { margin-top: 20px; gap: 16px; }
.w-card { background: white; border-radius: 14px; padding: 16px; box-shadow: 0 12px 28px rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.2); flex-shrink: 0; }

/* Compliance card */
.w-compliance { width: 170px; animation: float1 4s ease-in-out infinite; }
.w-comp-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.w-comp-ic { width: 28px; height: 28px; border-radius: 8px; background: #ecfdf5; display: flex; align-items: center; justify-content: center; }
.w-comp-ic svg { width: 14px; height: 14px; stroke: var(--green); }
.w-comp-badge { font-size: 10px; font-weight: 700; color: var(--green); background: #ecfdf5; padding: 2px 6px; border-radius: 4px; }
.w-comp-pct { font-size: 24px; font-weight: 800; color: #0f172a; line-height: 1; }
.w-comp-lbl { font-size: 11px; color: #94a3b8; margin-top: 2px; }

/* Chart card */
.w-chart { width: 340px; border-radius: 18px; padding: 20px; animation: float4 3.5s ease-in-out infinite; animation-delay: .5s; box-shadow: 0 16px 36px rgba(0,0,0,0.22); }
.w-chart-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.w-chart-title { font-size: 12px; font-weight: 600; color: #1e293b; }
.w-chart-tag { padding: 2px 8px; font-size: 10px; font-weight: 600; border-radius: 4px; background: rgba(239,128,0,0.1); color: var(--orange); }
.w-chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 64px; }
.w-chart-bar { flex: 1; border-radius: 4px 4px 0 0; background: #f1f5f9; }
.w-chart-bar.active { background: linear-gradient(to top, #D94500, var(--orange)); }
.w-chart-labels { display: flex; justify-content: space-between; margin-top: 8px; font-size: 9px; color: #94a3b8; }

/* Status card */
.w-status { width: 170px; animation: float2 4.5s ease-in-out infinite; animation-delay: .3s; }
.w-status-title { font-size: 11px; font-weight: 600; color: #334155; margin-bottom: 12px; }
.w-status-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.w-status-row:last-child { margin-bottom: 0; }
.w-status-left { display: flex; align-items: center; gap: 8px; }
.w-status-dot { width: 10px; height: 10px; border-radius: 50%; }
.w-status-dot.g { background: var(--green); } .w-status-dot.a { background: #f59e0b; } .w-status-dot.r { background: var(--red); }
.w-status-lbl { font-size: 11px; color: #475569; }
.w-status-n { font-size: 11px; font-weight: 700; color: #1e293b; }

/* iOS notification */
.w-notif { width: 230px; padding: 12px; border-radius: 18px; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); animation: float3 3.5s ease-in-out infinite; animation-delay: .8s; }
.w-notif-inner { display: flex; align-items: flex-start; gap: 10px; }
.w-notif-ic { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, #FFB800, var(--orange), #D94500); flex-shrink: 0; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(0,0,0,0.08); }
.w-notif-ic svg { width: 18px; height: 18px; fill: white; }
.w-notif-body { flex: 1; min-width: 0; }
.w-notif-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
.w-notif-brand { font-size: 10px; font-weight: 700; color: #1e293b; letter-spacing: 0.5px; }
.w-notif-time { font-size: 9px; color: #94a3b8; }
.w-notif-title { font-size: 11px; font-weight: 600; color: #334155; line-height: 1.3; }
.w-notif-msg { font-size: 10px; color: #64748b; line-height: 1.3; margin-top: 1px; }

/* Pill: smeerbeurt voltooid */
.w-pill { display: flex; align-items: center; gap: 10px; background: white; border-radius: 999px; padding: 9px 16px; box-shadow: 0 12px 28px rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.2); align-self: center; animation: float6 3s ease-in-out infinite; animation-delay: 1.2s; flex-shrink: 0; }
.w-pill-ic { width: 24px; height: 24px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.w-pill-ic svg { width: 13px; height: 13px; stroke: white; }
.w-pill-title { font-size: 11px; font-weight: 700; color: #1e293b; line-height: 1.2; }
.w-pill-meta { font-size: 9px; color: #94a3b8; line-height: 1.2; }

/* Machine detail */
.w-machine { width: 190px; padding: 14px; animation: float5 5s ease-in-out infinite; animation-delay: .2s; }
.w-mach-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.w-mach-pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.w-mach-name { font-size: 11px; font-weight: 700; color: #1e293b; }
.w-mach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 10px; }
.w-mach-grid .lbl { color: #94a3b8; }
.w-mach-grid .val { font-weight: 600; color: #334155; }
.w-mach-grid .val.red { color: var(--red); }

/* Monteurs card */
.w-monteurs { width: 150px; padding: 12px; animation: float7 4.5s ease-in-out infinite; animation-delay: .6s; }
.w-mont-head { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.w-mont-ic { width: 20px; height: 20px; border-radius: 50%; background: rgba(239,128,0,0.1); display: flex; align-items: center; justify-content: center; }
.w-mont-ic svg { width: 12px; height: 12px; stroke: var(--orange); }
.w-mont-lbl { font-size: 10px; color: #94a3b8; }
.w-mont-n { font-size: 20px; font-weight: 800; color: #0f172a; line-height: 1; }
.w-mont-avatars { display: flex; margin-top: 6px; }
.w-mont-avatar { width: 20px; height: 20px; border-radius: 50%; border: 2px solid white; font-size: 8px; font-weight: 700; color: white; display: flex; align-items: center; justify-content: center; margin-left: -6px; }
.w-mont-avatar:first-child { margin-left: 0; }

/* Fictional dashboard mockup (used elsewhere) */
.mockup-card {
  background: white; border-radius: 14px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
}
.mockup-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #f1f3f5; border-bottom: 1px solid #e2e4e9; }
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup-dot.r { background: #ff5f57; } .mockup-dot.y { background: #febc2e; } .mockup-dot.g { background: #28c840; }
.mockup-url { flex: 1; text-align: center; font-size: 11px; color: var(--gray-400); }
.mockup-body { display: flex; min-height: 380px; font-family: 'Poppins', sans-serif; }
.mm-side { width: 150px; background: var(--navy); padding: 16px 12px; flex-shrink: 0; color: white; }
.mm-brand { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; margin-bottom: 18px; }
.mm-brand img { width: 22px; height: 22px; }
.mm-nav { padding: 8px 10px; border-radius: 6px; margin-bottom: 2px; font-size: 11.5px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px; }
.mm-nav.active { background: rgba(239,128,0,0.18); color: var(--orange); font-weight: 600; }
.mm-nav svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: 0.85; }
.mm-main { flex: 1; padding: 18px; background: #f8fafc; }
.mm-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.mm-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px; }
.mm-kpi { background: white; border: 1px solid #e2e8f0; border-radius: 7px; padding: 10px 8px; text-align: left; }
.mm-kpi-n { font-size: 18px; font-weight: 800; line-height: 1; margin-bottom: 3px; }
.mm-kpi-n.navy { color: var(--navy); } .mm-kpi-n.red { color: var(--red); } .mm-kpi-n.orange { color: var(--orange); } .mm-kpi-n.green { color: var(--green); }
.mm-kpi-l { font-size: 8px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; }
.mm-row { background: white; border: 1px solid #e2e8f0; border-radius: 7px; padding: 12px; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; font-size: 10px; }
.mm-row-ic { width: 22px; height: 22px; border-radius: 5px; background: #f1f5f9; flex-shrink: 0; }
.mm-row-info { flex: 1; }
.mm-row-name { font-weight: 600; color: var(--text); font-size: 10.5px; }
.mm-row-meta { color: var(--gray-600); font-size: 8.5px; margin-top: 1px; }
.mm-row-tag { font-size: 8.5px; font-weight: 600; padding: 2px 6px; border-radius: 3px; }
.mm-row-tag.red { background: #fef2f2; color: var(--red); }
.mm-row-tag.orange { background: #fff7ed; color: var(--orange); }
.mm-row-tag.green { background: #ecfdf5; color: var(--green); }

.hero-floating-card {
  position: absolute; bottom: -30px; left: -60px;
  background: white; border-radius: 12px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  transform: rotate(-3deg); z-index: 3;
}
.hfc-ic { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--green), #10b981); display: flex; align-items: center; justify-content: center; color: white; }
.hfc-ic svg { width: 20px; height: 20px; stroke: white; }
.hfc-text { font-size: 13px; }
.hfc-text strong { color: var(--navy); display: block; font-weight: 700; }
.hfc-text span { color: var(--gray-600); font-size: 11px; }

/* ─── LOGO STRIP ─── */
.strip { background: var(--navy); padding: 44px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.strip-text { text-align: center; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.45); margin-bottom: 24px; }
.strip-row { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }
.strip-pill { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); padding: 7px 16px; border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; background: rgba(255,255,255,0.04); }

/* ─── SECTIONS ─── */
section.block { padding: 60px 0; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
h1.section-title, h2.section-title { font-size: 44px; font-weight: 800; line-height: 1.15; color: var(--navy); letter-spacing: -1px; margin-bottom: 18px; max-width: 720px; }
.section-sub { font-size: 18px; color: var(--gray-600); line-height: 1.65; max-width: 640px; margin-bottom: 56px; }

/* ─── FEATURES (dark, zoals oude site) ─── */
.features { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: white; position: relative; overflow: hidden; }
.features::before { content: ''; position: absolute; top: -200px; left: -150px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(239,128,0,0.08), transparent 60%); }
.features h2.section-title { color: white; position: relative; z-index: 2; }
.features .section-sub { color: rgba(255,255,255,0.7); position: relative; z-index: 2; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 2; }
.feat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform .25s, background .25s, border-color .25s; backdrop-filter: blur(10px); text-align: center; }
.feat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); border-color: rgba(239,128,0,0.35); }
.feat-icon { height: 60px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feat-icon svg { width: 52px; height: 52px; stroke: var(--orange); }
.feat-icon img { max-height: 60px; max-width: 60px; width: auto; height: auto; object-fit: contain; display: block; }
.feat-title { font-size: 19px; font-weight: 700; color: white; margin-bottom: 10px; }
.feat-desc { font-size: 14.5px; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ─── SHOWCASE ─── */
.showcase { background: var(--bg); }
.showcase-grid { display: grid; grid-template-columns: 0.95fr 1.15fr; gap: 64px; align-items: center; }
.showcase-list { list-style: none; margin-top: 32px; }
.showcase-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.showcase-list li:last-child { border-bottom: none; }
.sl-num { width: 32px; height: 32px; min-width: 32px; border-radius: 8px; background: var(--navy); color: var(--orange); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.sl-text strong { display: block; color: var(--navy); font-size: 15.5px; font-weight: 700; margin-bottom: 2px; }
.sl-text span { color: var(--gray-600); font-size: 13.5px; line-height: 1.55; }

/* Fictional dashboard mockup (showcase) */
.showcase-mockup { position: relative; }
.showcase-mockup .mockup-card { box-shadow: 0 30px 60px rgba(29,35,79,0.18); }
.showcase-mockup-mobile {
  position: absolute; bottom: -40px; right: -30px;
  width: 165px; height: 340px;
  background: #1a1a1a; border-radius: 24px; padding: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.ssm-screen { background: white; border-radius: 18px; height: 100%; overflow: hidden; position: relative; }
.ssm-island { width: 60px; height: 14px; background: #1a1a1a; border-radius: 8px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); z-index: 3; }
.ssm-content { padding: 32px 12px 12px; }
.ssm-greet { font-size: 11px; font-weight: 700; color: var(--navy); }
.ssm-day { font-size: 8.5px; color: var(--gray-600); margin-bottom: 10px; }
.ssm-stats { display: flex; gap: 4px; margin-bottom: 10px; }
.ssm-stat { flex: 1; background: #f8fafc; border-radius: 5px; padding: 6px 4px; text-align: center; }
.ssm-stat-n { font-size: 13px; font-weight: 800; line-height: 1; }
.ssm-stat-n.red { color: var(--red); } .ssm-stat-n.orange { color: var(--orange); } .ssm-stat-n.green { color: var(--green); }
.ssm-stat-l { font-size: 6px; color: var(--gray-600); margin-top: 2px; }
.ssm-btn { background: var(--orange); color: white; text-align: center; padding: 7px; border-radius: 6px; font-size: 9px; font-weight: 600; margin-bottom: 8px; }
.ssm-task { padding: 6px 4px; border-bottom: 1px solid #f1f5f9; display: flex; gap: 6px; align-items: center; }
.ssm-task-ic { width: 18px; height: 18px; background: #f1f5f9; border-radius: 4px; flex-shrink: 0; }
.ssm-task-info { flex: 1; }
.ssm-task-name { font-size: 8px; font-weight: 600; }
.ssm-task-meta { font-size: 6.5px; color: var(--gray-600); }

/* ─── HOW ─── */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-card { padding: 36px 32px; border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); position: relative; transition: transform .25s, box-shadow .25s; }
.how-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.how-num { font-size: 14px; font-weight: 800; color: var(--orange); margin-bottom: 14px; letter-spacing: 1px; text-transform: uppercase; }
.how-title { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.how-desc { font-size: 14.5px; color: var(--gray-600); line-height: 1.65; }

/* ─── PRICING ─── */
.pricing { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); color: white; }
.pricing h2.section-title { color: white; }
.pricing .section-sub { color: rgba(255,255,255,0.7); }
.pricing-card {
  background: white; color: var(--text); border-radius: var(--radius-lg);
  padding: 56px 48px; max-width: 760px; margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2); position: relative; overflow: hidden;
}
.pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--orange), var(--orange-2)); }
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.pc-label { font-size: 13px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pc-amount { font-size: 56px; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -2px; }
.pc-amount sub { font-size: 17px; font-weight: 500; color: var(--gray-600); }
.pc-setup { margin-top: 14px; font-size: 14px; color: var(--gray-600); }
.pc-setup strong { color: var(--navy); font-weight: 700; }
.pc-list { list-style: none; }
.pc-list li { padding: 8px 0 8px 28px; position: relative; font-size: 14.5px; color: var(--text); line-height: 1.55; }
.pc-list li::before { content: '✓'; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; background: var(--orange); border-radius: 50%; color: white; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; line-height: 1; }
.pc-list li::after { content: none; }
.pc-cta { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--gray-100); }
.pc-note { font-size: 13px; color: var(--gray-600); }

/* ─── QUOTES ─── */
.quotes { background: var(--bg); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card { background: white; border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--gray-100); display: flex; flex-direction: column; }
.quote-mark { font-size: 48px; line-height: 0.5; color: var(--orange); font-family: Georgia, serif; margin-bottom: 18px; display: block; }
.quote-text { font-size: 15.5px; line-height: 1.7; color: var(--text); margin-bottom: 24px; }
.quote-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--gray-100); margin-top: auto; }
.qa-ic { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--orange); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.qa-info strong { display: block; color: var(--navy); font-size: 14px; font-weight: 700; }
.qa-info span { color: var(--gray-600); font-size: 12.5px; }

/* ─── FAQ ─── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-q { width: 100%; text-align: left; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: 17px; font-weight: 600; color: var(--navy); }
.faq-q .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, transform .25s; }
.faq-q .faq-icon svg { width: 14px; height: 14px; stroke: var(--navy); }
.faq-item.open .faq-icon { background: var(--orange); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { stroke: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--gray-600); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* ─── REUSABLE EXPAND ("Meer lezen") ─── */
.expand { display: inline-block; margin-top: 8px; background: none; border: none; padding: 0; cursor: pointer; color: var(--orange); font-weight: 600; font-size: 13.5px; letter-spacing: -.1px; display: inline-flex; align-items: center; gap: 6px; transition: color .2s ease; font-family: inherit; }
.expand:hover { color: var(--orange-dark, #d96e00); }
.expand-chev { width: 14px; height: 14px; transition: transform .25s cubic-bezier(.22,1,.36,1); }
.expand[aria-expanded="true"] .expand-chev { transform: rotate(180deg); }
.expand-target { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s cubic-bezier(.22,1,.36,1); }
.expand-target > div { overflow: hidden; }
.expand-target.open { grid-template-rows: 1fr; }
.expand-target .et-inner { padding-top: 8px; color: var(--gray-600); font-size: 14.5px; line-height: 1.65; }
.expand-target .et-inner p { margin: 0 0 8px; }
.expand-target .et-inner p:last-child { margin-bottom: 0; }
.expand-text-collapsed::after { content: ' '; }

/* ─── LEAD FORM ─── */
.lead { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%); color: white; position: relative; overflow: hidden; }
.lead::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(239,128,0,0.15), transparent 60%); }
.lead-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.lead h2.section-title { color: white; }
.lead .section-sub { color: rgba(255,255,255,0.78); }
.lead-contacts { margin-top: 32px; }
.lead-contact { display: flex; align-items: center; gap: 14px; padding: 12px 0; font-size: 15px; color: rgba(255,255,255,0.85); }
.lead-contact .lc-ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lead-contact .lc-ic svg { width: 16px; height: 16px; stroke: var(--orange); }

.lead-form { background: white; color: var(--text); border-radius: var(--radius-lg); padding: 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
.lf-title { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.lf-sub { font-size: 14px; color: var(--gray-600); margin-bottom: 26px; }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.lf-field { display: flex; flex-direction: column; }
.lf-field.full { grid-column: 1 / -1; }
.lf-label { font-size: 12px; font-weight: 600; color: var(--gray-600); margin-bottom: 6px; }
.lf-label .req { color: var(--orange); }
.lf-input, .lf-textarea { font-family: inherit; font-size: 14px; padding: 12px 14px; border: 1.5px solid var(--gray-100); border-radius: 8px; background: var(--bg); color: var(--text); transition: border-color .2s, background .2s; }
.lf-input:focus, .lf-textarea:focus { outline: none; border-color: var(--orange); background: white; }
.lf-textarea { resize: vertical; min-height: 90px; font-family: inherit; }
.lf-submit { width: 100%; margin-top: 10px; justify-content: center; font-size: 16px; padding: 14px; }
.lf-privacy { margin-top: 14px; font-size: 12px; color: var(--gray-600); text-align: center; }
.lf-privacy a { color: var(--navy); text-decoration: underline; }

/* ─── FOOTER ─── */
footer { background: #0f1338; color: rgba(255,255,255,0.7); padding: 60px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.foot-brand { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 800; color: white; margin-bottom: 18px; }
.foot-brand img { width: 34px; height: 34px; }
.foot-tag { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 320px; }
.foot-h { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.foot-link { display: block; padding: 6px 0; font-size: 14px; color: rgba(255,255,255,0.55); transition: color .2s; }
.foot-link:hover { color: var(--orange); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 12px; }

/* ─── SCAN CTA SECTION ─── */
.scan-cta-section { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%); color: white; position: relative; overflow: hidden; }
.scan-cta-section::before { content: ''; position: absolute; top: -100px; left: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(239,128,0,0.15), transparent 60%); }
.scan-cta-section::after { content: ''; position: absolute; bottom: -150px; right: -150px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(239,128,0,0.08), transparent 60%); }
.scan-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.scan-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; padding: 6px 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; color: rgba(255,255,255,0.85); letter-spacing: 1.5px; margin-bottom: 24px; text-transform: uppercase; }
.scan-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.scan-cta-section h2 { font-size: 42px; font-weight: 800; line-height: 1.15; letter-spacing: -1px; color: white; margin-bottom: 18px; }
.scan-cta-section h2 .gradient-text { background: linear-gradient(135deg, #FFB800, var(--orange), #D94500); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.scan-cta-section p { font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.6; margin-bottom: 32px; max-width: 480px; }
.scan-cta-btn { background: linear-gradient(135deg, var(--orange), #D94500); color: white; font-size: 16px; font-weight: 700; padding: 16px 28px; border-radius: 12px; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 8px 20px rgba(29,35,79,0.14); transition: transform .15s, box-shadow .2s; }
.scan-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(29,35,79,0.18); }
.scan-cta-btn svg { width: 18px; height: 18px; }

/* Preview card (toont resultaat-mockup) */
.scan-preview { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 26px; backdrop-filter: blur(10px); position: relative; }
.sp-head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.sp-circle { width: 70px; height: 70px; border-radius: 50%; background: conic-gradient(var(--orange) 0% 48%, rgba(255,255,255,0.1) 48% 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; }
.sp-circle::before { content: ''; position: absolute; inset: 6px; background: var(--navy-2); border-radius: 50%; }
.sp-circle-text { position: relative; z-index: 1; text-align: center; line-height: 1; }
.sp-circle-n { font-size: 22px; font-weight: 800; color: white; }
.sp-circle-s { font-size: 9px; color: rgba(255,255,255,0.55); }
.sp-level-block { flex: 1; }
.sp-level-tag { display: inline-block; background: var(--orange); color: white; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; margin-bottom: 4px; }
.sp-level-text { font-size: 15px; font-weight: 700; color: white; }
.sp-bar { margin-bottom: 10px; }
.sp-bar-head { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 4px; }
.sp-bar-label { color: rgba(255,255,255,0.7); }
.sp-bar-pct { color: white; font-weight: 700; font-size: 12px; }
.sp-bar-pct.orange { color: var(--orange); }
.sp-bar-pct.red { color: #ef4444; }
.sp-bar-pct.yellow { color: #FFB800; }
.sp-bar-track { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.sp-bar-fill { height: 100%; border-radius: 3px; }
.sp-bar-fill.orange { background: var(--orange); }
.sp-bar-fill.red { background: #ef4444; }
.sp-bar-fill.yellow { background: #FFB800; }
.sp-gap { margin-top: 22px; padding: 14px 16px; background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.2); border-radius: 10px; display: flex; align-items: center; gap: 12px; }
.sp-gap-ic { width: 22px; height: 22px; border-radius: 50%; background: #ef4444; color: white; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sp-gap-text { font-size: 13px; }
.sp-gap-text .sp-gap-tag { display: block; font-size: 10px; font-weight: 700; color: #ef4444; letter-spacing: 1px; margin-bottom: 2px; }
.sp-gap-text strong { color: white; font-weight: 600; }

/* ─── ANIMATED HERO MOCKUP ─── */
.mockup-live-dot { display: flex; align-items: center; gap: 5px; font-size: 9px; color: var(--green); font-weight: 700; letter-spacing: 0.5px; flex-shrink: 0; }
.mm-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.mm-head .mm-title { margin: 0; min-width: 0; }
.hero-mockup .mm-head .mm-title { margin-bottom: 0; }
.mockup-live-dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(5,150,105,0.5); animation: live-pulse 2s ease-out infinite; }
@keyframes live-pulse { 0% { box-shadow: 0 0 0 0 rgba(5,150,105,0.5); } 70% { box-shadow: 0 0 0 8px rgba(5,150,105,0); } 100% { box-shadow: 0 0 0 0 rgba(5,150,105,0); } }

.mockup-notif { position: absolute; top: 18%; right: -28px; background: white; padding: 10px 14px; border-radius: 10px; box-shadow: 0 12px 32px rgba(0,0,0,0.3); display: flex; align-items: center; gap: 10px; font-size: 11px; z-index: 4; opacity: 0; animation: notif-cycle 9s ease-in-out infinite; animation-delay: 2s; min-width: 180px; }
.mn-ic { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, var(--green), #10b981); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mn-ic svg { width: 14px; height: 14px; stroke: white; }
.mn-text strong { display: block; font-size: 11px; font-weight: 700; color: var(--navy); }
.mn-text span { font-size: 9.5px; color: var(--gray-600); }
@keyframes notif-cycle {
  0%, 3% { opacity: 0; transform: translateX(20px) scale(0.9); }
  8%, 30% { opacity: 1; transform: translateX(0) scale(1); }
  38%, 100% { opacity: 0; transform: translateX(20px) scale(0.95); }
}

/* Made-in-NL badge */
.made-nl { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 18px; padding: 5px 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; }
.made-nl-flag { width: 16px; height: 11px; border-radius: 2px; background: linear-gradient(to bottom, #AE1C28 33%, white 33%, white 66%, #21468B 66%); flex-shrink: 0; }

/* ─── SCENARIO TIMELINE ─── */
.scenario { background: var(--bg); position: relative; }
.scenario .section-sub { max-width: 720px; }
.scenario-note { display: inline-block; font-size: 12px; font-weight: 600; padding: 5px 12px; background: rgba(239,128,0,0.1); color: var(--orange); border-radius: 20px; margin-bottom: 32px; letter-spacing: 0.3px; }
.timeline { position: relative; max-width: 880px; margin: 0 auto; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 14px; top: 30px; bottom: 30px; width: 2px; background: linear-gradient(to bottom, var(--orange), rgba(239,128,0,0.2)); }
.timeline-item { position: relative; padding: 18px 0 18px 36px; }
.timeline-item::before { content: ''; position: absolute; left: -7px; top: 24px; width: 16px; height: 16px; border-radius: 50%; background: var(--orange); border: 4px solid white; box-shadow: 0 2px 8px rgba(239,128,0,0.4); }
.timeline-item.final::before { background: var(--green); box-shadow: 0 2px 8px rgba(5,150,105,0.4); }
.timeline-time { font-family: Georgia, serif; font-style: italic; font-size: 14px; color: var(--orange); font-weight: 600; margin-bottom: 4px; letter-spacing: 0.5px; }
.timeline-card { background: white; border: 1px solid var(--gray-100); border-radius: 12px; padding: 20px 24px; box-shadow: 0 2px 8px rgba(29,35,79,0.04); transition: transform .25s, box-shadow .25s; }
.timeline-card:hover { transform: translateX(4px); box-shadow: 0 8px 24px rgba(29,35,79,0.08); }
.timeline-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.timeline-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.timeline-desc strong { color: var(--navy); font-weight: 600; }
.timeline-stat { display: inline-block; margin-top: 10px; padding: 4px 10px; background: rgba(5,150,105,0.08); color: var(--green); font-size: 12px; font-weight: 700; border-radius: 6px; }

/* ─── RESOURCES / INZICHTEN ─── */
.resources { background: white; border-top: 1px solid var(--gray-100); }
.res-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; flex-wrap: wrap; gap: 20px; }
.res-head-text h2 { font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -0.8px; margin-bottom: 8px; }
.res-head-text p { font-size: 15px; color: var(--gray-600); }
.res-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--orange); }
.res-link:hover { color: var(--orange-hover); }
.res-link svg { width: 14px; height: 14px; transition: transform .2s; }
.res-link:hover svg { transform: translateX(3px); }

.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.art-card { background: white; border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 28px; transition: transform .25s, box-shadow .25s, border-color .25s; display: flex; flex-direction: column; position: relative; overflow: hidden; cursor: pointer; }
.art-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100px; background: linear-gradient(135deg, rgba(239,128,0,0.06), transparent); pointer-events: none; }
.art-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(239,128,0,0.3); }
.art-thumb { position: relative; z-index: 1; margin: -28px -28px 22px; height: 168px; overflow: hidden; background: var(--gray-100); }
.art-thumb img, .art-thumb > div { width: 100%; height: 100%; object-fit: cover; display: block; }
.art-card:hover .art-thumb img { transform: scale(1.04); }
.art-thumb img { transition: transform .4s ease; }
.art-tag { display: inline-block; align-self: flex-start; font-size: 11px; font-weight: 700; padding: 4px 10px; background: var(--gray-50); color: var(--navy); border-radius: 6px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.art-tag.audit { background: rgba(239,128,0,0.1); color: var(--orange); }
.art-tag.compliance { background: rgba(5,150,105,0.1); color: var(--green); }
.art-tag.product { background: rgba(37,99,235,0.1); color: var(--blue); }
.art-title { font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 10px; flex-shrink: 0; }
.art-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.art-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--gray-100); font-size: 12px; color: var(--gray-400); }
.art-meta-read { color: var(--orange); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }

/* ─── INDUSTRIES (sector cards) ─── */
.industries { background: var(--bg); position: relative; }
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ind-card { background: white; border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 28px 26px; transition: transform .25s, box-shadow .25s, border-color .25s; position: relative; overflow: hidden; text-align: center; }
.ind-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(to right, var(--orange), #FFB800); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.ind-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.ind-card:hover::before { transform: scaleX(1); }
.ind-icon { height: 78px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.ind-icon svg { width: 22px; height: 22px; stroke: var(--orange); }
.ind-icon img { max-height: 78px; max-width: 78px; width: auto; height: auto; object-fit: contain; display: block; }
.ind-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.ind-desc { font-size: 13.5px; color: var(--gray-600); line-height: 1.6; margin-bottom: 12px; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.ind-tag { font-size: 10.5px; font-weight: 600; padding: 3px 9px; border-radius: 12px; background: var(--gray-50); color: var(--gray-600); }
.ind-card { cursor: pointer; }
.ind-link { position: absolute; inset: 0; z-index: 4; border-radius: inherit; }
.mscroll-hint { display: none; }
.mscroll-bar { display: none; }
@keyframes mhintNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }

/* ─── TRUST & SECURITY ─── */
.trust-sec { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: white; position: relative; overflow: hidden; }
.trust-sec::before { content: ''; position: absolute; top: -150px; left: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(239,128,0,0.08), transparent 60%); }
.trust-sec h2.section-title { color: white; position: relative; z-index: 2; }
.trust-sec .section-sub { color: rgba(255,255,255,0.78); position: relative; z-index: 2; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; z-index: 2; }
.trust-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 22px 20px; backdrop-filter: blur(10px); transition: background .25s, border-color .25s; }
.trust-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(239,128,0,0.3); }
.trust-card-ic { width: 42px; height: 42px; border-radius: 10px; background: rgba(239,128,0,0.15); border: 1px solid rgba(239,128,0,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.trust-card-ic svg { width: 20px; height: 20px; stroke: var(--orange); }
.trust-card-title { font-size: 14px; font-weight: 700; color: white; margin-bottom: 6px; }
.trust-card-desc { font-size: 12.5px; color: rgba(255,255,255,0.65); line-height: 1.55; }

/* ─── ROI CALCULATOR ─── */
.roi { background: var(--bg); position: relative; overflow: hidden; }
.roi::before { content: ''; position: absolute; top: 0; right: 0; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(239,128,0,0.06), transparent 70%); }
.roi-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.roi-card { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: 0 24px 60px rgba(29,35,79,0.1); border: 1px solid var(--gray-100); }
.roi-input { margin-bottom: 22px; }
.roi-input-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.roi-input-label { font-size: 14px; font-weight: 600; color: var(--navy); }
.roi-input-value { font-size: 22px; font-weight: 800; color: var(--orange); font-variant-numeric: tabular-nums; white-space: nowrap; flex: 0 0 auto; margin-left: 12px; }
.roi-slider { width: 100%; -webkit-appearance: none; appearance: none; height: 6px; background: var(--gray-100); border-radius: 3px; outline: none; cursor: pointer; }
.roi-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; background: var(--orange); border-radius: 50%; cursor: pointer; border: 3px solid white; box-shadow: 0 2px 8px rgba(239,128,0,0.4); transition: transform .15s; }
.roi-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.roi-slider::-moz-range-thumb { width: 22px; height: 22px; background: var(--orange); border-radius: 50%; cursor: pointer; border: 3px solid white; box-shadow: 0 2px 8px rgba(239,128,0,0.4); }
.roi-slider-track { position: relative; height: 6px; background: var(--gray-100); border-radius: 3px; margin-top: -6px; pointer-events: none; }
.roi-result { margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--gray-100); text-align: center; }
.roi-result-label { font-size: 13px; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.roi-result-num { font-size: 56px; font-weight: 800; line-height: 1; background: linear-gradient(135deg, #FFB800, var(--orange), #D94500); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -2px; font-variant-numeric: tabular-nums; }
.roi-result-num small { font-size: 22px; font-weight: 700; }
.roi-result-sub { font-size: 15px; color: var(--text); margin-top: 8px; font-weight: 500; }
.roi-result-sub strong { color: var(--green); font-weight: 800; }
.roi-disclaimer { font-size: 11px; color: var(--gray-400); margin-top: 16px; font-style: italic; }

/* ─── LEAD MAGNET (audit-checklist download) ─── */
.magnet { background: linear-gradient(160deg, var(--bg) 0%, #f0e9dd 100%); position: relative; overflow: hidden; }
.magnet::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(239,128,0,0.08), transparent 70%); }
.magnet-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.magnet-list { list-style: none; margin-top: 22px; }
.magnet-list li { padding-left: 28px; position: relative; margin-bottom: 10px; font-size: 15px; color: var(--text); }
.magnet-list li::before { content: '✓'; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; background: var(--orange); border-radius: 50%; color: white; font-size: 11.5px; font-weight: 800; display: flex; align-items: center; justify-content: center; line-height: 1; box-shadow: 0 2px 6px rgba(239,128,0,0.25); }

.magnet-form { background: white; border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: 0 24px 60px rgba(29,35,79,0.1); border: 1px solid var(--gray-100); position: relative; }
.magnet-form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--orange), #FFB800); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.mf-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--orange), #D94500); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 8px 20px rgba(239,128,0,0.3); }
.mf-icon svg { width: 28px; height: 28px; stroke: white; fill: none; }
.mf-title { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.mf-sub { font-size: 13px; color: var(--gray-600); margin-bottom: 20px; }
.mf-input { width: 100%; padding: 14px 16px; font-size: 15px; border: 1.5px solid var(--gray-100); border-radius: 10px; background: var(--bg); font-family: inherit; transition: border-color .2s, background .2s; }
.mf-input:focus { outline: none; border-color: var(--orange); background: white; }
.mf-btn { width: 100%; margin-top: 10px; justify-content: center; padding: 14px; }
.mf-trust { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-600); margin-top: 14px; justify-content: center; }
.mf-trust svg { width: 14px; height: 14px; stroke: var(--green); }

/* ─── MID-PAGE CTA STRIP ─── */
.cta-strip { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, var(--navy-3) 100%); padding: 56px 0; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; top: 50%; right: -100px; transform: translateY(-50%); width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(239,128,0,0.1), transparent 60%); }
.cta-strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-strip-text strong { display: block; font-size: 26px; font-weight: 800; color: white; letter-spacing: -0.5px; margin-bottom: 4px; }
.cta-strip-text p { font-size: 15px; color: rgba(255,255,255,0.7); }
.cta-strip .btn-primary { font-size: 16px; padding: 14px 28px; }

/* ─── STICKY FLOATING CTA ─── */
.floating-cta { position: fixed; bottom: 24px; right: 24px; z-index: 100; opacity: 0; transform: translateY(20px) scale(0.95); pointer-events: none; transition: opacity .35s, transform .35s; display: flex; align-items: center; gap: 8px; background: var(--orange); color: white; padding: 14px 22px; border-radius: 14px; box-shadow: 0 10px 28px rgba(29,35,79,0.18); font-weight: 700; font-size: 15px; }
.floating-cta.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.floating-cta:hover { background: var(--orange-hover); transform: translateY(-2px) scale(1); }
.floating-cta svg { width: 18px; height: 18px; }
.floating-cta .fc-close { width: 22px; height: 22px; background: rgba(255,255,255,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-left: 4px; font-size: 14px; cursor: pointer; line-height: 1; border: none; color: white; padding: 0; }
.floating-cta .fc-close:hover { background: rgba(255,255,255,0.3); }

/* ─── LEAD FORM UPGRADES ─── */
.lf-select { font-family: inherit; font-size: 14px; padding: 12px 14px; border: 1.5px solid var(--gray-100); border-radius: 8px; background: var(--bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a5e6e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 14px center; background-size: 12px; color: var(--text); appearance: none; transition: border-color .2s, background-color .2s; cursor: pointer; padding-right: 36px; }
.lf-select:focus { outline: none; border-color: var(--orange); background-color: white; }
.lf-trust { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--gray-100); }
.lf-trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray-600); font-weight: 500; }
.lf-trust-item svg { width: 14px; height: 14px; stroke: var(--green); flex-shrink: 0; }
.lf-success { padding: 32px 24px; text-align: center; }
.lf-success-ic { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--green), #10b981); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 8px 20px rgba(5,150,105,0.3); }
.lf-success-ic svg { width: 32px; height: 32px; stroke: white; }
.lf-success-title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.lf-success-text { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ─── CHAT WIDGET (contactverzoek, geen live chat) ─── */
.chat-widget { position: fixed; bottom: 100px; right: 24px; z-index: 200; }
.chat-trigger { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), #D94500); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 10px 26px rgba(29,35,79,0.20); transition: transform .2s; border: none; padding: 0; }
.chat-trigger:hover { transform: scale(1.06); }
.chat-trigger svg { width: 26px; height: 26px; stroke: white; fill: none; }
.chat-trigger .chat-badge { position: absolute; top: -4px; right: -4px; width: 18px; height: 18px; background: white; color: var(--orange); border-radius: 50%; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.chat-panel { position: absolute; bottom: 76px; right: 0; width: 340px; max-width: calc(100vw - 32px); background: white; border-radius: 18px; box-shadow: 0 24px 60px rgba(29,35,79,0.25); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(10px) scale(0.96); transform-origin: bottom right; transition: opacity .25s, transform .25s, visibility .25s; }
.chat-widget.open .chat-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-header { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: white; padding: 20px 22px; position: relative; }
.chat-header-greet { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.chat-header-greet img { width: 32px; height: 32px; border-radius: 50%; background: white; padding: 2px; }
.chat-header-greet strong { font-size: 15px; font-weight: 700; }
.chat-header p { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.5; }
.chat-close { position: absolute; top: 14px; right: 14px; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.1); border: none; color: white; font-size: 18px; line-height: 1; cursor: pointer; padding: 0; display: flex; align-items: center; justify-content: center; }
.chat-close:hover { background: rgba(255,255,255,0.2); }
.chat-body { padding: 18px 20px 20px; }
.chat-form .lf-field { margin-bottom: 10px; display: flex; flex-direction: column; }
.chat-form label { font-size: 11px; font-weight: 600; color: var(--gray-600); margin-bottom: 4px; }
.chat-input, .chat-textarea { width: 100%; padding: 10px 12px; border: 1.5px solid var(--gray-100); border-radius: 8px; background: var(--bg); font-family: inherit; font-size: 14px; color: var(--text); transition: border-color .2s, background .2s; }
.chat-input:focus, .chat-textarea:focus { outline: none; border-color: var(--orange); background: white; }
.chat-textarea { resize: vertical; min-height: 80px; }
.chat-send { width: 100%; margin-top: 6px; background: var(--orange); color: white; font-weight: 700; padding: 12px; border-radius: 8px; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; transition: background .2s, transform .15s; }
.chat-send:hover { background: var(--orange-hover); transform: translateY(-1px); }
.chat-send svg { width: 14px; height: 14px; }
.chat-success { padding: 24px 22px; text-align: center; }
.chat-success-ic { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--green), #10b981); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.chat-success-ic svg { width: 28px; height: 28px; stroke: white; }
.chat-success-title { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.chat-success-text { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

/* ─── AUDITEUR CARTOON (statisch in hoek, alleen praatballonnen) ─── */
.auditor { position: fixed; bottom: -22px; left: 16px; width: 210px; height: 274px; z-index: 30; pointer-events: none; opacity: 0; transition: opacity .6s ease; }
.auditor.active { opacity: 1; }
.auditor-img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: bottom; filter: drop-shadow(0 8px 14px rgba(0,0,0,0.22)); user-select: none; -webkit-user-drag: none; }
/* Praatballon */
.auditor .speech { position: absolute; bottom: 124px; left: 200px; background: white; border-radius: 14px; padding: 9px 15px; font-size: 13px; font-weight: 700; color: var(--navy); box-shadow: 0 8px 20px rgba(29,35,79,0.18); opacity: 0; transform: translateY(4px) scale(0.95); transform-origin: bottom left; transition: opacity .35s, transform .35s; width: max-content; max-width: 230px; white-space: normal; line-height: 1.35; text-align: left; }
.auditor .speech::after { content: ''; position: absolute; left: -7px; bottom: 8px; width: 0; height: 0; border-right: 9px solid white; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.auditor.talking .speech { opacity: 1; transform: translateY(0) scale(1); }
@media (max-width: 640px) {
  .auditor { width: 92px; height: 120px; bottom: -10px; left: 4px; }
  /* Ballon opent boven het poppetje, strak tegen de rand, pijltje wijst omlaag */
  .auditor .speech { font-size: 10px; padding: 6px 10px; bottom: 126px; left: 2px; max-width: 190px; }
  .auditor .speech::after { left: 18px; right: auto; bottom: -6px; border: none; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 7px solid white; }
}

/* ─── COOKIE HEROPENER (kleine subtiele tab links) ─── */
.cookie-reopen { position: fixed; left: 0; top: 50%; transform: translateY(-50%); width: 32px; height: 40px; background: rgba(255,255,255,0.85); border: 1px solid var(--gray-100); border-left: none; border-radius: 0 8px 8px 0; z-index: 150; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0.55; transition: opacity .25s, transform .25s, background .2s, width .25s; box-shadow: 0 4px 12px rgba(29,35,79,0.06); padding: 0; backdrop-filter: blur(8px); }
.cookie-reopen:hover { opacity: 1; background: white; width: 38px; }
.cookie-reopen svg { width: 16px; height: 16px; stroke: var(--gray-600); fill: none; }
.cookie-reopen:hover svg { stroke: var(--orange); }
@media (max-width: 640px) {
  .cookie-reopen { width: 28px; height: 34px; }
  .cookie-reopen svg { width: 14px; height: 14px; }
}

/* Select binnen chat */
select.chat-input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a5e6e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-position: right 12px center; background-repeat: no-repeat; background-size: 12px; padding-right: 36px; cursor: pointer; }

/* ─── COOKIE CONSENT BANNER (AVG/GDPR proof) ─── */
.cookie-banner { position: fixed; bottom: 24px; left: 50%; right: auto; max-width: 460px; background: white; border-radius: 16px; padding: 22px 24px; box-shadow: 0 20px 50px rgba(29,35,79,0.2); z-index: 250; transform: translate(-50%, 180%); transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid var(--gray-100); }
.cookie-banner.show { transform: translate(-50%, 0); }
.cookie-banner h4 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.cookie-banner h4 svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; }
.cookie-banner p { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.cookie-banner a.cookie-link { color: var(--navy); text-decoration: underline; font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn-cookie-accept { background: var(--orange); color: white; font-weight: 700; padding: 11px 20px; border-radius: 8px; border: none; cursor: pointer; font-size: 13.5px; transition: background .2s; }
.btn-cookie-accept:hover { background: var(--orange-hover); }
.btn-cookie-essential { background: var(--gray-50); color: var(--navy); font-weight: 600; padding: 11px 20px; border-radius: 8px; border: 1.5px solid var(--gray-100); cursor: pointer; font-size: 13.5px; transition: border-color .2s; }
.btn-cookie-essential:hover { border-color: var(--navy); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(0.16, 1, 0.3, 1), transform .9s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
.reveal.left { transform: translateX(-50px); }
.reveal.right { transform: translateX(50px); }
.reveal.scale { transform: scale(0.94); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

/* Hero load-in animation (geen scroll nodig) */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-10px) rotate(-3deg); } }
.hero-eyebrow, .hero-title, .hero-sub, .hero-ctas, .hero-checks { animation: fadeUp .8s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-title { animation-delay: 0.1s; }
.hero-sub { animation-delay: 0.2s; }
.hero-ctas { animation-delay: 0.3s; }
.hero-checks { animation-delay: 0.4s; }
.hero-mockup { animation: fadeIn 1.2s ease 0.4s both; }
.hero-floating-card { animation: fadeUp .8s ease 1.1s both, float 4s ease-in-out 2s infinite; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow, .hero-title, .hero-sub, .hero-ctas, .hero-checks, .hero-mockup, .hero-floating-card { animation: none; }
}

/* ─── RESPONSIVE ─── */
/* Globale grid-overflow fix: zonder min-width:0 kunnen grid-kinderen wijder zijn dan hun cel */
@media (max-width: 960px) {
  .audit-grid > *, .showcase-grid > *, .magnet-grid > *, .roi-grid > *,
  .scan-cta-grid > *, .lead-grid > *, .pc-grid > * { min-width: 0; max-width: 100%; }
  .audit-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .audit-pdf-stack { max-width: 100%; width: 100%; }
  .audit-pdf { max-width: 100%; }
  .audit-pdf-stack.reveal.right { transform: none !important; }
}
@media (max-width: 960px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; background: white; padding: 16px 24px; border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; align-items: stretch; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--gray-50); }
  .nav-links .btn { margin-top: 8px; justify-content: center; }
  /* Inzichten dropdown mobiel: inline uitgeklapt onder de trigger */
  .nav-dropdown { flex-direction: column; align-items: stretch; }
  .nav-drop-trigger { justify-content: space-between; }
  .nav-dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; min-width: 0; background: none; box-shadow: none; border: none; border-radius: 0; padding: 2px 0 6px 14px; margin: 0; }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a { padding: 11px 0; border-bottom: none; font-size: 14px; color: var(--gray-600); }
  .nav-caret { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 56px 0 80px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 48px; text-align: left; }
  h1.hero-title { letter-spacing: -0.6px; }
  .hero-sub { font-size: 16px; }
  .hero-mockup { transform: none; max-width: 480px; margin: 0 auto; }
  .hero-floating-card { bottom: -18px; left: 4px; transform: rotate(-3deg) scale(0.88); transform-origin: bottom left; }
  section.block { padding: 44px 0; }
  h1.section-title, h2.section-title { font-size: 32px; }
  .section-sub { font-size: 16px; }
  .feat-grid, .how-grid, .quote-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .stat-num { font-size: 48px; letter-spacing: -2px; }
  .stat-num .unit { font-size: 24px; }
  .audit-grid { grid-template-columns: 1fr; gap: 40px; }
  .comp-row { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr); padding: 14px 10px; font-size: 12px; gap: 6px; }
  .comp-row.body .comp-us-cell { padding: 14px 6px; margin: -14px 0; }
  .comp-head { padding: 14px 12px; }
  .comp-feature { font-size: 12px; }
  .comp-feature small { display: none; }
  .comp-head .comp-us { padding: 10px 4px; font-size: 11px; }
  .comp-head .comp-us .comp-brand { font-size: 11px; gap: 4px; }
  .comp-head .comp-us img { width: 14px; height: 14px; }
  .audit-pdf-head { padding: 14px 16px; }
  .audit-pdf-body { padding: 18px 16px 20px; }
  .magnet-grid { grid-template-columns: 1fr; gap: 32px; }
  .ind-grid { grid-template-columns: 1fr; gap: 14px; }
  .art-grid { grid-template-columns: 1fr; gap: 16px; }
  .res-head { flex-direction: column; align-items: flex-start; }
  .timeline { padding-left: 8px; }
  .timeline::before { left: 6px; }
  .timeline-item::before { left: -15px; }
  .timeline-card { padding: 16px 18px; }
  .mockup-notif { right: 6px; top: -14px; min-width: 150px; transform: scale(0.9); transform-origin: top right; }
  .scan-cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .scan-cta-section h2 { font-size: 28px; }
  .scan-cta-section p { font-size: 15px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-card { padding: 18px 16px; }
  .roi-grid { grid-template-columns: 1fr; gap: 32px; }
  .roi-card { padding: 24px; }
  .roi-result-num { font-size: 42px; }
  .cta-strip-inner { flex-direction: column; text-align: center; gap: 20px; }
  .cta-strip-text strong { font-size: 22px; }
  .floating-cta { bottom: 14px; right: 16px; padding: 12px 18px; font-size: 14px; }
  .lf-trust { grid-template-columns: 1fr; gap: 8px; }
  .showcase-grid, .lead-grid { grid-template-columns: 1fr; gap: 40px; }
  .showcase-mockup-mobile { display: none; }
  .pricing-card { padding: 36px 28px; }
  .pc-grid { grid-template-columns: 1fr; gap: 24px; }
  .pc-amount { font-size: 44px; }
  .pc-cta { flex-direction: column; gap: 14px; align-items: stretch; text-align: center; }
  .lead-form { padding: 28px; }
  .lf-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  /* Container minder padding, geen overflow */
  .container { padding: 0 18px; max-width: 100%; }

  /* Nav compacter, hamburger menu vol-breed */
  .nav-inner { height: 60px; padding: 0 18px; }
  .nav-brand { font-size: 18px; gap: 10px; }
  .nav-brand img { width: 30px; height: 30px; }
  .nav-links { padding: 16px 18px; }
  .nav-links a { padding: 14px 0; font-size: 15px; }

  /* Hero veel compacter en gecentreerd */
  .hero { padding: 32px 0 44px; }
  .hero-inner { text-align: center; }
  h1.hero-title { line-height: 1.18; letter-spacing: -0.2px; margin-bottom: 16px; max-width: 100%; }
  .hero-sub { font-size: 15px; line-height: 1.55; margin-bottom: 22px; max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-eyebrow { font-size: 10.5px; padding: 5px 11px; margin-bottom: 16px; letter-spacing: 0.4px; text-align: center; white-space: normal; line-height: 1.4; max-width: 100%; }
  .hero-ctas { gap: 10px; flex-direction: column; align-items: stretch; margin-bottom: 22px; justify-content: stretch; }
  .hero-ctas .btn { justify-content: center; padding: 14px 18px; font-size: 14.5px; width: 100%; }
  .hero-checks { gap: 10px 18px; font-size: 13px; justify-content: center; align-items: center; flex-direction: column; }
  .hero-check { white-space: nowrap; }
  .made-nl { font-size: 11px; padding: 5px 12px; margin-top: 16px; white-space: nowrap; max-width: 100%; }

  /* Stats: 2x2 grid op mobile, gecentreerd */
  .stats { padding: 44px 0; }
  .stats-grid { gap: 28px 14px; }
  .stat-card { padding: 0 4px; }
  .stat-num { font-size: 38px; letter-spacing: -1.5px; }
  .stat-num .unit { font-size: 18px; }
  .stat-label { font-size: 12.5px; margin-top: 8px; line-height: 1.3; }
  .stat-sub { font-size: 10.5px; margin-top: 3px; line-height: 1.35; }

  /* Section titles kleiner en gecentreerd */
  h1.section-title, h2.section-title { font-size: 26px; letter-spacing: -0.5px; line-height: 1.2; }
  .section-sub { font-size: 14.5px; margin-bottom: 28px; line-height: 1.55; }
  section.block { padding: 36px 0; }

  /* Chapter markers compacter */
  .chapter { font-size: 10px; letter-spacing: 1.5px; gap: 10px; margin-bottom: 12px; }
  .chapter-num { font-size: 19px; }
  .chapter-line { max-width: 40px; height: 1.5px; }

  /* Trust strip */
  .strip-row { gap: 8px; padding: 0 12px; }
  .strip-pill { font-size: 11.5px; padding: 5px 10px; }
  .strip-text { font-size: 10.5px; padding: 0 8px; line-height: 1.5; }

  /* Feature cards */
  .feat-grid { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; touch-action: pan-x; margin: 0 -16px; padding: 4px 16px 14px; scrollbar-width: none; }
  .feat-grid::-webkit-scrollbar { display: none; }
  .feat-card { padding: 22px 20px; flex: 0 0 80%; scroll-snap-align: center; }
  .feat-icon { height: 52px; margin-bottom: 14px; }
  .feat-icon svg { width: 44px; height: 44px; }
  .feat-icon img { max-height: 52px; max-width: 52px; width: auto; height: auto; }
  .feat-title { font-size: 16.5px; margin-bottom: 8px; }
  .feat-desc { font-size: 13.5px; line-height: 1.55; }

  /* Industries cards */
  .ind-grid { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; touch-action: pan-x; margin: 0 -16px; padding: 4px 16px 12px; scrollbar-width: none; }
  .mscroll-hint { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--orange); margin: -2px 0 16px; }
  .mscroll-hint span { display: inline-block; animation: mhintNudge 1.3s ease-in-out infinite; }
  .mscroll-bar { display: block; height: 5px; border-radius: 999px; background: rgba(29,35,79,0.10); margin: 12px 0 0; position: relative; }
  .mscroll-bar.on-dark { background: rgba(255,255,255,0.16); }
  .mscroll-bar i { position: absolute; top: 0; left: 0; height: 100%; width: 30%; border-radius: 999px; background: var(--orange); }
  .ind-grid::-webkit-scrollbar { display: none; }
  .ind-card { padding: 22px 20px; flex: 0 0 80%; scroll-snap-align: center; }
  .ind-icon { height: 64px; margin-bottom: 12px; }
  .ind-icon svg { width: 20px; height: 20px; }
  .ind-icon img { max-height: 64px; max-width: 64px; width: auto; height: auto; }
  .ind-title { font-size: 16px; margin-bottom: 6px; }
  .ind-desc { font-size: 13px; line-height: 1.5; margin-bottom: 10px; }
  .ind-tag { font-size: 10px; padding: 2.5px 8px; }

  /* Trust security */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-card { padding: 16px 14px; }
  .trust-card-ic { width: 38px; height: 38px; margin-bottom: 12px; }
  .trust-card-ic svg { width: 18px; height: 18px; }
  .trust-card-title { font-size: 13px; margin-bottom: 5px; }
  .trust-card-desc { font-size: 11.5px; line-height: 1.45; }

  /* Comparison table - compacter */
  .comp-table { border-radius: 14px; }
  .comp-row { padding: 14px 12px; font-size: 11.5px; gap: 6px; grid-template-columns: 1.5fr 1fr 1fr; }
  .comp-row.body .comp-us-cell { padding: 14px 6px; margin: -14px 0; }
  .comp-feature { font-size: 12px; line-height: 1.4; }
  .comp-feature small { display: none; }
  .comp-head { padding: 14px 12px; }
  .comp-head .comp-cell { font-size: 10px; padding: 8px 4px; }
  .comp-head .comp-us .comp-brand { font-size: 11px; gap: 5px; }
  .comp-head .comp-us img { width: 16px; height: 16px; }
  .comp-check, .comp-x { width: 18px; height: 18px; }
  .comp-note { font-size: 11.5px; margin-top: 16px; padding: 0 8px; line-height: 1.5; }

  /* Audit section */
  .audit-grid { gap: 32px; }
  .audit-points { margin: 22px 0; }
  .audit-points li { font-size: 13.5px; padding-left: 30px; margin-bottom: 12px; line-height: 1.5; }
  .audit-points li::before { width: 20px; height: 20px; font-size: 11.5px; top: 3px; }
  .audit-badges { gap: 6px; margin-bottom: 22px; }
  .audit-badge { font-size: 11.5px; padding: 5px 11px; gap: 6px; }
  .audit-badge svg { width: 12px; height: 12px; }
  .audit-pdf-stack { max-width: 100%; margin: 0 auto; }
  .audit-pdf-head { padding: 14px 18px; }
  .audit-pdf-brand { font-size: 14px; }
  .audit-pdf-brand img { width: 22px; height: 22px; }
  .audit-pdf-tag { font-size: 9px; padding: 3px 8px; }
  .audit-pdf-body { padding: 18px 16px; }
  .audit-pdf-h1 { font-size: 15px; }
  .audit-pdf-h2 { font-size: 11px; margin-bottom: 14px; }
  .audit-pdf-meta { gap: 10px; padding: 12px 0; margin-bottom: 14px; }
  .pdf-meta-label { font-size: 8.5px; }
  .pdf-meta-value { font-size: 12px; }
  .audit-pdf-row { padding: 7px 0; gap: 8px; }
  .pdf-row-name { font-size: 10.5px; }
  .pdf-row-date { font-size: 9.5px; }
  .pdf-row-status { font-size: 9px; padding: 3px 7px; }
  .audit-pdf-footer { margin-top: 14px; padding-top: 12px; font-size: 9px; }

  /* Scenario timeline */
  .timeline { padding-left: 18px; }
  .timeline::before { left: 8px; }
  .timeline-item { padding: 14px 0 14px 28px; }
  .timeline-item::before { left: -11px; width: 14px; height: 14px; border-width: 3px; top: 22px; }
  .timeline-card { padding: 14px 16px; }
  .timeline-time { font-size: 12.5px; }
  .timeline-title { font-size: 14.5px; margin-bottom: 4px; }
  .timeline-desc { font-size: 13px; line-height: 1.55; }
  .timeline-stat { font-size: 11px; padding: 3px 9px; margin-top: 8px; }
  .scenario-note { font-size: 11px; padding: 4px 10px; margin-bottom: 22px; }

  /* Mid CTA strip */
  .cta-strip { padding: 40px 0; }
  .cta-strip-text { text-align: center; }
  .cta-strip-text strong { font-size: 20px; line-height: 1.25; }
  .cta-strip-text p { font-size: 13.5px; line-height: 1.5; }
  .cta-strip-inner { gap: 18px; }
  .cta-strip .btn-primary { width: 100%; justify-content: center; padding: 13px 20px; font-size: 14.5px; }

  /* Scan CTA section */
  .scan-cta-section { padding: 44px 0; }
  .scan-cta-grid { gap: 28px; }
  .scan-cta-section h2 { font-size: 24px; line-height: 1.2; margin-bottom: 14px; }
  .scan-cta-section p { font-size: 14px; line-height: 1.55; max-width: 100%; margin-bottom: 22px; }
  .scan-cta-btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 14.5px; }
  .scan-eyebrow { font-size: 10px; padding: 5px 11px; margin-bottom: 18px; }
  .sp-head { gap: 12px; margin-bottom: 18px; }
  .sp-circle { width: 56px; height: 56px; }
  .sp-circle-n { font-size: 18px; }
  .sp-circle-s { font-size: 8px; }
  .sp-level-tag { font-size: 10px; padding: 3px 8px; }
  .sp-level-text { font-size: 13.5px; }
  .scan-preview { padding: 20px; }
  .sp-bar-head { font-size: 11.5px; }
  .sp-bar-pct { font-size: 11.5px; }
  .sp-gap { padding: 12px 14px; gap: 10px; margin-top: 18px; }
  .sp-gap-text { font-size: 12px; }
  .sp-gap-tag { font-size: 9px; }

  /* Magnet */
  .magnet-form { padding: 24px 20px; }
  .magnet-list li { font-size: 14px; padding-left: 26px; margin-bottom: 8px; }
  .magnet-list li::before { width: 18px; height: 18px; font-size: 10.5px; top: 4px; }
  .mf-icon { width: 50px; height: 50px; border-radius: 12px; margin-bottom: 18px; }
  .mf-icon svg { width: 24px; height: 24px; }
  .mf-title { font-size: 17px; }
  .mf-sub { font-size: 12.5px; margin-bottom: 18px; }
  .mf-trust { font-size: 11.5px; }

  /* ROI calculator */
  .roi-grid { gap: 28px; }
  .roi-card { padding: 24px 20px; }
  .roi-input { margin-bottom: 20px; }
  .roi-input-label { font-size: 13px; line-height: 1.4; }
  .roi-input-value { font-size: 18px; }
  .roi-result { margin-top: 24px; padding-top: 22px; }
  .roi-result-label { font-size: 11.5px; margin-bottom: 8px; }
  .roi-result-num { font-size: 38px; letter-spacing: -1px; }
  .roi-result-num small { font-size: 18px; }
  .roi-result-sub { font-size: 13px; margin-top: 6px; }
  .roi-disclaimer { font-size: 10.5px; margin-top: 14px; line-height: 1.5; }

  /* Pricing */
  .pricing-card { padding: 28px 22px; }
  .pc-grid { gap: 22px; }
  .pc-label { font-size: 11px; margin-bottom: 6px; }
  .pc-amount { font-size: 38px; }
  .pc-setup { font-size: 13px; line-height: 1.55; margin-top: 12px; }
  .pc-list li { font-size: 13.5px; padding-left: 26px; padding-top: 7px; padding-bottom: 7px; line-height: 1.45; }
  .pc-list li::before { width: 16px; height: 16px; font-size: 10px; }
  .pc-cta { flex-direction: column; gap: 14px; align-items: stretch; text-align: center; margin-top: 24px; padding-top: 22px; }
  .pc-cta .btn { width: 100%; justify-content: center; }
  .pc-note { font-size: 11.5px; line-height: 1.55; }

  /* How (Implementatie) */
  .how-grid { gap: 14px; }
  .how-card { padding: 24px 22px; }
  .how-num { font-size: 12px; margin-bottom: 10px; }
  .how-title { font-size: 18px; margin-bottom: 10px; }
  .how-desc { font-size: 13.5px; line-height: 1.55; }

  /* Quotes */
  .quote-grid { gap: 14px; }
  .quote-card { padding: 24px 22px; }
  .quote-mark { font-size: 40px; margin-bottom: 14px; }
  .quote-text { font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
  .qa-ic { width: 36px; height: 36px; font-size: 12px; }
  .qa-info strong { font-size: 13px; }
  .qa-info span { font-size: 11.5px; }

  /* FAQ */
  .faq-q { font-size: 14.5px; padding: 16px 0; gap: 12px; }
  .faq-q .faq-icon { width: 24px; height: 24px; }
  .faq-q .faq-icon svg { width: 12px; height: 12px; }
  .faq-a { font-size: 13.5px; line-height: 1.6; }
  .faq-item.open .faq-a { padding-bottom: 18px; }

  /* Resources */
  .res-head { margin-bottom: 24px; }
  .res-head-text h2 { font-size: 22px; }
  .res-head-text p { font-size: 13.5px; }
  .res-link { font-size: 13px; }
  .art-card { padding: 22px 20px; }
  .art-thumb { margin: -22px -20px 16px; height: 150px; }
  .art-tag { font-size: 10px; padding: 3px 8px; margin-bottom: 12px; }
  .art-title { font-size: 16px; margin-bottom: 8px; }
  .art-desc { font-size: 13px; line-height: 1.55; margin-bottom: 16px; }
  .art-meta { font-size: 11.5px; padding-top: 12px; }

  /* Lead section */
  .lead-section { /* container is dark navy */ }
  .lead .container.lead-grid { gap: 28px; }
  .lead-section h2.section-title { font-size: 24px; }
  .lead-section .section-sub { font-size: 14px; margin-bottom: 22px; }
  .lead-contacts { margin-top: 22px; }
  .lead-contact { font-size: 13.5px; padding: 10px 0; gap: 12px; }
  .lead-contact .lc-ic { width: 34px; height: 34px; }
  .lead-contact .lc-ic svg { width: 14px; height: 14px; }
  .lead-form { padding: 22px 18px; }
  .lf-title { font-size: 19px; }
  .lf-sub { font-size: 13px; margin-bottom: 20px; }
  .lf-row { gap: 12px; margin-bottom: 12px; }
  .lf-input, .lf-textarea, .lf-select { padding: 11px 13px; font-size: 16px; }
  .lf-label { font-size: 11px; }
  .lf-submit { padding: 13px; font-size: 14.5px; }
  .lf-trust { gap: 7px; margin-top: 16px; padding-top: 16px; }
  .lf-trust-item { font-size: 11px; }
  .lf-privacy { font-size: 11px; margin-top: 12px; line-height: 1.5; }

  /* Sticky CTA mobile (onder) */
  .floating-cta { bottom: 14px; right: 16px; padding: 10px 14px; font-size: 13px; }
  .floating-cta .fc-close { width: 18px; height: 18px; }
  /* Chat widget mobile (boven) */
  .chat-widget { bottom: 72px; right: 16px; }
  .chat-trigger { width: 52px; height: 52px; }
  .chat-trigger svg { width: 22px; height: 22px; }
  .chat-panel { width: calc(100vw - 24px); bottom: 68px; right: -4px; }
  /* Cookie banner mobile */
  .cookie-banner { left: 12px; right: 12px; max-width: none; padding: 18px 20px; bottom: calc(16px + env(safe-area-inset-bottom)); transform: translate(0, 180%); }
  .cookie-banner.show { transform: translate(0, 0); }
  .cookie-banner h4 { font-size: 15px; }
  .cookie-banner p { font-size: 12.5px; }
  .cookie-actions { gap: 8px; }
  .btn-cookie-accept, .btn-cookie-essential { flex: 1; padding: 10px 14px; font-size: 13px; text-align: center; }

  /* Hero mockup: zichtbaar onder de tekst op mobile (geen 3D-tilt, compacter) */
  .hero-inner { grid-template-columns: minmax(0, 1fr) !important; gap: 32px !important; }
  .hero-mockup { transform: none !important; max-width: 92% !important; margin: 18px auto 26px !important; display: block !important; }
  .hero-mockup .mockup-card { box-shadow: 0 18px 40px rgba(0,0,0,0.35); border-radius: 10px; overflow: hidden; }
  .hero-mockup .mockup-bar { padding: 7px 10px; gap: 4px; }
  .hero-mockup .mockup-dot { width: 8px; height: 8px; }
  .hero-mockup .mockup-url { font-size: 9px; }
  .hero-mockup .mockup-live-dot { font-size: 8px; padding: 2px 6px; }
  .hero-mockup .mockup-body { min-height: 0; }
  .hero-mockup .mm-side { width: 124px; padding: 12px 8px; }
  .hero-mockup .mm-brand { font-size: 11px; gap: 6px; margin-bottom: 12px; }
  .hero-mockup .mm-brand img { width: 16px; height: 16px; }
  .hero-mockup .mm-nav { padding: 6px 7px; font-size: 8.5px; gap: 5px; margin-bottom: 1px; min-width: 0; white-space: nowrap; }
  .hero-mockup .mm-nav svg { width: 10px; height: 10px; }
  .hero-mockup .mm-main { padding: 12px 12px 14px; }
  .hero-mockup .mm-title { font-size: 11.5px; margin-bottom: 10px; }
  .hero-mockup .mm-kpis { grid-template-columns: repeat(2, 1fr); gap: 6px; margin-bottom: 10px; }
  .hero-mockup .mm-kpi { padding: 7px 8px; }
  .hero-mockup .mm-kpi-n { font-size: 16px; }
  .hero-mockup .mm-kpi-l { font-size: 7.5px; letter-spacing: 0.4px; }
  .hero-mockup .mm-row { padding: 7px 9px; gap: 6px; margin-bottom: 5px; }
  .hero-mockup .mm-row-ic { width: 16px; height: 16px; flex-shrink: 0; }
  .hero-mockup .mm-row-info { min-width: 0; flex: 1; }
  .hero-mockup .mm-row-name { font-size: 10.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero-mockup .mm-row-meta { font-size: 9px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero-mockup .mm-row-tag { font-size: 8px; padding: 2px 5px; flex-shrink: 0; white-space: nowrap; }
  .hero-mockup .mm-main { min-width: 0; }
  .hero-mockup .mm-title { font-size: 11px; margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero-floating-card { display: flex !important; bottom: -14px; left: 2px; transform: rotate(-3deg) scale(0.8); transform-origin: bottom left; padding: 10px 14px; }

  /* Footer */
  footer { padding: 44px 0 22px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px 18px; margin-bottom: 32px; }
  .foot-brand-col { grid-column: 1 / -1; }
  .foot-brand { font-size: 18px; margin-bottom: 12px; gap: 10px; }
  .foot-brand img { width: 28px; height: 28px; }
  .foot-tag { font-size: 13px; line-height: 1.6; max-width: 100%; }
  .foot-h { font-size: 12px; margin-bottom: 12px; }
  .foot-link { font-size: 13px; padding: 4px 0; }
  .foot-bottom { flex-direction: column; text-align: center; padding-top: 22px; gap: 8px; font-size: 11.5px; }
}

/* Smalle iPhones (iPhone SE, Mini, etc) */
@media (max-width: 400px) {
  .container { padding: 0 18px; }
  h1.hero-title { font-size: 28px; letter-spacing: -0.2px; }
  .hero-sub { font-size: 14px; }
  h1.section-title, h2.section-title { font-size: 22px; }
  .section-sub { font-size: 14px; }
  .stat-num { font-size: 34px; }
  .stat-label { font-size: 12px; }
  .stat-sub { font-size: 10px; }
  .feat-title, .ind-title { font-size: 15px; }
  .feat-desc, .ind-desc { font-size: 13px; }
  .trust-grid { grid-template-columns: 1fr; }
  .comp-row { grid-template-columns: 1.4fr 0.9fr 0.9fr; padding: 10px 8px; font-size: 10.5px; gap: 3px; }
  .comp-row.body .comp-us-cell { padding: 10px 5px; margin: -10px 0; }
  .comp-feature { font-size: 11px; }
  .comp-head .comp-cell { font-size: 9px; padding: 8px 2px; }
  .audit-points li { font-size: 13.5px; }
  .timeline-card { padding: 12px 14px; }
  .timeline-title { font-size: 13.5px; }
  .timeline-desc { font-size: 12.5px; }
  .pc-amount { font-size: 30px !important; }
  .roi-result-num { font-size: 30px; }
  .quote-text { font-size: 14px; }
}

/* ─── Echte app-screenshots ─── */
.shot-frame { background: white; border-radius: 14px; overflow: hidden; border: 1px solid var(--gray-100); box-shadow: 0 24px 60px rgba(29,35,79,0.14); }
.shot-frame img { display: block; width: 100%; height: auto; }
.shot-hero { max-width: 980px; margin: 36px auto 0; }
.shot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 28px; margin-top: 40px; }
.shot-item .shot-t { font-size: 15px; font-weight: 700; color: var(--navy); margin: 14px 2px 4px; }
.shot-item .shot-d { font-size: 13.5px; color: var(--gray-600); margin: 0 2px; line-height: 1.55; }
.shot-phones { display: flex; gap: 20px; justify-content: center; align-items: flex-start; }
.shot-phone { width: min(46%, 220px); border-radius: 28px; overflow: hidden; border: 6px solid var(--navy); box-shadow: 0 20px 50px rgba(29,35,79,0.22); }
.shot-phone img { display: block; width: 100%; height: auto; }
@media (max-width: 860px) { .shot-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ─── Volledig functie-overzicht ─── */
.allfeat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 34px; margin-top: 40px; }
.allfeat h3 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.allfeat ul { list-style: none; margin: 0; padding: 0; }
.allfeat li { position: relative; padding: 4px 0 4px 22px; font-size: 13.5px; color: var(--gray-600); line-height: 1.5; }
.allfeat li::before { content: ''; position: absolute; left: 2px; top: 11px; width: 10px; height: 10px; border-radius: 50%; background: rgba(239,128,0,0.16); }
.allfeat li::after { content: ''; position: absolute; left: 4.5px; top: 13.5px; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
@media (max-width: 960px) { .allfeat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .allfeat-grid { grid-template-columns: 1fr; } }

/* ─── Minimal: functieblokken & hero-crops ─── */
.float-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-100); box-shadow: 0 24px 60px rgba(29,35,79,0.13); }
.float-card img { display: block; width: 100%; height: auto; }
.hero-shots { position: relative; min-height: 430px; }
.hero-shots .fc1 { position: absolute; top: 2%; right: 4%; width: min(48%, 265px); transform: rotate(2deg); box-shadow: 0 30px 70px rgba(11,16,48,0.38); }
.hero-shots .fc2 { position: absolute; bottom: 22%; left: 0; width: min(94%, 560px); transform: rotate(-1.5deg); box-shadow: 0 30px 70px rgba(11,16,48,0.38); }
.fblock { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 26px 24px; }
.fblock .fb-copy { max-width: 440px; }
.fb-title { font-size: 26px; font-weight: 700; color: var(--navy); margin: 0 0 10px; line-height: 1.25; }
.fb-text { font-size: 15px; color: var(--gray-600); line-height: 1.65; margin: 0; }
.badge-nieuw { display: inline-block; background: rgba(239,128,0,0.12); color: var(--orange); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; border-radius: 999px; padding: 4px 10px; margin-left: 10px; vertical-align: 3px; }
.audit-strip-links { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 26px; position: relative; z-index: 2; }
@media (max-width: 920px) {
  .fblock { grid-template-columns: 1fr; gap: 22px; padding: 20px 18px; }
  .fblock .fb-copy { order: 1; }
  .fblock .fb-media { order: 2; }
  .fblock .fb-copy { max-width: none; }
  .hero-shots { display: none; }
}



/* ─── USP-blok home ─── */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 44px; margin-top: 44px; }
.usp { display: flex; gap: 14px; align-items: flex-start; }
.usp-ic { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 10px; background: rgba(239,128,0,0.1); border: 1px solid rgba(239,128,0,0.22); display: flex; align-items: center; justify-content: center; }
.usp-ic svg { width: 18px; height: 18px; stroke: var(--orange); }
.usp-t { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0 0 3px; }
.usp-d { font-size: 13.5px; color: var(--gray-600); line-height: 1.55; margin: 0; }
@media (max-width: 960px) { .usp-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 620px) { .usp-grid { grid-template-columns: 1fr; gap: 22px; } }

/* ─── Openklappende laptop in hero ─── */
.l3d-scene { transform-style: preserve-3d; }
.l3d-screen { transform-origin: 50% 100%; transform: rotateX(-84deg); animation: l3dOpen 1.5s cubic-bezier(0.2, 0.7, 0.2, 1) 0.5s forwards; }
@keyframes l3dOpen { to { transform: rotateX(0deg); } }
.l3d-bezel { background: #0f1436; border-radius: 16px 16px 0 0; padding: 9px 9px 0 9px; box-shadow: 0 40px 90px rgba(5, 8, 30, 0.5); }
.l3d-bezel img { display: block; width: 100%; height: auto; border-radius: 7px 7px 0 0; }
.l3d-base { height: 13px; margin: 0 -5%; background: linear-gradient(180deg, #e3e6ee 0%, #b9bfcd 65%, #99a0b1 100%); border-radius: 2px 2px 14px 14px; box-shadow: 0 22px 50px rgba(5, 8, 30, 0.45); position: relative; }
.l3d-base::after { content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 13%; height: 5px; background: #99a0b1; border-radius: 0 0 8px 8px; }
@media (prefers-reduced-motion: reduce) { .l3d-screen { animation: none; transform: none; } }

/* ─── Laptop-mockup hero (statisch, transparant) ─── */
.hero-laptop-img { display: block; width: 114%; max-width: none; margin: -3% 0 -2% -7%; height: auto; filter: drop-shadow(0 34px 60px rgba(5, 8, 30, 0.45)); }



/* ─── Realistische telefoon-mockups ─── */
.phone-real { width: min(46%, 235px); height: auto; filter: drop-shadow(0 22px 45px rgba(5, 8, 30, 0.35)); }

/* ─── CTA-strips tussen functieblokken ─── */
.fcta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; background: var(--gray-50, #f7f8fb); border: 1px solid var(--gray-100); border-radius: 16px; padding: 22px 28px; margin: 26px auto; }
.fcta-text strong { display: block; font-size: 16.5px; color: var(--navy); font-weight: 700; }
.fcta-text span { font-size: 13.5px; color: var(--gray-600); }
.fcta-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-wa { background: #25D366 !important; color: white !important; }
.btn-wa:hover { background: #1fb457 !important; }
@media (max-width: 720px) { .fcta { flex-direction: column; align-items: flex-start; padding: 18px; } }

/* ─── Over ons: team ─── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 880px; margin: 32px auto 0; }
.team-card { background: white; border: 1px solid var(--gray-100); border-radius: 16px; padding: 26px 20px; text-align: center; box-shadow: 0 10px 30px rgba(29,35,79,0.06); }
.team-ic { width: 54px; height: 54px; border-radius: 50%; background: rgba(239,128,0,0.12); color: var(--orange); font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.team-name { font-size: 17px; font-weight: 700; color: var(--navy); }
.team-role { font-size: 13.5px; color: var(--gray-600); margin-top: 2px; }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }

/* ─── Juridische pagina's ─── */
.legal { max-width: 780px; }
.legal-meta { font-size: 13px; color: var(--gray-400, #9aa1b1); margin: -6px 0 26px; }
.legal h2 { font-size: 19px; font-weight: 700; color: var(--navy); margin: 28px 0 8px; }
.legal p, .legal li { font-size: 14.5px; color: var(--gray-600); line-height: 1.7; }
.legal p { margin: 0 0 12px; }
.legal ul { margin: 0 0 14px 20px; padding: 0; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--orange); text-decoration: underline; }

/* ─── Inklapbare functielijst (mobielvriendelijk) ─── */
details.allfeat summary { font-size: 15.5px; font-weight: 700; color: var(--navy); cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 2px 0; }
details.allfeat summary::-webkit-details-marker { display: none; }
details.allfeat summary::after { content: ''; width: 9px; height: 9px; border-right: 2px solid var(--orange); border-bottom: 2px solid var(--orange); transform: rotate(45deg); transition: transform 0.2s; flex: 0 0 auto; margin-right: 4px; }
details.allfeat[open] summary::after { transform: rotate(225deg); }
details.allfeat summary { margin-bottom: 10px; }
details.allfeat:not([open]) summary { margin-bottom: 0; }
@media (max-width: 760px) {
  .allfeat-grid { gap: 4px; }
  details.allfeat { border-bottom: 1px solid var(--gray-100); padding: 10px 0; }
  .shot-phones { flex-direction: column; align-items: center; gap: 26px; }
  .phone-real { width: min(74%, 265px); }
}

/* ─── Functieblokken inklapbaar op mobiel ─── */
@media (max-width: 760px) {
  .fb-title { font-size: 20px; }
  .fb-text { font-size: 14px; }
  .fblock .fb-title { cursor: pointer; position: relative; padding-right: 30px; margin-bottom: 4px; }
  .fblock .fb-title::after { content: ''; position: absolute; right: 8px; top: 8px; width: 9px; height: 9px; border-right: 2px solid var(--orange); border-bottom: 2px solid var(--orange); transform: rotate(225deg); transition: transform 0.2s; }
  .fblock.ingeklapt .fb-title::after { transform: rotate(45deg); }
  .fblock.ingeklapt .fb-text, .fblock.ingeklapt .fb-media { display: none; }
  .fblock { border-bottom: 1px solid var(--gray-100); padding: 16px 18px; gap: 16px; }
}

/* ─── Blogs-submenu ingeklapt in het hamburgermenu ─── */
@media (max-width: 960px) {
  .nav-dropdown-menu { display: none; }
  .nav-dropdown.open-sub .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu, .nav-dropdown:hover .nav-dropdown-menu { position: static; transform: none; }
  .nav-dropdown.open-sub .nav-caret { transform: rotate(180deg); }
}

/* ─── Branchekaarten statisch op mobiel (statische branches) ─── */
@media (max-width: 960px) {
  .industries .reveal, .ind-card.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* laptop-schaduw alleen op desktop (iOS tekent hem als rechthoek) */
@media (min-width: 961px) { .hero-mockup > img { filter: drop-shadow(0 26px 40px rgba(5, 8, 30, 0.42)); } }
@media (max-width: 960px) { .hero-mockup > img { filter: none !important; } }
