:root {
    --navy: #11223b;
    --navy-2: #172d4d;
    --blue: #2167d5;
    --blue-dark: #1551b2;
    --sky: #edf4ff;
    --green: #17845b;
    --green-bg: #e7f7f0;
    --orange: #ad6612;
    --orange-bg: #fff3df;
    --red: #b43d3d;
    --red-bg: #fdeaea;
    --text: #182235;
    --muted: #68758a;
    --line: #dde4ee;
    --page: #f4f7fb;
    --white: #fff;
    --shadow: 0 14px 40px rgba(27, 47, 78, .08);
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: var(--page); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.app-shell { min-height: 100vh; display: flex; }
.sidebar { width: 260px; background: linear-gradient(180deg, var(--navy), #0c182a); color: white; padding: 26px 18px 18px; position: fixed; inset: 0 auto 0 0; display: flex; flex-direction: column; z-index: 20; }
.brand { display: flex; align-items: center; gap: 12px; padding: 0 9px 24px; font-size: 18px; }
.brand-image-link { line-height: 0; }
.brand-logo { display: block; width: auto; max-width: 100%; height: auto; }
.brand-logo-surface { display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.97); border: 1px solid rgba(255,255,255,.55); border-radius: 13px; box-shadow: 0 12px 28px rgba(3,14,30,.18); }
.app-brand { padding: 0 8px 22px; justify-content: flex-start; }
.app-logo-tile { width: 62px; height: 62px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(145deg,#0f4fbf,#167bd8); box-shadow: 0 13px 28px rgba(0,46,119,.28); border: 1px solid rgba(255,255,255,.14); }
.brand-logo-app-icon { width: 48px; height: auto; filter: brightness(0) invert(1); }
.brand small, .user-card small { display: block; color: #a9b8cc; font-size: 11px; margin-top: 2px; font-weight: 500; }
.nav { display: grid; gap: 6px; }
.nav a { display: flex; align-items: center; gap: 12px; padding: 12px 13px; border-radius: 10px; color: #cbd5e3; font-weight: 650; font-size: 14px; }
.nav a span { width: 20px; text-align: center; }
.nav a:hover, .nav a.active { background: rgba(255,255,255,.1); color: white; }
.sidebar-footer { margin-top: auto; }
.user-card { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 8px 12px; display: flex; gap: 10px; align-items: center; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: #2d6fd5; display: grid; place-items: center; font-weight: 800; }
.user-card strong { font-size: 13px; }
.logout-link { color: #a9b8cc; font-size: 13px; padding: 8px; display: block; }
.main-content { margin-left: 260px; width: calc(100% - 260px); padding: 0 34px 40px; }
.topbar { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar h1 { margin: 0; font-size: 26px; letter-spacing: -.5px; }
.topbar p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.menu-button { display: none; background: white; border: 1px solid var(--line); border-radius: 9px; padding: 8px 11px; }
.button { border: 0; border-radius: 9px; padding: 10px 15px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; cursor: pointer; font-weight: 750; font-size: 13px; transition: .15s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--blue); color: white; box-shadow: 0 8px 22px rgba(33,103,213,.18); }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary { background: white; color: var(--text); border: 1px solid var(--line); }
.button-danger { background: var(--red-bg); color: var(--red); }
.button-small { padding: 7px 10px; font-size: 12px; }
.grid-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; margin-bottom: 22px; }
.stat-card, .card { background: white; border: 1px solid #e7ecf3; border-radius: 14px; box-shadow: var(--shadow); }
.stat-card { padding: 19px; position: relative; overflow: hidden; }
.stat-card small { color: var(--muted); font-weight: 650; }
.stat-card strong { display: block; font-size: 30px; margin-top: 8px; }
.stat-icon { position: absolute; right: 17px; top: 17px; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--sky); color: var(--blue); font-weight: 800; }
.content-grid { display: grid; grid-template-columns: 1.5fr .8fr; gap: 20px; }
.card { padding: 21px; margin-bottom: 20px; }
.card-header { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 18px; }
.card-header h2, .card h2 { font-size: 17px; margin: 0; }
.card-header p, .card > p { color: var(--muted); font-size: 13px; margin: 4px 0 0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; text-align: left; padding: 11px 10px; border-bottom: 1px solid var(--line); }
td { padding: 13px 10px; border-bottom: 1px solid #edf0f5; vertical-align: middle; }
tr:last-child td { border-bottom: 0; }
.table-title { font-weight: 750; }
.table-sub { color: var(--muted); font-size: 11px; margin-top: 3px; }
.badge { display: inline-flex; padding: 5px 8px; border-radius: 999px; font-weight: 750; font-size: 11px; white-space: nowrap; }
.badge-green { color: var(--green); background: var(--green-bg); }
.badge-orange { color: var(--orange); background: var(--orange-bg); }
.badge-red { color: var(--red); background: var(--red-bg); }
.badge-blue { color: var(--blue); background: var(--sky); }
.empty { padding: 35px 15px; text-align: center; color: var(--muted); }
.alert { padding: 13px 15px; border-radius: 10px; margin-bottom: 18px; font-size: 13px; font-weight: 650; }
.alert-success { background: var(--green-bg); color: var(--green); }
.alert-warning { background: var(--orange-bg); color: var(--orange); }
.alert-error { background: var(--red-bg); color: var(--red); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 12px; font-weight: 750; color: #354258; }
input, select, textarea { width: 100%; border: 1px solid #ced7e3; background: white; border-radius: 9px; padding: 11px 12px; color: var(--text); outline: none; }
input:focus, select:focus, textarea:focus { border-color: #6b9fe9; box-shadow: 0 0 0 3px rgba(33,103,213,.10); }
textarea { min-height: 110px; resize: vertical; }
.form-actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.detail-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; }
.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 15px; }
.info-item { border-bottom: 1px solid #edf0f5; padding-bottom: 12px; }
.info-item small { display: block; color: var(--muted); font-size: 11px; margin-bottom: 4px; }
.info-item strong { font-size: 13px; }
.qr-box { text-align: center; }
.qr-code { display: inline-block; padding: 14px; background: white; border: 1px solid var(--line); border-radius: 13px; }
.qr-code img, .qr-code canvas { max-width: 100%; height: auto; }
.url-box { margin: 12px 0; font-size: 11px; color: var(--muted); word-break: break-all; padding: 10px; border-radius: 8px; background: var(--page); }
.document-list { display: grid; gap: 10px; }
.document-row { border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.document-row strong { font-size: 13px; display: block; }
.document-row small { color: var(--muted); font-size: 11px; }
.actions { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.login-page { min-height: 100vh; display: grid; grid-template-columns: 1.05fr .95fr; background: white; }
.login-visual { background: linear-gradient(150deg, rgba(13,30,54,.97), rgba(23,67,116,.93)), url('https://images.unsplash.com/photo-1596662951482-0c4ba74a6df6?auto=format&fit=crop&w=1500&q=80') center/cover; color: white; padding: 60px; display: flex; flex-direction: column; justify-content: space-between; }
.login-visual .brand { padding: 0; }
.login-copy { max-width: 580px; }
.login-copy h1 { font-size: clamp(34px, 5vw, 60px); line-height: 1.02; letter-spacing: -2px; margin: 0 0 20px; }
.login-copy p { color: #c6d5e8; font-size: 17px; line-height: 1.6; }
.login-features { display: flex; gap: 24px; color: #d9e4f2; font-size: 12px; flex-wrap: wrap; }
.login-panel { display: grid; place-items: center; padding: 40px; }
.login-form { width: min(420px, 100%); }
.login-form h2 { font-size: 29px; margin: 0; }
.login-form > p { color: var(--muted); margin: 8px 0 28px; }
.login-form .form-group { margin-bottom: 15px; }
.login-form .button { width: 100%; padding: 13px; margin-top: 8px; }
.login-note { margin-top: 22px; padding: 12px; background: var(--page); border-radius: 9px; font-size: 12px; color: var(--muted); }
.public-page { min-height: 100vh; background: #eff4fa; padding: 24px 12px; }
.public-container { width: min(760px, 100%); margin: 0 auto; }
.public-header { background: linear-gradient(135deg, var(--navy), #214978); color: white; padding: 24px; border-radius: 16px 16px 0 0; }
.public-header .brand { padding: 0 0 18px; }
.public-header h1 { margin: 0; font-size: 25px; }
.public-header p { color: #c9d8e9; margin: 7px 0 0; font-size: 13px; }
.public-card { background: white; padding: 22px; border-radius: 0 0 16px 16px; box-shadow: var(--shadow); }
.public-section { padding: 19px 0; border-bottom: 1px solid var(--line); }
.public-section:first-child { padding-top: 0; }
.public-section:last-child { border-bottom: 0; padding-bottom: 0; }
.public-section h2 { font-size: 16px; margin: 0 0 13px; }
.check-row { display: grid; grid-template-columns: 26px 1fr; gap: 10px; align-items: start; padding: 10px; border: 1px solid var(--line); border-radius: 9px; margin-bottom: 9px; cursor: pointer; }
.check-row input { width: 18px; height: 18px; margin: 1px 0 0; }
.check-row strong { display: block; font-size: 13px; }
.check-row small { color: var(--muted); font-size: 11px; display: block; margin-top: 3px; }
.signature-wrap { border: 1px solid var(--line); border-radius: 9px; overflow: hidden; background: white; }
#signaturePad { width: 100%; height: 160px; display: block; touch-action: none; }
.signature-actions { border-top: 1px solid var(--line); padding: 8px; text-align: right; background: #fafbfd; }
.report-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.report-code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; background: var(--page); padding: 7px 10px; border-radius: 7px; }
.report-checks { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.report-check { padding: 9px; border: 1px solid var(--line); border-radius: 8px; font-size: 12px; }
.photo-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.photo-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 9px; border: 1px solid var(--line); }
.help { font-size: 11px; color: var(--muted); }
@media (max-width: 1100px) {
    .grid-stats { grid-template-columns: repeat(2, 1fr); }
    .content-grid, .detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .sidebar { transform: translateX(-100%); transition: .2s ease; box-shadow: 20px 0 50px rgba(0,0,0,.2); }
    .sidebar.open { transform: translateX(0); }
    .main-content { margin-left: 0; width: 100%; padding: 0 18px 30px; }
    .menu-button { display: inline-flex; }
    .topbar { justify-content: flex-start; }
    .desktop-action { margin-left: auto; }
    .login-page { grid-template-columns: 1fr; }
    .login-visual { display: none; }
    .login-panel { min-height: 100vh; padding: 24px; }
}
@media (max-width: 620px) {
    .grid-stats, .form-grid, .info-grid, .report-checks { grid-template-columns: 1fr; }
    .report-brand-row { align-items: flex-start; flex-direction: column; }
    .report-brand-row img { max-width: 100%; width: 205px; }
    .report-brand-row span { text-align: left; }
    .topbar h1 { font-size: 21px; }
    .desktop-action { display: none; }
    .card { padding: 16px; }
    .public-page { padding: 0; }
    .public-header, .public-card { border-radius: 0; }
    .photo-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media print {
    .sidebar, .topbar, .no-print, .alert { display: none !important; }
    .main-content { margin: 0; width: 100%; padding: 0; }
    body { background: white; }
    .card { box-shadow: none; border-color: #ccc; break-inside: avoid; }
    .report-brand-row img { width: 62mm; }
}



/* Nieuwe AttractieDossier-huisstijl v2.1 */
.public-brand-block { display: grid; justify-items: center; gap: 2px; margin-bottom: 18px; }
.public-brand { justify-content: center; padding: 0; }
.brand-logo-public { width: min(360px, 86vw); }
.public-company-name { color: var(--muted); font-size: 11px; font-weight: 700; }
.confirmation-brand { margin-bottom: 18px; }
.report-brand-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.report-brand-row img { width: 220px; max-width: 58%; height: auto; }
.report-brand-row span { color: var(--muted); font-size: 11px; font-weight: 750; text-align: right; }

/* Uploadfeedback mobiele checklist */
.upload-selection {
    padding: 10px 12px;
    border: 1px solid #cfe0f7;
    border-radius: 9px;
    background: #f1f6fd;
    color: #31567f;
    font-size: 12px;
    font-weight: 700;
}
.submit-status {
    margin-bottom: 12px;
    padding: 12px 14px;
    border-radius: 9px;
    background: #edf4ff;
    color: #245a9d;
    font-size: 12px;
    font-weight: 750;
    text-align: center;
}
.submit-status.error {
    background: var(--red-bg);
    color: var(--red);
    text-align: left;
}
#submitButton:disabled {
    opacity: .72;
    cursor: wait;
    transform: none;
}

/* =====================================================================
   AttractieDossier v2.1 - website, registratie en abonnementen
   ===================================================================== */
:root {
    --marketing-navy: #0b1e35;
    --marketing-blue: #1768e5;
    --marketing-blue-dark: #0d52bf;
    --marketing-soft: #f3f7fc;
    --marketing-cyan: #dff4ff;
}

/* Algemene marketingwebsite */
.marketing-body { background: #fff; color: #152238; }
.site-container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.94); border-bottom: 1px solid #e7ecf3; backdrop-filter: blur(14px); }
.site-nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.marketing-brand { padding: 0; color: var(--marketing-navy); flex-shrink: 0; }
.brand-logo-marketing { width: 285px; }
.marketing-brand small { color: #718096; }
.site-menu { display: flex; align-items: center; gap: 27px; font-size: 13px; font-weight: 750; }
.site-menu > a:not(.button) { color: #4c5d74; }
.site-menu > a:not(.button):hover { color: var(--marketing-blue); }
.site-login { padding-left: 26px; border-left: 1px solid #e1e7ef; }
.site-menu-button { display: none; border: 1px solid var(--line); background: #fff; border-radius: 9px; padding: 9px 12px; font-size: 18px; }
.hero-section { overflow: hidden; background: radial-gradient(circle at 85% 15%, #e5f3ff 0, transparent 31%), linear-gradient(180deg,#fff 0,#f7faff 100%); padding: 84px 0 95px; }
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; color: var(--marketing-blue); text-transform: uppercase; letter-spacing: .1em; font-size: 11px; font-weight: 850; margin-bottom: 14px; }
.hero-copy h1 { margin: 0; color: var(--marketing-navy); font-size: clamp(42px, 5vw, 69px); line-height: .99; letter-spacing: -3.6px; max-width: 670px; }
.hero-copy h1 em { color: var(--marketing-blue); font-style: normal; }
.hero-lead { max-width: 620px; color: #5d6e84; font-size: 18px; line-height: 1.65; margin: 25px 0 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button-large { padding: 13px 20px; min-height: 47px; font-size: 14px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 25px; color: #607188; font-size: 12px; font-weight: 680; }

/* Productmockup zonder externe afbeeldingen */
.product-preview { position: relative; min-height: 505px; background: white; border: 1px solid #dce5f0; border-radius: 20px; box-shadow: 0 35px 90px rgba(29,67,112,.17); overflow: visible; transform: rotate(.4deg); }
.preview-topbar { height: 54px; display: flex; align-items: center; gap: 14px; padding: 0 18px; border-bottom: 1px solid #e8edf4; color: #233650; font-size: 12px; }
.preview-topbar > strong { margin-right: auto; }
.preview-brand { display: inline-flex; align-items: center; gap: 6px; }
.preview-brand img { width: 26px; height: 20px; object-fit: contain; }
.preview-dots { display: flex; gap: 5px; }
.preview-dots i { width: 7px; height: 7px; border-radius: 50%; background: #cbd5e1; }
.preview-plan { padding: 5px 9px; border-radius: 999px; background: #e9f2ff; color: #1768e5; font-weight: 800; }
.preview-body { height: 450px; display: grid; grid-template-columns: 64px 1fr; }
.preview-sidebar { background: var(--marketing-navy); display: flex; flex-direction: column; align-items: center; gap: 21px; padding: 17px 0; border-radius: 0 0 0 20px; }
.preview-sidebar b { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: white; margin-bottom: 12px; padding: 3px; box-shadow: 0 8px 18px rgba(0,0,0,.2); }
.preview-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.preview-sidebar span { width: 24px; height: 5px; border-radius: 9px; background: rgba(255,255,255,.25); }
.preview-sidebar span.active { background: #70a8fa; }
.preview-content { background: #f5f8fc; padding: 25px 25px 30px; border-radius: 0 0 20px 0; }
.preview-title { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.preview-title div { display: grid; gap: 4px; }
.preview-title small { color: #718096; font-size: 10px; }
.preview-title strong { color: #13263f; font-size: 18px; }
.preview-title > span { background: #1768e5; color: white; padding: 8px 10px; border-radius: 7px; font-size: 9px; font-weight: 800; }
.preview-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; margin: 22px 0; }
.preview-stats div { padding: 13px; background: white; border: 1px solid #e5ebf3; border-radius: 10px; }
.preview-stats small { display: block; color: #8490a1; font-size: 8px; }
.preview-stats b { display: block; font-size: 21px; color: #13263f; margin-top: 5px; }
.preview-card { background: white; border: 1px solid #e5ebf3; border-radius: 11px; padding: 15px; }
.preview-card-head { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 10px; color: #233650; }
.preview-card-head small { color: #8a97a8; }
.preview-row { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 9px; padding: 11px 0; border-top: 1px solid #edf1f6; }
.preview-row:first-of-type { border-top: 0; }
.preview-icon { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; color: #15805a; background: #e7f7f0; font-size: 10px; font-weight: 900; }
.preview-icon.warning { color: #a66413; background: #fff2dc; }
.preview-row div { display: grid; gap: 3px; }
.preview-row b { font-size: 9px; color: #233650; }
.preview-row small { font-size: 7px; color: #8b97a7; }
.preview-row em { font-style: normal; color: #15805a; background: #e7f7f0; border-radius: 999px; padding: 5px 7px; font-size: 7px; font-weight: 800; }
.preview-row em.warning-text { color: #a66413; background: #fff2dc; }
.phone-preview { position: absolute; width: 205px; right: -32px; bottom: -48px; background: #fff; border: 7px solid #0d1d31; border-radius: 29px; padding: 24px 13px 15px; box-shadow: 0 25px 55px rgba(18,41,69,.28); transform: rotate(-4deg); }
.phone-notch { position: absolute; width: 78px; height: 15px; border-radius: 0 0 12px 12px; background: #0d1d31; top: -1px; left: 50%; transform: translateX(-50%); }
.phone-preview > small { display: block; color: #7b8797; font-size: 8px; }
.phone-preview > strong { display: block; color: #13263f; font-size: 12px; margin: 4px 0 13px; }
.phone-check { border: 1px solid #dfe7f0; border-radius: 7px; padding: 8px; margin: 6px 0; color: #34465d; font-size: 7px; }
.phone-button { margin-top: 11px; border-radius: 7px; padding: 9px; background: #1768e5; color: white; text-align: center; font-size: 8px; font-weight: 800; }
.problem-strip { background: var(--marketing-navy); color: white; }
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.problem-grid div { padding: 27px 30px; border-left: 1px solid rgba(255,255,255,.13); }
.problem-grid div:last-child { border-right: 1px solid rgba(255,255,255,.13); }
.problem-grid strong { display: block; font-size: 14px; margin-bottom: 5px; }
.problem-grid span { color: #aebed1; font-size: 12px; }
.marketing-section { padding: 92px 0; }
.soft-section { background: var(--marketing-soft); }
.section-heading { max-width: 680px; text-align: center; margin: 0 auto 46px; }
.section-heading.align-left { text-align: left; margin: 0; }
.section-heading h2 { color: var(--marketing-navy); font-size: clamp(31px,4vw,46px); letter-spacing: -1.7px; line-height: 1.08; margin: 0 0 16px; }
.section-heading p { color: #63748a; font-size: 15px; line-height: 1.7; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.step-card { border: 1px solid #e1e8f1; border-radius: 15px; padding: 25px; background: white; box-shadow: 0 12px 34px rgba(22,54,91,.055); }
.step-card > span { color: var(--marketing-blue); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.step-card h3 { color: var(--marketing-navy); font-size: 17px; margin: 20px 0 9px; }
.step-card p { color: #68788d; font-size: 13px; line-height: 1.65; margin: 0; }
.feature-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: center; }
.text-link { color: var(--marketing-blue); font-size: 13px; font-weight: 800; display: inline-flex; margin-top: 12px; }
.feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }
.feature-grid article { display: flex; gap: 14px; background: white; border: 1px solid #e1e8f1; border-radius: 13px; padding: 19px; }
.feature-symbol { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: #e8f2ff; color: #1768e5; font-weight: 900; }
.feature-grid h3 { color: var(--marketing-navy); margin: 0 0 6px; font-size: 14px; }
.feature-grid p { color: #68788d; font-size: 11px; line-height: 1.6; margin: 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 19px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 30px; border: 1px solid #dfe7f0; border-radius: 17px; background: white; box-shadow: 0 14px 40px rgba(23,55,91,.055); }
.price-card.featured { border: 2px solid var(--marketing-blue); transform: translateY(-10px); box-shadow: 0 24px 60px rgba(23,104,229,.16); }
.popular-label { position: absolute; right: 19px; top: 19px; border-radius: 999px; padding: 6px 9px; background: #e8f2ff; color: #1768e5; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.price-card h3 { color: var(--marketing-navy); font-size: 21px; margin: 0 0 7px; }
.price-card > p { min-height: 52px; color: #6b7b8f; font-size: 12px; line-height: 1.6; }
.price { display: flex; align-items: baseline; color: var(--marketing-navy); margin: 17px 0 6px; }
.price > span { font-size: 18px; font-weight: 800; margin-right: 4px; }
.price strong { font-size: 43px; letter-spacing: -2px; }
.price small { color: #7a889a; font-size: 11px; margin-left: 5px; }
.price-range { color: #506177; font-size: 12px; font-weight: 800; padding-bottom: 20px; border-bottom: 1px solid #e8edf3; }
.price-card ul, .dashboard-price-card ul { display: grid; gap: 11px; padding: 0; margin: 22px 0 25px; list-style: none; color: #516278; font-size: 12px; }
.price-card li::before, .dashboard-price-card li::before { content: '✓'; color: #14805a; font-weight: 900; margin-right: 9px; }
.price-card .button { margin-top: auto; }
.pricing-note { text-align: center; color: #8491a2; font-size: 11px; margin-top: 24px; }
.final-cta { padding: 66px 0; color: white; background: linear-gradient(135deg,#0b1e35,#134b83); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.final-cta .eyebrow { color: #8dc0ff; }
.final-cta h2 { max-width: 760px; margin: 0; font-size: clamp(28px,4vw,44px); letter-spacing: -1.5px; }
.button-light { background: white; color: var(--marketing-navy); }
.site-footer { background: #081726; color: #b9c5d3; padding: 34px 0; }
.footer-inner { display: flex; align-items: center; gap: 35px; }
.footer-brand { color: white; }
.footer-brand .brand-logo-surface { padding: 2px 7px; border-radius: 11px; }
.brand-logo-footer { width: 270px; }
.footer-inner p { margin-right: auto; font-size: 11px; }
.footer-inner > div { display: flex; gap: 20px; font-size: 12px; font-weight: 700; }

/* Inloggen en registratie */
.auth-body { background: #fff; }
.auth-layout { min-height: 100vh; display: grid; grid-template-columns: minmax(380px,.9fr) minmax(500px,1.1fr); }
.auth-side { position: relative; overflow: hidden; padding: 47px clamp(35px,5vw,72px); color: white; background: radial-gradient(circle at 80% 20%, rgba(50,132,232,.38), transparent 34%), linear-gradient(145deg,#091a2e,#123f70); display: flex; flex-direction: column; justify-content: space-between; }
.auth-side::after { content: ''; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; right: -180px; bottom: -130px; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.auth-side .brand { padding: 0; position: relative; z-index: 2; }
.brand-on-dark .brand-logo-surface { padding: 3px 8px; }
.brand-logo-auth { width: 285px; }
.auth-side-copy { max-width: 560px; position: relative; z-index: 2; }
.eyebrow-light { color: #9bc8ff; }
.auth-side-copy h1 { font-size: clamp(36px,5vw,60px); line-height: 1.02; letter-spacing: -2.7px; margin: 0 0 20px; }
.auth-side-copy > p { color: #c4d4e7; font-size: 16px; line-height: 1.7; }
.auth-benefits { display: grid; gap: 10px; margin-top: 26px; color: #d5e3f2; font-size: 12px; font-weight: 680; }
.auth-side-note { z-index: 2; color: #b7c8db; font-size: 12px; }
.auth-side-note a { color: white; font-weight: 800; }
.auth-panel { padding: 45px; display: grid; place-items: center; background: #fff; overflow-y: auto; }
.register-panel { place-items: start center; }
.auth-form { width: min(430px,100%); }
.wide-form { width: min(760px,100%); }
.auth-form-head { margin-bottom: 27px; }
.auth-back { display: inline-flex; color: #718096; font-size: 11px; font-weight: 750; margin-bottom: 31px; }
.auth-form h2 { color: var(--marketing-navy); font-size: 31px; letter-spacing: -1px; margin: 0; }
.auth-form-head p { color: #6d7c8e; font-size: 13px; line-height: 1.6; margin: 8px 0 0; }
.auth-form > .form-group { margin-bottom: 16px; }
.auth-submit { width: 100%; margin-top: 17px; }
.auth-register-link { text-align: center; color: #7b899a; font-size: 12px; margin-top: 20px; }
.auth-register-link a { color: #1768e5; font-weight: 800; }
.plan-picker { border: 0; padding: 0; margin: 25px 0 18px; }
.plan-picker legend { color: #354258; font-size: 12px; font-weight: 800; margin-bottom: 10px; }
.plan-picker-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; }
.plan-option { position: relative; cursor: pointer; }
.plan-option input { position: absolute; opacity: 0; pointer-events: none; }
.plan-option-content { min-height: 150px; display: flex; flex-direction: column; border: 1px solid #dbe3ec; border-radius: 12px; padding: 15px; transition: .15s ease; }
.plan-option input:checked + .plan-option-content { border: 2px solid #1768e5; background: #f5f9ff; box-shadow: 0 8px 25px rgba(23,104,229,.11); }
.plan-option-content > small { align-self: flex-start; color: #1768e5; background: #e5f0ff; border-radius: 999px; padding: 4px 6px; font-size: 7px; font-weight: 900; text-transform: uppercase; margin-bottom: 7px; }
.plan-option-content > strong { color: #14263e; font-size: 15px; }
.plan-option-content > em { color: #788697; font-style: normal; font-size: 10px; margin-top: 4px; }
.plan-option-content > b { color: #14263e; font-size: 24px; margin-top: auto; }
.plan-option-content > b i { color: #8491a1; font-size: 9px; font-style: normal; font-weight: 600; }
.terms-check { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: #69798c; font-size: 11px; line-height: 1.5; cursor: pointer; }
.terms-check input { width: 17px; height: 17px; margin: 0; }
.auth-smallprint { text-align: center; color: #8a96a6; font-size: 10px; line-height: 1.5; }
.honeypot { position: absolute!important; left: -99999px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }

/* Abonnementsweergave in het beheerpaneel */
.nav a i { margin-left: auto; font-style: normal; font-size: 10px; opacity: .65; }
.nav a.nav-disabled { opacity: .42; cursor: not-allowed; }
.nav a.nav-disabled:hover { background: transparent; color: #cbd5e3; }
.nav-divider { height: 1px; background: rgba(255,255,255,.1); margin: 9px 9px; }
.sidebar-plan { display: block; border: 1px solid rgba(255,255,255,.13); border-radius: 11px; margin: 0 4px 9px; padding: 11px; }
.sidebar-plan small { display: block; color: #9fb1c8; font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.sidebar-plan strong { display: block; color: white; font-size: 13px; margin: 3px 0; }
.sidebar-plan span { color: #aab9cc; font-size: 9px; }
.sidebar-plan.pending-plan { background: rgba(196,120,22,.12); border-color: rgba(245,174,77,.22); }
.sidebar-plan.active-plan { background: rgba(31,132,92,.1); border-color: rgba(87,202,151,.19); }
.topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.subscription-chip { display: flex; align-items: center; gap: 7px; border-radius: 10px; padding: 8px 11px; font-size: 10px; }
.subscription-chip span { font-weight: 850; }
.subscription-chip strong { font-weight: 650; opacity: .82; }
.subscription-chip.badge-green { background: var(--green-bg); color: var(--green); }
.subscription-chip.badge-orange { background: var(--orange-bg); color: var(--orange); }
.subscription-chip.badge-red { background: var(--red-bg); color: var(--red); }
.activation-hero { display: grid; grid-template-columns: 1fr 260px; align-items: center; gap: 30px; margin-bottom: 21px; padding: 28px; color: white; border-radius: 16px; background: linear-gradient(135deg,#112a4a,#1a5b9d); box-shadow: 0 18px 45px rgba(21,72,124,.18); }
.activation-hero .eyebrow { color: #9ac7ff; margin-bottom: 8px; }
.activation-hero h2 { font-size: clamp(24px,3vw,36px); letter-spacing: -1.2px; margin: 0 0 10px; }
.activation-hero p { max-width: 760px; color: #cad9e9; font-size: 13px; line-height: 1.65; }
.activation-hero .button-secondary { color: white; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }
.activation-status-box { padding: 21px; border: 1px solid rgba(255,255,255,.17); border-radius: 13px; background: rgba(255,255,255,.08); }
.activation-status-box span, .activation-status-box small { display: block; color: #b9cce0; font-size: 10px; }
.activation-status-box strong { display: block; font-size: 19px; margin: 7px 0; }
.locked-dashboard { position: relative; }
.locked-card { filter: grayscale(.5); opacity: .64; user-select: none; }
.locked-feature-card { position: relative; min-height: 255px; overflow: hidden; }
.locked-overlay { position: absolute; z-index: 4; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #41546d; background: rgba(249,251,253,.62); backdrop-filter: blur(2px); }
.locked-overlay span { font-size: 22px; }
.locked-overlay strong { font-size: 12px; }
.locked-lines { display: grid; gap: 13px; margin-top: 25px; }
.locked-lines i { display: block; height: 26px; border-radius: 7px; background: #e7ebf0; }
.plan-usage-bar { display: grid; grid-template-columns: auto minmax(250px,1fr) auto; gap: 25px; align-items: center; padding: 15px 19px; margin-bottom: 19px; border: 1px solid #dfe7f0; border-radius: 13px; background: white; box-shadow: var(--shadow); }
.plan-usage-bar > div:first-child { display: grid; }
.plan-usage-bar > div:first-child span { color: #8090a2; font-size: 9px; text-transform: uppercase; }
.plan-usage-bar > div:first-child strong { font-size: 15px; }
.plan-usage-bar > div:first-child small { color: #7d8a9a; font-size: 9px; }
.usage-summary { display: grid; gap: 6px; color: #64748a; font-size: 10px; }
.usage-track { height: 6px; border-radius: 999px; background: #e8edf3; overflow: hidden; }
.usage-track i { display: block; height: 100%; border-radius: inherit; background: #1768e5; }
.plan-usage-bar > a { color: #1768e5; font-size: 10px; font-weight: 800; }
.subscription-overview { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px; margin-bottom: 19px; border-radius: 15px; background: linear-gradient(135deg,#102642,#174f88); color: white; }
.subscription-overview .eyebrow { color: #9dc9ff; margin-bottom: 4px; }
.subscription-overview h2 { font-size: 31px; margin: 0; }
.subscription-overview p { color: #c0d0e1; font-size: 12px; }
.subscription-state { min-width: 205px; border-radius: 12px; padding: 14px 17px; }
.subscription-state small, .subscription-state span { display: block; font-size: 9px; }
.subscription-state strong { display: block; font-size: 15px; margin: 4px 0; }
.subscription-state.badge-green { background: rgba(43,191,126,.14); color: #b9f3d8; }
.subscription-state.badge-orange { background: rgba(255,173,60,.15); color: #ffe0ad; }
.subscription-state.badge-red { background: rgba(255,97,97,.14); color: #ffd0d0; }
.subscription-message { padding: 16px 18px; }
.dashboard-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.dashboard-price-card { position: relative; display: flex; flex-direction: column; padding: 20px; border: 1px solid #dfe6ef; border-radius: 13px; }
.dashboard-price-card.selected { border: 2px solid #1768e5; background: #f7faff; }
.current-label { position: absolute; right: 14px; top: 14px; border-radius: 999px; padding: 5px 7px; color: #1768e5; background: #e6f0ff; font-size: 8px; font-weight: 900; }
.dashboard-price-card h3 { margin: 0; font-size: 17px; }
.dashboard-price-card > p { color: #6c7d90; font-size: 11px; }
.dashboard-price-card .price { margin: 12px 0 0; }
.dashboard-price-card .price strong { font-size: 32px; }
.dashboard-price-card .button, .dashboard-price-card form { width: 100%; margin-top: auto; }
.dashboard-price-card form .button { width: 100%; }
.button-disabled, button:disabled { opacity: .55; cursor: not-allowed; transform: none!important; }
.subscription-usage { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.subscription-usage div { border: 1px solid #e2e8f0; border-radius: 11px; padding: 17px; }
.subscription-usage span { display: block; color: #7a899b; font-size: 10px; }
.subscription-usage strong { display: block; font-size: 19px; margin-top: 5px; }
.admin-filter { grid-template-columns: 2fr 1fr auto; margin-bottom: 18px; }
.filter-button { align-self: end; }
.admin-actions { display: flex; gap: 6px; align-items: center; min-width: 360px; }
.admin-actions select { width: 120px; padding: 7px 8px; font-size: 11px; }
.admin-table td { min-width: 110px; }

@media (max-width: 1080px) {
    .hero-grid { grid-template-columns: 1fr; gap: 55px; }
    .hero-copy { text-align: center; }
    .hero-copy h1, .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
    .product-preview { width: min(720px, calc(100% - 45px)); margin: auto; }
    .feature-layout { grid-template-columns: 1fr; gap: 40px; }
    .section-heading.align-left { text-align: center; margin-inline: auto; }
    .steps-grid { grid-template-columns: repeat(2,1fr); }
    .auth-layout { grid-template-columns: .8fr 1.2fr; }
}
@media (max-width: 900px) {
    .site-menu-button { display: inline-flex; }
    .site-menu { position: absolute; inset: 78px 0 auto 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 20px; background: white; border-bottom: 1px solid #e5eaf1; box-shadow: 0 15px 35px rgba(24,52,86,.1); }
    .site-menu.open { display: flex; }
    .site-menu a { padding: 12px; }
    .site-login { border-left: 0; border-top: 1px solid #edf0f5; margin-top: 5px; }
    .problem-grid { grid-template-columns: 1fr; }
    .problem-grid div, .problem-grid div:last-child { border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 570px; margin-inline: auto; }
    .price-card.featured { transform: none; }
    .auth-layout { grid-template-columns: 1fr; }
    .auth-side { display: none; }
    .auth-panel { min-height: 100vh; padding: 28px 20px; }
    .activation-hero { grid-template-columns: 1fr; }
    .dashboard-pricing-grid { grid-template-columns: 1fr; }
    .plan-usage-bar { grid-template-columns: 1fr; gap: 12px; }
    .subscription-chip { display: none; }
}
@media (max-width: 680px) {
    .site-container { width: min(100% - 26px,1160px); }
    .brand-logo-marketing { width: 220px; }
    .brand-logo-footer { width: 210px; }
    .hero-section { padding: 58px 0 74px; }
    .hero-copy h1 { font-size: 43px; letter-spacing: -2.4px; }
    .hero-lead { font-size: 15px; }
    .product-preview { width: 100%; min-height: 395px; }
    .preview-body { height: 340px; grid-template-columns: 46px 1fr; }
    .preview-content { padding: 16px; }
    .preview-stats { gap: 6px; }
    .preview-row em { display: none; }
    .phone-preview { width: 155px; right: -8px; bottom: -38px; }
    .marketing-section { padding: 68px 0; }
    .steps-grid, .feature-grid { grid-template-columns: 1fr; }
    .final-cta-inner, .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-inner p { margin: 0; }
    .plan-picker-grid { grid-template-columns: 1fr; }
    .plan-option-content { min-height: auto; }
    .plan-option-content > b { margin-top: 15px; }
    .subscription-overview { align-items: stretch; flex-direction: column; }
    .subscription-state { min-width: 0; }
    .subscription-usage { grid-template-columns: 1fr; }
    .topbar-actions { margin-left: 0; }
    .admin-filter { grid-template-columns: 1fr; }
}
.public-form-fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.public-form-fieldset.is-locked > section:not(:last-child) { opacity: .45; filter: grayscale(.55); }
.public-form-fieldset.is-locked input,
.public-form-fieldset.is-locked select,
.public-form-fieldset.is-locked textarea,
.public-form-fieldset.is-locked button { cursor: not-allowed; }

/* Juridische basispagina's */
.terms-check a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal-page { padding: 82px 0; min-height: calc(100vh - 160px); background: #f5f8fc; }
.legal-card { max-width: 860px; padding: 48px 54px; border: 1px solid #e0e7f0; border-radius: 20px; background: white; box-shadow: var(--shadow); }
.legal-card h1 { margin: 7px 0 16px; font-size: clamp(38px, 6vw, 58px); letter-spacing: -2px; }
.legal-card h2 { margin: 34px 0 8px; font-size: 19px; }
.legal-card p { color: #5f6f83; font-size: 14px; line-height: 1.75; }
.legal-card a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal-intro { padding: 16px 18px; border-radius: 12px; background: #f0f6ff; color: #315f99!important; }
.legal-updated { margin-top: 38px; font-size: 11px!important; }
.legal-menu { margin-left: auto; }
@media (max-width: 680px) {
    .legal-page { padding: 34px 0; }
    .legal-card { padding: 28px 22px; border-radius: 15px; }
    .legal-menu { display: flex; position: static; padding: 0; box-shadow: none; border: 0; }
    .legal-menu a:first-child { display: none; }
}

/* AttractieDossier v2.2: beveiligde QR-controles en klantkopieën */
.pin-warning-banner { display:flex; align-items:center; justify-content:space-between; gap:18px; }
.pin-explanation { display:flex; gap:15px; align-items:flex-start; padding:16px; margin:0 0 19px; border:1px solid #d9e7f8; border-radius:12px; background:#f4f8fe; }
.pin-explanation p { margin:5px 0 0; color:var(--muted); font-size:12px; line-height:1.55; }
.pin-shield { flex:0 0 42px; width:42px; height:42px; display:grid; place-items:center; border-radius:12px; color:white; background:linear-gradient(135deg,var(--blue),#27a9a5); font-size:22px; font-weight:900; }
.pin-gate { text-align:center; padding:28px 4px 30px; }
.pin-gate h2 { margin:7px 0 8px; font-size:24px; }
.pin-gate > p { max-width:570px; margin:0 auto 18px; color:var(--muted); font-size:13px; line-height:1.65; }
.pin-gate-icon { width:66px; height:66px; display:grid; place-items:center; margin:0 auto 14px; border-radius:20px; color:white; background:linear-gradient(135deg,var(--blue),#26aaa5); box-shadow:0 14px 28px rgba(33,103,213,.2); font-size:31px; }
.pin-form { width:min(390px,100%); margin:20px auto 0; display:grid; gap:10px; text-align:left; }
.pin-form input { text-align:center; font-size:25px; letter-spacing:.35em; font-weight:800; padding-left:calc(12px + .35em); }
.pin-form .button { width:100%; padding:13px; }
.secure-access-notice { margin-bottom:0; }
.inline-check { display:flex; align-items:flex-start; gap:9px; cursor:pointer; margin-top:10px; }
.inline-check input { flex:0 0 auto; width:18px; height:18px; margin:1px 0 0; }
.inline-check span { color:#46556a; font-size:12px; line-height:1.45; font-weight:650; }
.email-copy-check { padding:11px 12px; border:1px solid #dce7f4; border-radius:9px; background:#f7faff; }
.success-report-block .button { text-align:center; }
.report-actions { align-items:center; }
.report-document { border-top:4px solid var(--blue); }
.report-document .report-head h2 { font-size:25px; margin:5px 0 4px; }
.report-head-status { text-align:right; }
.report-check.is-ok { color:var(--green); background:#f5fbf8; border-color:#d5eee3; }
.report-check.is-not-ok { color:var(--red); background:#fff7f7; border-color:#f3d7d7; }
.report-signature { width:100%; max-height:160px; object-fit:contain; border:1px solid var(--line); border-radius:9px; background:white; }
.report-email-card { margin-top:20px; }
.report-email-form { display:grid; grid-template-columns:minmax(250px,1fr) auto; gap:12px; align-items:end; }
.public-report-page { background:#edf2f8; padding:28px 14px 45px; }
.public-report-shell { width:min(1060px,100%); margin:0 auto; }
.public-report-toolbar { display:flex; justify-content:space-between; align-items:center; gap:18px; padding:15px 18px; margin-bottom:18px; border:1px solid #dce4ee; border-radius:13px; background:white; box-shadow:var(--shadow); }
.public-report-toolbar div { display:grid; gap:3px; }
.public-report-toolbar small { color:var(--muted); }
.public-report-footer { text-align:center; color:var(--muted); font-size:11px; line-height:1.6; padding:10px 20px; }

@media (max-width:680px) {
    .pin-warning-banner, .public-report-toolbar { align-items:stretch; flex-direction:column; }
    .pin-warning-banner .button, .public-report-toolbar .button { width:100%; }
    .report-email-form { grid-template-columns:1fr; }
    .report-head { flex-direction:column; }
    .report-head-status { text-align:left; }
    .public-report-page { padding:0; }
    .public-report-toolbar { margin:0; border-radius:0; }
    .public-report-shell > .card, .public-report-shell .detail-grid .card { border-radius:0; margin-bottom:0; border-left:0; border-right:0; }
}

@media print {
    .public-report-page { padding:0; }
    .public-report-shell { width:100%; }
    .public-report-footer { display:none; }
    .report-layout { grid-template-columns:1.3fr .7fr; }
    .report-document { border-top-color:#222; }
    .photo-grid img { break-inside:avoid; }
}


/* v2.3 branding refinement */
.app-brand img { display:block; }
.sidebar .app-brand:hover { opacity: .96; }
.sidebar .app-brand { margin-bottom: 4px; }
.footer-brand .brand-logo-surface,
.brand-on-dark .brand-logo-surface { background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.55); box-shadow: 0 12px 28px rgba(3,14,30,.18); }
.marketing-brand .brand-logo-surface, .public-brand .brand-logo-surface { background: transparent; border: 0; box-shadow: none; padding: 0; }
.report-brand-row img { width: 260px; max-width: 62%; }
.preview-brand img, .preview-logo-icon img { image-rendering: auto; }


/* v2.4 - exact approved logo placement */
.public-header .public-brand { background: rgba(255,255,255,.98); border-radius: 12px; padding: 8px 12px; box-shadow: 0 10px 26px rgba(4,19,40,.18); }
.public-header .public-brand img { display:block; }
.app-logo-tile img { display:block; }
.marketing-brand > img, .report-brand-row img, .label-logo, .brand-logo-auth, .brand-logo-footer { object-fit: contain; }
@media (max-width: 680px) {
  .brand-logo-marketing { width: 230px; }
  .brand-logo-auth { width: 235px; }
  .brand-logo-footer { width: 220px; }
  .brand-logo-public { width: min(310px, 82vw); }
}

/* v2.5 - duidelijke software-uitleg op homepage */
.software-section { background: #fff; }
.software-heading { max-width: 790px; }
.software-heading p { font-size: 16px; }
.software-overview { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 45px; }
.software-card { display: flex; align-items: flex-start; gap: 17px; min-height: 250px; padding: 27px; border: 1px solid #dfe7f1; border-radius: 17px; background: #fff; box-shadow: 0 15px 45px rgba(22,54,91,.07); }
.software-card-icon { flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; color: #1768e5; background: #e8f2ff; font-size: 20px; font-weight: 900; }
.software-card small { color: #1768e5; font-size: 9px; line-height: 1.4; font-weight: 900; letter-spacing: .09em; }
.software-card h3 { color: var(--marketing-navy); font-size: 18px; line-height: 1.25; margin: 9px 0 10px; }
.software-card p { color: #63748a; font-size: 13px; line-height: 1.72; margin: 0; }
.role-explainer { display: grid; grid-template-columns: .75fr 1.7fr; align-items: center; gap: 45px; margin-top: 28px; padding: 31px 34px; border-radius: 17px; color: white; background: linear-gradient(135deg,#0b1e35,#134b83); }
.role-intro .eyebrow { color: #8dc0ff; margin-bottom: 7px; }
.role-intro h3 { font-size: 24px; line-height: 1.15; margin: 0; }
.role-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.role-grid div { padding-left: 19px; border-left: 1px solid rgba(255,255,255,.18); }
.role-grid strong { display: block; margin-bottom: 7px; font-size: 13px; }
.role-grid span { display: block; color: #c8d7e8; font-size: 11px; line-height: 1.6; }
.process-heading { max-width: 760px; margin-top: 82px; }
.clear-steps .step-card { border-top: 4px solid #1768e5; }
.clear-steps .step-card > span { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px; color: #1768e5; background: #e8f2ff; letter-spacing: 0; }

@media (max-width: 980px) {
    .software-overview { grid-template-columns: 1fr; }
    .software-card { min-height: 0; }
    .role-explainer { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .role-explainer { padding: 25px; }
    .role-grid { grid-template-columns: 1fr; gap: 15px; }
    .role-grid div { padding: 0 0 15px; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
    .role-grid div:last-child { padding-bottom: 0; border-bottom: 0; }
    .software-card { padding: 22px; }
}

/* =====================================================================
   AttractieDossier v3.0 - medewerkeraccounts en bedrijfsbranding
   ===================================================================== */
.employee-company-brand { display:grid; justify-items:center; gap:7px; padding:0 8px 24px; text-align:center; }
.employee-company-logo { width:100%; min-height:76px; max-height:100px; display:flex; align-items:center; justify-content:center; padding:10px; border-radius:14px; background:#fff; box-shadow:0 14px 32px rgba(2,13,29,.24); overflow:hidden; }
.employee-company-logo img { display:block; max-width:100%; max-height:76px; object-fit:contain; }
.employee-company-placeholder { width:68px; height:68px; display:grid; place-items:center; border-radius:18px; color:#fff; background:linear-gradient(135deg,#1768e5,#17b9c4); font-size:24px; font-weight:900; box-shadow:0 14px 30px rgba(20,102,213,.28); }
.employee-company-brand strong { max-width:210px; color:#fff; font-size:14px; line-height:1.25; }
.employee-company-brand small { color:#9eb0c5; font-size:10px; text-transform:uppercase; letter-spacing:.09em; font-weight:800; }
.employee-powered { display:grid; gap:4px; padding:14px 8px; margin-bottom:4px; border-top:1px solid rgba(255,255,255,.1); }
.employee-powered span { color:#7f93aa; font-size:9px; text-transform:uppercase; letter-spacing:.08em; }
.employee-powered img { width:150px; max-width:100%; padding:5px 7px; border-radius:7px; background:rgba(255,255,255,.96); }
.role-chip { display:grid; gap:2px; min-width:112px; padding:8px 12px; border:1px solid #dce5f0; border-radius:10px; background:#fff; }
.role-chip small { color:var(--muted); font-size:9px; text-transform:uppercase; letter-spacing:.06em; font-weight:800; }
.role-chip strong { color:var(--blue); font-size:12px; }
.employee-welcome { display:flex; align-items:center; justify-content:space-between; gap:35px; padding:30px 33px; margin-bottom:20px; border-radius:18px; color:#fff; background:radial-gradient(circle at 85% 20%,rgba(46,151,239,.35),transparent 35%),linear-gradient(135deg,#0b1e35,#164f86); box-shadow:0 20px 48px rgba(15,44,78,.16); }
.employee-welcome h2 { max-width:690px; margin:5px 0 10px; font-size:29px; line-height:1.15; letter-spacing:-.8px; }
.employee-welcome p { max-width:760px; margin:0; color:#c8d8e9; font-size:13px; line-height:1.65; }
.employee-welcome .eyebrow { color:#8dc0ff; }
.employee-welcome .button { flex:0 0 auto; }
.employee-stats { grid-template-columns:repeat(4,minmax(0,1fr)); }
.stat-company-name { font-size:17px!important; line-height:1.25; margin-top:12px!important; }
.work-flow-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; margin-bottom:20px; overflow:hidden; border:1px solid #dfe7f0; border-radius:15px; background:#dfe7f0; box-shadow:var(--shadow); }
.work-flow-strip article { display:flex; gap:14px; padding:20px; background:#fff; }
.work-flow-strip article > span { flex:0 0 34px; width:34px; height:34px; display:grid; place-items:center; border-radius:10px; color:#1768e5; background:#e8f2ff; font-weight:900; }
.work-flow-strip strong { display:block; font-size:13px; margin-bottom:5px; }
.work-flow-strip p { margin:0; color:var(--muted); font-size:11px; line-height:1.55; }
.employee-content-grid { grid-template-columns:1.25fr .75fr; }
.employee-attraction-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.employee-attraction-card { display:flex; align-items:flex-end; justify-content:space-between; gap:12px; min-height:148px; padding:17px; border:1px solid #e1e8f1; border-radius:13px; background:linear-gradient(180deg,#fff,#f9fbfe); }
.employee-attraction-card h3 { margin:12px 0 5px; font-size:15px; }
.employee-attraction-card p { margin:0; color:var(--muted); font-size:11px; }
.employee-attraction-card.is-disabled { opacity:.68; background:#f5f6f8; }
.employee-start-card { text-align:center; padding:12px 4px 4px; }
.employee-start-card h2 { margin:12px 0 8px; }
.employee-start-card p { color:var(--muted); font-size:12px; line-height:1.6; }
.employee-start-icon { width:60px; height:60px; display:grid; place-items:center; margin:auto; border-radius:18px; color:#fff; background:linear-gradient(135deg,#1768e5,#15b6c2); font-size:25px; font-weight:900; box-shadow:0 14px 30px rgba(23,104,229,.2); }
.employee-usage-bar { margin-bottom:20px; }
.info-banner { display:flex; align-items:flex-start; gap:14px; padding:15px 17px; margin-bottom:18px; border:1px solid #dce8f6; border-radius:12px; background:#f5f9ff; }
.info-banner > span { flex:0 0 38px; width:38px; height:38px; display:grid; place-items:center; border-radius:11px; color:#1768e5; background:#e5f0ff; font-weight:900; }
.info-banner strong { font-size:13px; }
.info-banner p { margin:5px 0 0; color:var(--muted); font-size:11px; line-height:1.55; }
.employee-form-card { max-width:900px; }
.checkbox-line { display:flex; align-items:center; gap:10px; cursor:pointer; }
.checkbox-line input { width:18px; height:18px; }
.profile-grid { align-items:start; }
.company-logo-settings { display:grid; grid-template-columns:270px 1fr; gap:28px; align-items:center; }
.company-logo-preview { min-height:150px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; padding:20px; border:1px dashed #cbd7e5; border-radius:14px; background:#f8fafc; }
.company-logo-preview img { max-width:100%; max-height:110px; object-fit:contain; }
.company-logo-preview > span { width:72px; height:72px; display:grid; place-items:center; border-radius:18px; color:#fff; background:linear-gradient(135deg,#1768e5,#16b6c4); font-size:24px; font-weight:900; }
.company-logo-preview small { color:var(--muted); }
.scan-company-brand { min-height:76px; padding:10px 14px; border-radius:12px; background:rgba(255,255,255,.98); box-shadow:0 10px 26px rgba(4,19,40,.18); }
.scan-company-logo { display:block; max-width:min(310px,80vw); max-height:80px; object-fit:contain; }
.scan-company-name { color:#102a4f; font-size:21px; }
.scan-company-brand .public-company-name { color:#64758a; }
.report-dual-brand { align-items:center; }
.report-company-brand { display:flex; align-items:center; min-height:52px; max-width:48%; }
.report-company-brand img { width:auto!important; max-width:260px!important; max-height:70px; object-fit:contain; }
.report-company-brand strong { color:#102a4f; font-size:20px; }
.report-powered-brand { display:grid; justify-items:end; gap:4px; margin-left:auto; }
.report-powered-brand span { color:var(--muted); font-size:9px; text-transform:uppercase; letter-spacing:.06em; }
.report-powered-brand img { width:190px!important; max-width:100%!important; }
.price-range span { display:inline-block; margin-top:5px; color:#1768e5; font-size:11px; }

@media (max-width:1050px) {
    .employee-stats { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .employee-content-grid { grid-template-columns:1fr; }
}
@media (max-width:760px) {
    .employee-welcome { align-items:stretch; flex-direction:column; padding:24px; }
    .employee-welcome .button { width:100%; }
    .work-flow-strip { grid-template-columns:1fr; }
    .employee-attraction-grid { grid-template-columns:1fr; }
    .company-logo-settings { grid-template-columns:1fr; }
    .report-dual-brand { align-items:flex-start; flex-direction:column; }
    .report-company-brand { max-width:100%; }
    .report-powered-brand { justify-items:start; margin-left:0; }
}
@media (max-width:520px) {
    .employee-stats { grid-template-columns:1fr; }
}
@media print {
    .report-dual-brand { flex-direction:row; }
    .report-company-brand { max-width:48%; }
    .report-powered-brand { margin-left:auto; }
}

/* =====================================================================
   AttractieDossier v3.1 - smooth scroll, contact en klantenservice
   ===================================================================== */
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
#werkwijze, #functies, #prijzen, #contact { scroll-margin-top: 92px; }
.marketing-flashes { position: relative; z-index: 3; padding-top: 20px; }
.marketing-flashes .alert { margin-bottom: 0; box-shadow: 0 10px 30px rgba(23,55,91,.08); }
.contact-section { background: linear-gradient(180deg,#f4f8fd,#fff); border-top: 1px solid #e4ebf3; }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 75px; align-items: center; }
.contact-copy h2 { margin: 0 0 18px; color: var(--marketing-navy); font-size: clamp(34px,4vw,49px); line-height: 1.08; letter-spacing: -1.8px; }
.contact-copy > p { margin: 0 0 28px; color: #63748a; font-size: 15px; line-height: 1.75; }
.contact-points { display: grid; gap: 15px; margin-bottom: 27px; }
.contact-points > div { display: flex; align-items: flex-start; gap: 12px; }
.contact-points > div > span { flex: 0 0 28px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; color: #14805a; background: #e6f7ef; font-weight: 900; }
.contact-points p { display: grid; gap: 3px; margin: 0; }
.contact-points strong { color: #17304e; font-size: 13px; }
.contact-points small { color: #728196; font-size: 11px; line-height: 1.5; }
.contact-form-card { position: relative; padding: 31px; border: 1px solid #dfe7f0; border-radius: 18px; background: #fff; box-shadow: 0 24px 65px rgba(22,54,91,.1); }
.contact-form-card textarea { min-height: 145px; }
.contact-form-card > .button { width: 100%; margin-top: 18px; }
.contact-privacy { display: block; margin-top: 13px; color: #8491a1; font-size: 10px; line-height: 1.5; text-align: center; }
.contact-honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.optional-label { color: var(--muted); font-size: 10px; font-weight: 600; }
.footer-inner > p { line-height: 1.65; }
.footer-inner > p strong { color: #fff; font-size: 12px; }
.footer-inner > div { flex-wrap: wrap; }

.nav-count { margin-left: auto; min-width: 21px; height: 21px; display: inline-grid; place-items: center; padding: 0 6px; border-radius: 999px; color: #0e3d76; background: #b9dcff; font-size: 10px; font-style: normal; font-weight: 900; }
.nav-count-alert { color: #fff; background: #e47b35; }
.support-hero { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 20px; padding: 29px 32px; border-radius: 18px; color: #fff; background: radial-gradient(circle at 90% 20%,rgba(51,161,239,.38),transparent 35%),linear-gradient(135deg,#0b1e35,#164f86); box-shadow: 0 20px 48px rgba(15,44,78,.14); }
.support-hero h2 { margin: 5px 0 9px; font-size: 27px; letter-spacing: -.7px; }
.support-hero p { max-width: 720px; margin: 0; color: #c8d8e9; font-size: 13px; line-height: 1.65; }
.support-hero .eyebrow { margin-bottom: 0; color: #8dc0ff; }
.support-hero-icon { flex: 0 0 64px; width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 19px; background: rgba(255,255,255,.1); font-size: 30px; font-weight: 900; }
.support-layout { display: grid; grid-template-columns: minmax(360px,.78fr) minmax(0,1.22fr); gap: 20px; align-items: start; }
.support-new-card { position: sticky; top: 20px; }
.support-new-card textarea { min-height: 155px; }
.support-list-card { min-width: 0; }
.ticket-list { display: grid; gap: 10px; }
.ticket-row { display: grid; grid-template-columns: 38px minmax(0,1fr) auto; align-items: center; gap: 13px; padding: 14px; border: 1px solid #e0e7f0; border-radius: 12px; background: #fff; transition: .15s ease; }
.ticket-row:hover { transform: translateY(-1px); border-color: #b9d1ee; box-shadow: 0 10px 28px rgba(23,55,91,.07); }
.ticket-row.is-unread { border-color: #9fc4f3; background: #f5f9ff; box-shadow: inset 4px 0 #1768e5; }
.ticket-symbol { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: #1768e5; background: #e7f1ff; font-size: 13px; font-weight: 900; }
.ticket-main { min-width: 0; display: grid; gap: 4px; }
.ticket-main small { color: #748399; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.ticket-main strong { overflow: hidden; color: #1a2d47; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.ticket-main > span { overflow: hidden; color: #7a8798; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.ticket-meta { display: grid; justify-items: end; gap: 7px; }
.ticket-meta small { color: #8b97a7; font-size: 9px; white-space: nowrap; }
.support-empty { display: grid; gap: 6px; }
.support-empty strong { color: #273a54; }
.support-empty span { font-size: 11px; }
.admin-ticket-list { margin-top: 18px; }
.support-filter { grid-template-columns: 1.3fr .7fr .7fr auto; }
.ticket-page-head { margin-bottom: 18px; }
.ticket-page-head > .text-link { margin: 0 0 13px; }
.ticket-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 23px 25px; border: 1px solid #e1e7ef; border-radius: 15px; background: #fff; box-shadow: var(--shadow); }
.ticket-title-row small { color: #1768e5; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.ticket-title-row h2 { margin: 7px 0 5px; color: #142841; font-size: 23px; }
.ticket-title-row p { margin: 4px 0 0; color: #748196; font-size: 11px; }
.ticket-title-row p a { color: #1768e5; }
.conversation-card { padding: 25px; }
.conversation-thread { display: grid; gap: 16px; padding: 5px 0 25px; }
.message-bubble { width: min(760px,88%); padding: 17px 18px; border-radius: 14px; }
.message-bubble.from-customer { justify-self: start; border: 1px solid #dfe6ef; border-bottom-left-radius: 4px; background: #f7f9fc; }
.message-bubble.from-platform { justify-self: end; border-bottom-right-radius: 4px; color: #fff; background: linear-gradient(135deg,#155cc7,#176fe6); box-shadow: 0 12px 28px rgba(23,104,229,.17); }
.message-author { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 9px; }
.message-author strong { font-size: 11px; }
.message-author small { color: inherit; opacity: .7; font-size: 9px; white-space: nowrap; }
.message-text { font-size: 13px; line-height: 1.7; }
.ticket-reply-form { padding-top: 22px; border-top: 1px solid #e5eaf1; }
.ticket-reply-form textarea { min-height: 130px; }
.ticket-close-form { margin-top: 12px; }
.ticket-closed-box { display: flex; align-items: center; gap: 13px; padding: 16px; border: 1px solid #d7eadf; border-radius: 12px; background: #f3fbf7; }
.ticket-closed-box > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; color: #17845b; background: #ddf4e8; font-weight: 900; }
.ticket-closed-box div { margin-right: auto; }
.ticket-closed-box strong { font-size: 13px; }
.ticket-closed-box p { margin: 3px 0 0; color: #6f7d8f; font-size: 10px; }
.ticket-admin-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid #e7ebf1; }

@media (max-width: 1050px) {
    .contact-layout { grid-template-columns: 1fr; gap: 42px; }
    .support-layout { grid-template-columns: 1fr; }
    .support-new-card { position: static; }
    .support-filter { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
    html { scroll-padding-top: 78px; }
    #werkwijze, #functies, #prijzen, #contact { scroll-margin-top: 78px; }
    .contact-form-card { padding: 23px 19px; }
    .support-hero { align-items: flex-start; padding: 24px; }
    .support-hero-icon { display: none; }
    .ticket-row { grid-template-columns: 35px minmax(0,1fr); }
    .ticket-meta { grid-column: 2; justify-items: start; grid-template-columns: auto auto; align-items: center; }
    .support-filter { grid-template-columns: 1fr; }
    .ticket-title-row { flex-direction: column; padding: 20px; }
    .message-bubble { width: 96%; }
    .message-author { flex-direction: column; gap: 3px; }
    .ticket-closed-box { align-items: flex-start; flex-wrap: wrap; }
    .ticket-admin-actions { justify-content: flex-start; }
}
.contact-flashes { margin-bottom: 24px; }
.contact-flashes .alert { margin-bottom: 10px; box-shadow: 0 10px 30px rgba(23,55,91,.08); }
