:root {
    --green: #b7dc00;
    --green-deep: #9fbe00;
    --green-soft: #f2f8d9;
    --green-pale: #f7faea;
    --ink: #26272a;
    --ink-2: #44474e;
    --muted: #6d7179;
    --line: #e7e8e5;
    --surface: #ffffff;
    --surface-soft: #f7f7f6;
    --dark: #242424;
    --cyan: #4bc3d4;
    --cyan-soft: #e6f8fb;
    --pink: #ef7898;
    --pink-soft: #fff0f4;
    --orange: #ffa03d;
    --orange-soft: #fff4e7;
    --purple: #9c6be5;
    --purple-soft: #f4effd;
    --peach: #f4a25a;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 7px 24px rgba(31, 37, 15, .07);
    --shadow: 0 18px 52px rgba(31, 37, 15, .10);
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "Poppins", "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }
[hidden] { display: none !important; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.025em; }
h1 {
    font-size: clamp(2.45rem, 2.7vw, 2.85rem);
    font-weight: 800;
    margin-bottom: 24px;
}
h2 { font-size: clamp(2rem, 3.25vw, 3.25rem); font-weight: 800; margin-bottom: 18px; }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.4rem); font-weight: 700; margin-bottom: 12px; }
p { color: var(--ink-2); }

.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--surface-soft); }
.section-heading { max-width: 780px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 14px; }
.section-heading p { margin-bottom: 0; font-size: 1.03rem; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr); gap: 60px; align-items: end; max-width: none; }
.split-heading > p { margin-bottom: 8px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: var(--green-deep);
    font-size: .75rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 3px; border-radius: 999px; background: currentColor; }
.eyebrow-light { color: #fff; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; left: 14px; top: -80px; z-index: 2000; padding: 10px 16px; background: #fff; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 14px; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 78px;
    background: var(--green);
    border-bottom: 1px solid rgba(255,255,255,.20);
    transition: background .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.site-header.is-scrolled { background: rgba(183,220,0,.98); border-color: rgba(255,255,255,.20); box-shadow: 0 8px 30px rgba(25,30,10,.10); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { width: 174px; height: auto; }
.brand-logo { display: block; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 3px; font-size: .83rem; font-weight: 600; }
.main-nav > a:not(.button), .nav-group > summary { padding: 11px 10px; border-radius: 9px; cursor: pointer; color: #213000; white-space: nowrap; }
.site-header.is-scrolled .main-nav > a:not(.button), .site-header.is-scrolled .nav-group > summary { color: #213000; }
.main-nav > a:not(.button):hover, .nav-group > summary:hover, .nav-group[data-active="true"] > summary, .main-nav > a.is-active { background: rgba(255,255,255,.22); }
.site-header.is-scrolled .main-nav > a:not(.button):hover, .site-header.is-scrolled .nav-group > summary:hover, .site-header.is-scrolled .nav-group[data-active="true"] > summary, .site-header.is-scrolled .main-nav > a.is-active { background: rgba(255,255,255,.22); }
.nav-group { position: relative; }
.nav-group > summary::after { content: "⌄"; margin-left: 5px; font-size: .9em; }
.nav-dropdown {
    position: absolute; top: calc(100% + 11px); left: 50%; transform: translateX(-50%);
    width: 330px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius);
    background: #fff; box-shadow: var(--shadow); display: grid; gap: 3px;
}
.nav-dropdown a { padding: 10px 12px; border-radius: 9px; color: var(--ink-2); line-height: 1.32; font-weight: 600; }
.nav-dropdown a:hover, .nav-dropdown a[aria-current="page"] { background: var(--green-soft); color: var(--ink); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 10px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span:not(.sr-only) { width: 22px; height: 2px; background: currentColor; border-radius: 99px; }
.button {
    display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 22px;
    border: 0; border-radius: 999px; background: var(--green); color: #253000; font-weight: 800;
    line-height: 1.2; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(61,80,0,.16); filter: saturate(1.05); }
.button-small { min-height: 41px; padding: 9px 17px; font-size: .8rem; }
.button-nav { background: var(--peach); color: #fff; margin-left: 10px; }
.button-warm, .button-peach { background: var(--peach); color: #fff; }
.button-cyan { background: var(--cyan); color: #fff; }
.button-light { background: #fff; color: var(--ink); }
.button-secondary { background: #fff; color: var(--ink); border: 1px solid #d8dbd4; }
.text-link, .text-button { color: #7f9c00; font-weight: 800; }
.text-link:hover, .text-button:hover { text-decoration: underline; }

/* Breadcrumbs */
.breadcrumbs { min-height: 46px; display: flex; align-items: center; gap: 8px; color: #7b7f78; font-size: .78rem; }
.breadcrumbs a:hover { color: var(--green-deep); }

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(112deg, #b9df00 0%, #b3d900 58%, #a9cf00 100%);
    color: #fff;
}
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; right: -120px; top: -180px; border-radius: 50%; background: rgba(255,255,255,.085); }
.hero::after { content: ""; position: absolute; width: 300px; height: 300px; right: 29%; bottom: -210px; border-radius: 50%; background: rgba(255,255,255,.06); }
.hero-grid { min-height: 575px; display: grid; grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr); align-items: center; gap: 60px; padding-top: 58px; padding-bottom: 66px; position: relative; z-index: 1; }
.hero-copy { max-width: 635px; }
.hero-copy h1 { max-width: 680px; color: #fff; text-wrap: balance; }
.hero-eyebrow { color: #fff; opacity: .92; }
.hero-lead { max-width: 670px; color: rgba(255,255,255,.94); font-size: 1.08rem; line-height: 1.7; margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.hero-proof { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 22px 0 0; }
.hero-proof li { padding: 7px 11px; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; background: rgba(255,255,255,.10); color: #fff; font-size: .76rem; font-weight: 700; }
.hero-media { position: relative; min-height: 430px; display: grid; place-items: center; }
.hero-image-shell { position: relative; width: min(100%, 640px); filter: drop-shadow(0 28px 28px rgba(55,73,0,.20)); }
.hero-image-shell img { width: 100%; object-fit: contain; }
.hero-module-card { position: absolute; right: 10px; bottom: 38px; padding: 12px 16px; min-width: 205px; border-radius: 14px; background: rgba(255,255,255,.94); color: var(--ink); box-shadow: var(--shadow-sm); }
.hero-module-card span { display: block; color: var(--muted); font-size: .70rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.hero-module-card strong { display: block; margin-top: 2px; font-size: .95rem; }

/* Direct answer */
.answer-section { padding: 34px 0 18px; background: #fff; }
.answer-card { display: grid; grid-template-columns: 66px 1fr; gap: 22px; align-items: center; padding: 25px 30px; background: linear-gradient(90deg, #f7f9ee, #fbfcf7); border: 1px solid #edf0df; border-radius: 18px; }
.answer-icon { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: #fff; font-weight: 800; box-shadow: 0 8px 18px rgba(159,190,0,.24); }
.answer-label { display: block; color: var(--green-deep); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 5px; }
.answer-card h2 { font-size: clamp(1.2rem, 1.9vw, 1.72rem); margin-bottom: 5px; }
.answer-card p { margin: 0; max-width: 980px; font-size: .96rem; }

/* Pain cards */
.pain-section { padding-top: 78px; padding-bottom: 90px; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pain-grid article { position: relative; min-height: 245px; padding: 27px 26px 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.pain-grid article::after { content: ""; position: absolute; inset: auto -28px -32px auto; width: 100px; height: 100px; border-radius: 50%; background: var(--green-soft); }
.pain-grid article > span { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--green-soft); color: var(--green-deep); font-weight: 800; font-size: .75rem; }
.pain-grid article h3 { margin-top: 18px; }
.pain-grid article p { font-size: .91rem; margin-bottom: 18px; }
.pain-grid article strong { display: block; position: relative; z-index: 1; color: #667f00; font-size: .86rem; line-height: 1.45; }

/* Highlights */
.highlights-section { padding-top: 80px; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.highlight-card { position: relative; min-height: 225px; padding: 28px 25px; border-radius: var(--radius); color: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.highlight-card:nth-child(4n+1) { background: linear-gradient(145deg, #45cad7, #39bccb); }
.highlight-card:nth-child(4n+2) { background: linear-gradient(145deg, #f083a0, #ec6f91); }
.highlight-card:nth-child(4n+3) { background: linear-gradient(145deg, #ffa647, #f49332); }
.highlight-card:nth-child(4n+4) { background: linear-gradient(145deg, #a375eb, #8f60db); }
.highlight-card::after { content: ""; position: absolute; width: 105px; height: 105px; border: 25px solid rgba(255,255,255,.10); border-radius: 50%; right: -50px; bottom: -52px; }
.highlight-card .card-index { display: inline-flex; align-items: center; justify-content: center; width: 37px; height: 37px; border-radius: 10px; background: rgba(255,255,255,.18); color: #fff; font-size: .75rem; font-weight: 800; }
.highlight-card h3 { color: #fff; margin-top: 24px; font-size: 1.24rem; }
.highlight-card p { color: rgba(255,255,255,.93); font-size: .89rem; margin: 0; }

/* Official product image storytelling */
.home-showcase { padding: 94px 0; }
.home-showcase-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); gap: 68px; align-items: center; }
.home-showcase-grid-reverse { grid-template-columns: minmax(0, .95fr) minmax(0, 1fr); }
.home-showcase-copy h2 { max-width: 620px; }
.home-showcase-copy > p { font-size: 1.02rem; max-width: 610px; }
.photo-frame, .device-frame { position: relative; border-radius: 20px; overflow: hidden; background: #f0f1ed; box-shadow: var(--shadow); }
.photo-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(30,34,22,.06); border-radius: inherit; pointer-events: none; }
.photo-frame img { width: 100%; aspect-ratio: 1.48/1; object-fit: cover; }
.device-frame { background: transparent; box-shadow: none; overflow: visible; }
.device-frame img { width: 100%; filter: drop-shadow(0 22px 18px rgba(20,24,11,.13)); }
.showcase-points { display: grid; gap: 18px; margin-top: 28px; }
.showcase-points > div { display: grid; grid-template-columns: 44px 1fr; gap: 15px; align-items: start; }
.showcase-points strong { display: block; margin: 3px 0 2px; }
.showcase-points p { font-size: .88rem; margin: 0; }
.showcase-icon { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: .71rem; font-weight: 800; }
.showcase-icon-orange { background: var(--orange); }
.showcase-icon-blue { background: var(--cyan); }
.showcase-icon-purple { background: var(--purple); }
.showcase-icon-pink { background: var(--pink); }
.home-phase-band { background: var(--green); padding: 25px 0; }
.home-phase-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.home-phase-band span { display: block; color: rgba(36,48,0,.75); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.home-phase-band h2 { font-size: clamp(1.25rem, 2.1vw, 1.95rem); margin: 4px 0 0; color: #fff; }

.product-proof-section { padding-top: 90px; }
.product-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-proof-grid article { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.product-proof-grid article img { width: 100%; aspect-ratio: 1.55/1; object-fit: cover; background: #f2f2ef; }
.product-proof-grid article > div { padding: 22px 22px 24px; }
.product-proof-grid article > div > span { color: var(--green-deep); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-proof-grid h3 { margin: 8px 0 9px; }
.product-proof-grid p { font-size: .88rem; }
.product-proof-grid a { color: #7f9b00; font-size: .85rem; font-weight: 800; }

/* Work mode tabs */
.workmode-section { background: #fff; }
.workmode-layout { display: grid; grid-template-columns: 300px 1fr; gap: 26px; align-items: stretch; }
.audience-tabs { display: grid; align-content: start; gap: 8px; }
.audience-tabs button { width: 100%; text-align: left; border: 1px solid var(--line); border-radius: 12px; padding: 15px 17px; background: #fff; color: var(--ink-2); font-weight: 700; cursor: pointer; transition: .18s ease; }
.audience-tabs button:hover, .audience-tabs button[aria-selected="true"] { border-color: var(--green); background: var(--green-soft); color: var(--ink); transform: translateX(3px); }
.audience-panels { min-width: 0; }
.audience-panel { display: none; min-height: 100%; padding: 36px 38px; border-radius: var(--radius-lg); background: var(--dark); color: #fff; box-shadow: var(--shadow); }
.audience-panel.is-active { display: block; }
.audience-panel h3 { color: #fff; max-width: 690px; font-size: clamp(1.65rem, 2.5vw, 2.55rem); }
.audience-panel p { color: rgba(255,255,255,.76); max-width: 760px; }
.panel-kicker { color: var(--green); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.module-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.module-tags span { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: rgba(183,220,0,.14); border: 1px solid rgba(183,220,0,.30); color: #e5ff62; font-size: .74rem; font-weight: 700; }
.audience-panel .text-link { color: var(--green); }

/* Generic content sections */
.content-grid { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: 78px; align-items: start; }
.content-heading { position: sticky; top: 112px; }
.content-heading p { font-size: 1rem; }
.content-body { max-width: 720px; }
.content-body > p { font-size: 1rem; }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 11px; }
.check-list li { position: relative; padding: 12px 14px 12px 43px; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--ink-2); }
.check-list li::before { content: "✓"; position: absolute; left: 13px; top: 11px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-size: .72rem; font-weight: 900; }
.section-soft .check-list li { background: #fff; }

/* Workflow */
.workflow-section { background: #fff; }
.workflow-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: workflow; }
.workflow-list li { min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.workflow-number { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; margin-bottom: 22px; background: var(--green-soft); color: var(--green-deep); font-size: .76rem; font-weight: 800; }
.workflow-list li:nth-child(6n+2) .workflow-number { background: var(--pink-soft); color: #d95e82; }
.workflow-list li:nth-child(6n+3) .workflow-number { background: var(--orange-soft); color: #e47c15; }
.workflow-list li:nth-child(6n+4) .workflow-number { background: var(--purple-soft); color: #7d4ac4; }
.workflow-list li:nth-child(6n+5) .workflow-number { background: var(--cyan-soft); color: #269caf; }
.workflow-list li h3 { font-size: 1.1rem; }
.workflow-list li p { font-size: .86rem; margin-bottom: 0; }

/* Source / author */
.source-section { padding-top: 38px; padding-bottom: 38px; }
.source-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; padding: 28px 32px; border-radius: var(--radius); background: var(--green-pale); border: 1px solid #e9efcc; }
.source-card h2 { font-size: 1.45rem; margin-bottom: 0; }
.source-card ul { margin: 0; padding-left: 20px; }
.source-card a { color: #627a00; text-decoration: underline; }
.author-section { padding: 25px 0 55px; }
.author-card { display: flex; gap: 18px; align-items: center; padding-top: 26px; border-top: 1px solid var(--line); }
.author-mark { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-weight: 800; }
.author-card p { margin: 2px 0 0; font-size: .82rem; color: var(--muted); }

/* FAQ */
.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: 70px; }
.faq-list { display: grid; gap: 8px; }
.faq-list details { border: 1px solid var(--line); border-radius: 11px; background: #fff; overflow: hidden; }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 16px 18px; cursor: pointer; font-weight: 700; line-height: 1.35; }
.faq-list summary span { width: 27px; height: 27px; flex: 0 0 27px; display: grid; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green-deep); transition: transform .18s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details div { padding: 0 18px 18px; }
.faq-list details p { margin: 0; font-size: .91rem; }

/* Related */
.related-section { background: var(--green-pale); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card { display: block; padding: 25px; border-radius: var(--radius); background: #fff; border: 1px solid #e7ead8; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.related-card > span { color: var(--green-deep); font-size: .69rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.related-card h3 { margin: 12px 0 11px; }
.related-card p { font-size: .86rem; }
.related-card strong { color: #718b00; font-size: .83rem; }

/* Conversion */
.conversion-section { padding: 28px 0 90px; }
.conversion-card { display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: center; padding: 40px 44px; border-radius: 20px; background: linear-gradient(110deg, #acd100, #c1e616); color: #fff; overflow: hidden; position: relative; }
.conversion-card::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; border: 45px solid rgba(255,255,255,.10); right: -85px; top: -70px; }
.conversion-card h2 { color: #fff; max-width: 700px; font-size: clamp(1.65rem, 2.7vw, 2.7rem); margin-bottom: 10px; }
.conversion-card p { color: rgba(255,255,255,.91); margin: 0; max-width: 730px; }
.conversion-actions { display: flex; gap: 10px; flex-wrap: wrap; position: relative; z-index: 1; }

/* Scan: one continuous process from question to result and follow-up */
.scan-section { padding: 72px 0 86px; background: #f7f8f4; scroll-margin-top: 82px; }
.scan-shell { max-width: 980px; margin: 0 auto; border: 1px solid var(--line); border-radius: 8px; background: #fff; overflow: hidden; }
.scan-flow-head { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; padding: 38px 42px 26px; }
.scan-flow-head h2 { margin: 5px 0 8px; font-size: clamp(1.75rem, 2.8vw, 2.45rem); }
.scan-flow-head p { max-width: 650px; margin: 0; color: var(--muted); }
.scan-flow-status { min-width: 155px; text-align: right; }
.scan-flow-status strong { display: block; color: var(--ink); font-size: 1.25rem; }
.scan-flow-status span { display: block; margin-top: 2px; color: var(--green-deep); font-size: .75rem; font-weight: 800; }
.scan-progress { height: 5px; background: #edf0e7; overflow: hidden; }
.scan-progress span { display: block; height: 100%; background: var(--green); transition: width .28s ease; }
.scan-question-form { padding: 46px 42px 34px; }
.question-list { list-style: none; padding: 0; margin: 0; }
.question-card { min-height: 300px; display: flex; flex-direction: column; justify-content: center; padding: 0; border: 0; background: transparent; }
.question-card[hidden] { display: none !important; }
.question-stage { display: inline-flex; align-self: flex-start; margin-bottom: 14px; color: var(--green-deep); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.question-copy { display: grid; grid-template-columns: 42px 1fr; gap: 18px; align-items: start; max-width: 820px; }
.question-copy > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #344000; font-size: .72rem; font-weight: 800; }
.question-copy h3 { margin: 0; max-width: 760px; font-size: clamp(1.35rem, 2.35vw, 2rem); line-height: 1.2; }
.question-copy p { margin: 10px 0 0; max-width: 690px; color: var(--muted); font-size: .9rem; }
.answer-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 30px 0 0 60px; max-width: 650px; }
.answer-options label { position: relative; cursor: pointer; }
.answer-options input { position: absolute; opacity: 0; pointer-events: none; }
.answer-options span { display: grid; min-height: 54px; place-items: center; padding: 12px 14px; border: 1px solid #dfe2d8; border-radius: 6px; background: #fff; color: var(--ink-2); font-size: .84rem; font-weight: 800; transition: border-color .18s ease, background .18s ease, color .18s ease; }
.answer-options label:hover span { border-color: #b8c27e; }
.answer-options input:checked + span { border-color: var(--green); background: var(--green-soft); color: #4b5c00; }
.answer-options input:focus-visible + span { outline: 3px solid rgba(183,220,0,.22); outline-offset: 2px; }
.scan-form-actions { min-height: 54px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; }
.scan-form-actions .scan-back { justify-self: start; }
.scan-form-actions p { margin: 0; color: #a33d4e; text-align: center; font-size: .82rem; }
.scan-form-actions .scan-next-button { justify-self: end; min-width: 155px; }
.scan-form-actions .scan-next-button:disabled { opacity: .45; cursor: not-allowed; }
.scan-result-section, .scan-inline-section { padding: 42px; border-top: 1px solid var(--line); }
.scan-result-section[hidden], .scan-inline-section[hidden] { display: none !important; }
.scan-result-heading, .scan-inline-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 42px; align-items: end; margin-bottom: 28px; }
.scan-result-heading h2, .scan-inline-heading h2 { margin: 4px 0 0; font-size: clamp(1.65rem, 2.6vw, 2.25rem); }
.scan-result-heading > p, .scan-inline-heading > p { margin: 0; color: var(--muted); font-size: .88rem; }
.scan-result-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 16px; margin-bottom: 18px; }
.scan-main-score { padding: 24px; background: var(--green-soft); border: 1px solid #dce8ab; }
.scan-main-score > span { display: block; color: #617300; font-size: .75rem; font-weight: 800; }
.scan-main-score > strong { display: block; margin: 3px 0 14px; color: #394500; font-size: 2.35rem; }
.scan-main-score p { margin: 12px 0 0; color: #68713e; font-size: .8rem; }
.scan-main-score progress, .scan-mini-scores progress { width: 100%; height: 7px; accent-color: var(--green); }
.scan-mini-scores { display: grid; gap: 8px; }
.scan-mini-scores article { display: grid; grid-template-columns: 1fr auto; gap: 8px 14px; align-items: center; padding: 13px 15px; border: 1px solid var(--line); background: #fff; }
.scan-mini-scores span { color: var(--muted); font-size: .76rem; font-weight: 700; }
.scan-mini-scores strong { font-size: 1rem; }
.scan-mini-scores progress { grid-column: 1 / -1; }
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.result-card { padding: 19px; border: 1px solid var(--line); background: #fff; }
.result-card ul, .result-card ol { padding-left: 18px; margin-bottom: 0; }
.result-card li { margin-bottom: 7px; color: var(--ink-2); font-size: .82rem; }
.module-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 12px; }
.module-tags span { padding: 7px 9px; background: var(--green-soft); color: #5a6d00; font-size: .72rem; font-weight: 800; }
.scan-next, .lead-form-footer { margin-top: 24px; display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.calculator-section { background: #fafbf7; }
.calculator-form, .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 18px; }
.calculator-form-simple { max-width: 760px; }
.calculator-form label, .lead-form label { display: grid; gap: 7px; color: var(--ink-2); font-size: .82rem; font-weight: 700; }
.calculator-form input, .lead-form input, .lead-form select, .lead-form textarea { width: 100%; min-height: 47px; border: 1px solid #dcded7; border-radius: 6px; background: #fff; padding: 10px 12px; color: var(--ink); outline: none; }
.lead-form textarea { min-height: 108px; resize: vertical; }
.calculator-form input:focus, .lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--green-deep); box-shadow: 0 0 0 3px rgba(183,220,0,.13); }
.calculator-actions, .form-wide { grid-column: 1 / -1; }
.calculator-result { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.calculator-result > div { padding: 15px; background: #fff; border: 1px solid var(--line); }
.calculator-result span { display: block; color: var(--muted); font-size: .72rem; }
.calculator-result strong { display: block; margin-top: 3px; font-size: 1.12rem; }
.calculator-total { grid-column: 1 / -1; background: var(--green-soft) !important; border-color: #dceaa5 !important; }
.calculator-total strong { font-size: 1.55rem; color: #657b00; }
.calculator-result > p { grid-column: 1 / -1; margin: 2px 0 0; font-size: .76rem; color: var(--muted); }
.scan-contact-section { background: #fff; }
.lead-form { margin-top: 6px; }
.lead-form-simple { max-width: 820px; }
.form-grid-simple { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.consent-check { margin-top: 18px; display: flex !important; grid-template-columns: auto 1fr !important; align-items: flex-start; gap: 9px !important; }
.consent-check input { width: auto; min-height: 0; margin-top: 3px; }
.consent-check a { color: #718b00; text-decoration: underline; }
.scan-contact-alternatives { display: flex; align-items: center; gap: 16px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .78rem; }
.scan-contact-alternatives span { color: var(--muted); }
.scan-contact-alternatives a { color: var(--green-deep); font-weight: 800; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

/* Request */
.request-hero { background: linear-gradient(112deg, #b9df00, #aacf00); padding: 64px 0 72px; }
.request-hero-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: center; }
.request-hero h1, .request-hero .eyebrow { color: #fff; }
.request-hero p { color: rgba(255,255,255,.94); font-size: 1.05rem; }
.request-points { display: grid; gap: 10px; margin-top: 24px; }
.request-points > div { padding: 11px 13px; border-radius: 10px; background: rgba(255,255,255,.12); color: #fff; font-weight: 700; }
.request-section { padding: 76px 0 95px; }
.request-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 30px; align-items: start; }
.request-form-card, .request-sidebar > div { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.request-form-card { padding: 24px; }
.request-iframe { width: 100%; min-height: 760px; border: 0; border-radius: 11px; background: #fafafa; }
.request-sidebar { display: grid; gap: 16px; }
.request-sidebar > div { padding: 23px; }
.request-sidebar h2 { font-size: 1.3rem; }
.scan-summary { white-space: pre-line; font-size: .85rem; background: var(--green-pale); border-radius: 10px; padding: 13px; }
.official-note, .legal-referral, .iframe-fallback { font-size: .83rem; color: var(--muted); }

/* 404 */
.not-found { padding: 110px 0; }
.not-found-inner { max-width: 720px; text-align: center; }
.error-code { display: block; color: var(--green); font-size: 5rem; line-height: 1; font-weight: 900; }
.not-found .hero-actions { justify-content: center; }

/* Footer */
/* Official SolvCRM+ links and certification */
.certification-strip { background: #f7f9f1; border-top: 1px solid rgba(30,40,20,.06); border-bottom: 1px solid rgba(30,40,20,.08); }
.certification-strip-inner { min-height: 126px; display: flex; align-items: center; justify-content: space-between; gap: 34px; padding-top: 20px; padding-bottom: 20px; }
.certification-intro { max-width: 640px; display: grid; gap: 7px; }
.certification-intro strong { font-size: .96rem; line-height: 1.55; color: #243028; }
.certification-kicker { color: #668116; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.certification-links { display: flex; gap: 12px; flex: 0 0 auto; }
.certification-badge { min-width: 180px; display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 1px 7px; padding: 13px 15px; border-radius: 12px; border: 1px solid rgba(42,58,35,.11); background: #fff; box-shadow: 0 8px 24px rgba(30,40,20,.06); color: #202820; }
.certification-badge > span { font-size: .64rem; font-weight: 800; color: #718523; }
.certification-badge > strong { font-size: 1.25rem; line-height: 1; }
.certification-badge > small, .certification-badge > em { grid-column: 1 / -1; }
.certification-badge > small { margin-top: 4px; color: #5d665f; font-size: .68rem; }
.certification-badge > em { margin-top: 5px; color: #668116; font-size: .66rem; font-style: normal; font-weight: 800; }
.certification-badge:hover { transform: translateY(-1px); border-color: rgba(112,143,27,.35); }
.conversion-text-link { color: #fff; font-size: .77rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.request-official-links { display: grid; gap: 10px; margin-top: 18px; }
.request-official-links a { display: grid; gap: 3px; padding: 13px 14px; border: 1px solid rgba(34,47,37,.1); border-radius: 10px; background: #fff; }
.request-official-links strong { color: #263127; font-size: .78rem; }
.request-official-links span { color: #69716b; font-size: .69rem; line-height: 1.45; }
.footer-certifications a { display: grid !important; gap: 2px !important; padding: 7px 0; }
.footer-certifications b { color: #fff; font-size: .78rem; }
.footer-certifications span { color: rgba(255,255,255,.48); font-size: .66rem; }
.site-footer { background: #242424; color: #fff; padding-top: 58px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 36px; padding-bottom: 48px; }
.footer-brand img { width: 175px; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,.62); max-width: 310px; font-size: .83rem; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.footer-grid strong { color: var(--green); font-size: .82rem; margin-bottom: 6px; }
.footer-grid a { color: rgba(255,255,255,.68); font-size: .78rem; line-height: 1.45; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { min-height: 66px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 25px; color: rgba(255,255,255,.45); font-size: .73rem; }
.footer-bottom > span:last-child { display: flex; gap: 18px; }
.footer-bottom a:hover { color: #fff; }

/* Responsive */
@media (max-width: 1080px) {
    .container { width: min(calc(100% - 36px), var(--max)); }
    .main-nav { gap: 0; font-size: .76rem; }
    .main-nav > a:not(.button), .nav-group > summary { padding-inline: 7px; }
    .hero-grid { grid-template-columns: .95fr 1.05fr; gap: 32px; }
    .pain-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.2fr repeat(4, 1fr); gap: 22px; }
}

@media (max-width: 920px) {
    .site-header { height: 72px; }
    .nav-toggle { display: flex; margin-left: auto; color: #fff; }
    .site-header.is-scrolled .nav-toggle { color: var(--ink); }
    .main-nav { position: fixed; left: 18px; right: 18px; top: 82px; max-height: calc(100vh - 100px); overflow: auto; display: none; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
    .main-nav.is-open { display: block; }
    .main-nav > a:not(.button), .nav-group > summary { display: block; width: 100%; color: var(--ink) !important; padding: 12px; }
    .nav-group { width: 100%; }
    .nav-dropdown { position: static; transform: none; width: 100%; border: 0; border-radius: 0; box-shadow: none; padding: 4px 8px 8px 18px; }
    .button-nav { width: 100%; margin: 10px 0 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 16px; padding-top: 56px; }
    .hero-copy { max-width: 760px; }
    .hero-media { min-height: 360px; }
    .hero-image-shell { width: min(100%, 650px); }
    .split-heading, .content-grid, .faq-grid, .source-card, .request-hero-grid, .request-layout, .scan-intro { grid-template-columns: 1fr; gap: 28px; }
    .content-heading { position: static; }
    .home-showcase-grid, .home-showcase-grid-reverse { grid-template-columns: 1fr; gap: 45px; }
    .home-showcase-grid-reverse .home-showcase-copy { order: 2; }
    .home-showcase-grid-reverse .home-showcase-device { order: 1; }
    .workmode-layout { grid-template-columns: 1fr; }
    .audience-tabs { grid-template-columns: repeat(2, 1fr); }
    .workflow-list { grid-template-columns: repeat(2, 1fr); }
    .product-proof-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
    .score-grid { grid-template-columns: repeat(2, 1fr); }
    .result-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 760px) {
    .scan-flow-head, .scan-result-heading, .scan-inline-heading { grid-template-columns: 1fr; gap: 14px; }
    .scan-flow-status { text-align: left; }
    .scan-question-form, .scan-flow-head, .scan-result-section, .scan-inline-section { padding-left: 22px; padding-right: 22px; }
    .question-card { min-height: 0; padding: 10px 0 4px; }
    .question-copy { grid-template-columns: 36px 1fr; gap: 12px; }
    .question-copy > span { width: 34px; height: 34px; }
    .answer-options { margin-left: 0; grid-template-columns: 1fr; }
    .answer-options span { min-height: 48px; }
    .scan-form-actions { grid-template-columns: auto 1fr; }
    .scan-form-actions p { grid-column: 1 / -1; grid-row: 1; text-align: left; }
    .scan-form-actions .scan-back { grid-column: 1; grid-row: 2; }
    .scan-form-actions .scan-next-button { grid-column: 2; grid-row: 2; width: 100%; }
    .scan-result-layout, .result-grid { grid-template-columns: 1fr; }
    .calculator-form, .form-grid, .form-grid-simple, .calculator-result { grid-template-columns: 1fr; }
    .calculator-actions, .form-wide, .calculator-total, .calculator-result > p { grid-column: auto; }
    .scan-next, .lead-form-footer { align-items: stretch; flex-direction: column; }
    .scan-next .button, .lead-form-footer .button { width: 100%; }
    .scan-contact-alternatives { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (max-width: 680px) {
    body { font-size: 15px; }
    .container { width: min(calc(100% - 28px), var(--max)); }
    .section { padding: 68px 0; }
    h1 { font-size: clamp(2.2rem, 8vw, 2.85rem); }
    h2 { font-size: clamp(1.7rem, 8vw, 2.35rem); }
    .brand-logo { width: 154px; }
    .hero-grid { min-height: 0; padding: 46px 0 50px; }
    .hero-lead { font-size: 1rem; }
    .hero-actions .button { width: 100%; }
    .hero-proof { gap: 6px; }
    .hero-proof li { font-size: .69rem; }
    .hero-media { min-height: 260px; }
    .hero-module-card { right: 0; bottom: 15px; transform: scale(.88); transform-origin: right bottom; }
    .answer-card { grid-template-columns: 1fr; padding: 22px; }
    .answer-icon { width: 48px; height: 48px; }
    .pain-grid, .highlight-grid, .product-proof-grid, .workflow-list, .related-grid { grid-template-columns: 1fr; }
    .pain-grid article { min-height: 0; }
    .highlight-card { min-height: 190px; }
    .home-showcase { padding: 68px 0; }
    .home-phase-band-inner { align-items: flex-start; flex-direction: column; }
    .home-phase-band .button { width: 100%; }
    .audience-tabs { display: flex; overflow-x: auto; padding-bottom: 4px; }
    .audience-tabs button { min-width: 185px; }
    .audience-panel { padding: 27px 24px; }
    .conversion-card { grid-template-columns: 1fr; padding: 30px 25px; }
    .conversion-actions { width: 100%; }
    .conversion-actions .button { width: 100%; }
    .answer-options { grid-template-columns: 1fr; }
    .calculator-form, .form-grid, .calculator-result { grid-template-columns: 1fr; }
    .calculator-actions, .form-wide, .calculator-total, .calculator-result > p { grid-column: auto; }
    .score-grid { grid-template-columns: 1fr; }
    .request-iframe { min-height: 920px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; padding: 18px 0; }
    .footer-bottom > span:last-child { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

@media (max-width: 980px) {
  .certification-strip-inner { align-items: flex-start; flex-direction: column; }
  .certification-links { width: 100%; }
  .certification-badge { flex: 1 1 0; }
  .footer-grid { grid-template-columns: 1.25fr repeat(2, 1fr); }
  .footer-brand { grid-row: span 2; }
  .footer-grid > div:last-child { grid-column: auto; }
}
@media (max-width: 640px) {
  .certification-links { flex-direction: column; }
  .certification-badge { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; grid-row: auto; }
  .footer-grid > div:last-child { grid-column: auto; }
}

/* ==========================================================================\n   SolvCRM+ basisstijl - visual alignment with solvcrm.nl\n   Uses only supplied/official SolvCRM product imagery.\n   ========================================================================== */
:root {
    --green: #b7db18;
    --green-deep: #9dbb16;
    --green-soft: #f1f7d6;
    --green-pale: #f6f9e8;
    --ink: #303136;
    --ink-2: #51545a;
    --muted: #777b81;
    --line: #e5e6e4;
    --surface-soft: #f8f8f7;
    --dark: #242424;
    --cyan: #55c6d4;
    --pink: #ee82a2;
    --orange: #f5a33e;
    --purple: #9b70de;
    --peach: #efa368;
    --radius-sm: 7px;
    --radius: 10px;
    --radius-lg: 14px;
    --shadow-sm: 0 4px 15px rgba(31, 37, 15, .06);
    --shadow: 0 10px 28px rgba(31, 37, 15, .09);
    --max: 1120px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
}

h1, h2, h3, h4 { letter-spacing: -.02em; }
h1 {
    font-size: clamp(2.45rem, 2.7vw, 2.85rem);
    font-weight: 800;
    margin-bottom: 24px;
}
h2 { font-size: clamp(1.72rem, 2.2vw, 2.25rem); line-height: 1.12; font-weight: 800; }
h3 { font-size: clamp(1.05rem, 1.25vw, 1.25rem); line-height: 1.2; font-weight: 700; }
p { color: var(--ink-2); }
.container { width: min(calc(100% - 44px), var(--max)); }
.section { padding: 76px 0; }
.section-soft { background: #f8f8f7; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.split-heading { gap: 52px; }
.eyebrow { margin-bottom: 11px; font-size: .70rem; letter-spacing: .08em; }
.eyebrow::before { width: 18px; height: 2px; }

/* Header - compact like the main SolvCRM site */
.site-header,
.site-header.is-scrolled {
    height: 64px;
    background: var(--green);
    border-bottom: 0;
    box-shadow: none;
}
.header-inner { gap: 28px; }
.brand-logo { width: 151px; }
.main-nav { gap: 0; font-size: .74rem; font-weight: 600; }
.main-nav > a:not(.button), .nav-group > summary,
.site-header.is-scrolled .main-nav > a:not(.button),
.site-header.is-scrolled .nav-group > summary {
    color: #2b3419;
    padding: 9px 8px;
    border-radius: 5px;
}
.main-nav > a:not(.button):hover, .nav-group > summary:hover,
.nav-group[data-active="true"] > summary, .main-nav > a.is-active,
.site-header.is-scrolled .main-nav > a:not(.button):hover,
.site-header.is-scrolled .nav-group > summary:hover,
.site-header.is-scrolled .nav-group[data-active="true"] > summary,
.site-header.is-scrolled .main-nav > a.is-active { background: rgba(255,255,255,.24); }
.nav-dropdown { top: calc(100% + 9px); width: 310px; border-radius: 8px; padding: 9px; box-shadow: 0 10px 25px rgba(30,35,20,.12); }
.nav-dropdown a { padding: 9px 10px; border-radius: 5px; font-size: .75rem; }
.button { min-height: 43px; padding: 10px 20px; border-radius: 22px; font-size: .78rem; box-shadow: none; }
.button:hover { transform: none; box-shadow: none; filter: brightness(.98); }
.button-small { min-height: 37px; padding: 8px 16px; }
.button-nav { margin-left: 10px; background: var(--peach); color: #fff; }
.breadcrumbs { min-height: 38px; font-size: .72rem; }

/* Hero - flat brand green, real product image, no decorative effects */
.hero { background: var(--green); color: #fff; }
.hero::before, .hero::after { display: none; }
.hero-grid {
    min-height: 440px;
    grid-template-columns: minmax(0, .92fr) minmax(410px, 1.08fr);
    gap: 50px;
    padding-top: 46px;
    padding-bottom: 44px;
}
.hero-copy { max-width: 540px; }
.hero-copy h1 { max-width: 540px; color: #fff; text-wrap: pretty; }
.hero-eyebrow { color: rgba(255,255,255,.96); }
.hero-lead { max-width: 560px; margin-bottom: 21px; color: rgba(255,255,255,.94); font-size: .96rem; line-height: 1.62; }
.hero-actions { margin: 18px 0 0; gap: 10px; }
.hero-media { min-height: 330px; display: flex; align-items: center; justify-content: center; }
.hero-product-image { width: min(100%, 625px); object-fit: contain; filter: drop-shadow(0 16px 18px rgba(55,65,20,.16)); }
.hero-trust-row { display: flex; align-items: center; gap: 9px; margin-top: 18px; }
.iso-mini {
    width: 62px;
    height: 66px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 2px solid #f39a2f;
    border-radius: 5px;
    color: #28302a;
    line-height: 1;
}
.iso-mini:nth-child(2) { border-color: #3f9dce; }
.iso-mini span { font-size: .62rem; font-weight: 800; }
.iso-mini strong { margin-top: 3px; font-size: 1rem; }
.hero-webinar-link { margin-left: 5px; color: #fff; font-size: .75rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* Direct answer: simple, factual */
.answer-section { padding: 31px 0 12px; }
.answer-card {
    display: grid;
    grid-template-columns: 165px 1fr;
    gap: 26px;
    align-items: start;
    padding: 21px 24px;
    background: #f7f9ed;
    border: 1px solid #e8ecd5;
    border-radius: 8px;
}
.answer-label { margin-top: 4px; color: #788e18; font-size: .69rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.answer-card h2 { margin-bottom: 6px; font-size: 1.25rem; }
.answer-card p { margin: 0; font-size: .91rem; line-height: 1.55; }
.answer-icon { display: none; }

/* Four central capabilities - copied from the visual rhythm of solvcrm.nl */
.highlights-section { padding-top: 62px; padding-bottom: 65px; }
.highlights-home .section-heading { margin-inline: auto; text-align: center; }
.highlights-home .section-heading .eyebrow { justify-content: center; }
.highlight-grid { gap: 15px; }
.highlights-home .highlight-grid { grid-template-columns: repeat(4, 1fr); }
.highlight-card {
    min-height: 190px;
    padding: 25px 21px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(35,40,30,.06);
}
.highlight-card::after { display: none; }
.highlight-card .card-index { display: inline-block; margin-bottom: 18px; color: #8b971e; font-size: .72rem; font-weight: 800; }
.highlight-card h3 { margin-bottom: 9px; }
.highlight-card p { margin: 0; font-size: .84rem; line-height: 1.55; }
.highlights-home .highlight-card { min-height: 205px; border: 0; color: #fff; box-shadow: 0 5px 13px rgba(45,45,45,.10); }
.highlights-home .highlight-card h3,
.highlights-home .highlight-card p,
.highlights-home .highlight-card .card-index { color: #fff; }
.highlights-home .highlight-card-1 { background: var(--cyan); }
.highlights-home .highlight-card-2 { background: var(--pink); }
.highlights-home .highlight-card-3 { background: var(--orange); }
.highlights-home .highlight-card-4 { background: var(--purple); }

/* Product showcase: large supplied SolvCRM imagery and readable copy */
.home-showcase { padding: 72px 0; }
.home-showcase-second { background: #fff; }
.home-showcase-grid { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 62px; }
.home-showcase-grid-reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.home-showcase-media {
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f3;
}
.home-showcase-media img { width: 100%; height: 100%; max-height: 430px; object-fit: cover; }
.home-showcase-mobile { background: #f6f7f2; padding: 18px; }
.home-showcase-mobile img { object-fit: contain; }
.home-showcase-copy h2 { max-width: 510px; margin-bottom: 14px; }
.home-showcase-copy > p { max-width: 570px; margin-bottom: 24px; font-size: .93rem; }
.showcase-points { gap: 15px; }
.showcase-points > div { display: grid; grid-template-columns: 36px 1fr; gap: 13px; align-items: start; }
.showcase-points > div > span,
.showcase-icon { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 50%; background: #f2a341; color: #fff; font-size: .69rem; font-weight: 800; }
.showcase-points > div:nth-child(2) > span { background: var(--cyan); }
.showcase-points > div:nth-child(3) > span { background: var(--purple); }
.showcase-points strong { font-size: .84rem; }
.showcase-points p { margin: 2px 0 0; font-size: .81rem; line-height: 1.5; }

.home-phase-band { padding: 0; background: var(--green); }
.home-phase-band-inner { min-height: 145px; display: flex; justify-content: space-between; align-items: center; gap: 34px; }
.home-phase-band-inner span { color: rgba(255,255,255,.9); font-size: .74rem; }
.home-phase-band-inner h2 { max-width: 650px; margin: 4px 0 0; color: #fff; font-size: 1.75rem; }
.phase-actions { display: flex; gap: 10px; flex: 0 0 auto; }

/* Pain points: no generic card wall */
.pain-section { padding: 78px 0 80px; background: #fff; }
.pain-layout { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: 70px; align-items: start; }
.pain-heading { position: sticky; top: 92px; }
.pain-heading h2 { margin-bottom: 14px; }
.pain-heading p { font-size: .92rem; }
.pain-list { border-top: 1px solid var(--line); }
.pain-list article { display: grid; grid-template-columns: 44px 1fr; gap: 17px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.pain-list article > span { color: #98b315; font-size: .70rem; font-weight: 800; padding-top: 3px; }
.pain-list h3 { margin-bottom: 5px; font-size: 1.03rem; }
.pain-list p { margin: 0 0 5px; font-size: .84rem; }
.pain-list strong { color: #6f840d; font-size: .79rem; font-weight: 700; }

/* Screenshots / supplied product imagery */
.product-proof-section { background: #f8f8f7; }
.product-proof-grid { gap: 17px; }
.product-proof-grid article { border: 1px solid #e5e6e2; border-radius: 8px; background: #fff; box-shadow: 0 4px 13px rgba(30,35,25,.05); overflow: hidden; }
.product-proof-grid article > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: top; background: #f3f4f1; border-bottom: 1px solid var(--line); }
.product-proof-grid article > div { padding: 18px 19px 20px; }
.product-proof-grid article span { color: #8ba414; font-size: .65rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.product-proof-grid article h3 { margin: 7px 0 7px; font-size: 1rem; }
.product-proof-grid article p { margin-bottom: 12px; font-size: .80rem; }
.product-proof-grid article a { color: #7c940e; font-size: .76rem; font-weight: 800; }

/* Standard content pages */
.content-grid { gap: 66px; }
.content-heading h2 { max-width: 480px; }
.content-heading > p { font-size: .91rem; }
.content-body { font-size: .92rem; }
.check-list li { margin-bottom: 8px; }
.workflow-section { background: #f8f8f7; }
.workflow-list { gap: 0; border-top: 1px solid #dfe1dc; }
.workflow-list li { min-height: 0; padding: 20px 0; border: 0; border-bottom: 1px solid #dfe1dc; border-radius: 0; box-shadow: none; display: grid; grid-template-columns: 48px 1fr; gap: 16px; }
.workflow-number { width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: #344000; display: grid; place-items: center; font-size: .68rem; font-weight: 800; }
.workflow-list h3 { margin-bottom: 5px; font-size: 1rem; }
.workflow-list p { margin: 0; font-size: .82rem; }

/* FAQ and related content kept restrained */
.faq-item { border-bottom: 1px solid var(--line); border-radius: 0; box-shadow: none; }
.faq-item summary { padding: 16px 0; }
.faq-item > div { padding: 0 0 16px; }
.related-grid { gap: 14px; }
.related-card { border-radius: 8px; box-shadow: 0 4px 12px rgba(30,35,25,.05); }

/* Conversion section in the same rhythm as solvcrm.nl */
.conversion-section { padding: 58px 0; background: #fff; }
.conversion-card {
    min-height: 175px;
    border-radius: 0;
    background: var(--green);
    box-shadow: none;
    padding: 34px 42px;
}
.conversion-card::before, .conversion-card::after { display: none; }
.conversion-card h2 { max-width: 620px; margin-bottom: 8px; color: #fff; font-size: 1.85rem; }
.conversion-card p { max-width: 660px; margin-bottom: 0; color: rgba(255,255,255,.91); font-size: .88rem; }
.conversion-actions { gap: 9px; }
.conversion-text-link { margin-top: 4px; }

/* Certification: public clicks go to Over ons, never directly to certificate PDFs */
.certification-strip { background: #f6f8eb; }
.certification-strip-inner { min-height: 110px; }
.certification-intro p { margin: 0; color: #657064; font-size: .76rem; }
.footer-certifications small { margin-top: 4px; color: rgba(255,255,255,.40); font-size: .60rem; line-height: 1.45; }
.footer-about { display: inline-block; margin-top: 4px; color: #b7db18 !important; font-weight: 700; }

/* Scan and request stay deliberately restrained and close to SolvCRM.nl */
.request-form-card, .request-sidebar > div { border-radius: 8px; box-shadow: none; }
.request-iframe { border-radius: 6px; }
.request-official-links a { border-radius: 6px; }

/* Footer */
.site-footer { padding-top: 50px; background: #242424; }
.footer-grid { grid-template-columns: 1.35fr 1fr 1fr .9fr .9fr; gap: 30px; padding-bottom: 40px; }
.footer-brand img { width: 150px; margin-bottom: 15px; }
.footer-brand p { font-size: .76rem; line-height: 1.55; }
.footer-grid strong { color: var(--green); font-size: .75rem; }
.footer-grid a { font-size: .72rem; }
.footer-bottom { min-height: 58px; font-size: .67rem; }

@media (max-width: 1080px) {
    .main-nav { font-size: .70rem; }
    .main-nav > a:not(.button), .nav-group > summary { padding-inline: 6px; }
    .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 34px; }
    .highlights-home .highlight-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
    .site-header, .site-header.is-scrolled { height: 64px; }
    .nav-toggle, .site-header.is-scrolled .nav-toggle { color: #2b3419; }
    .main-nav { top: 74px; border-radius: 8px; }
    .hero-grid { grid-template-columns: 1fr; padding-top: 42px; padding-bottom: 45px; }
    .hero-copy { max-width: 660px; }
    .hero-media { min-height: 300px; }
    .hero-product-image { width: min(100%, 620px); }
    .answer-card { grid-template-columns: 1fr; gap: 8px; }
    .pain-layout { grid-template-columns: 1fr; gap: 34px; }
    .pain-heading { position: static; }
    .home-showcase-grid, .home-showcase-grid-reverse { grid-template-columns: 1fr; }
    .home-showcase-grid-reverse .home-showcase-copy { order: 1; }
    .home-showcase-grid-reverse .home-showcase-media { order: 2; }
    .home-showcase-media { min-height: 300px; }
    .home-phase-band-inner { padding-top: 28px; padding-bottom: 28px; }
    .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
}

@media (max-width: 680px) {
    .container { width: min(calc(100% - 28px), var(--max)); }
    .section { padding: 58px 0; }
    h1 { font-size: clamp(2.2rem, 8vw, 2.85rem); }
    h2 { font-size: clamp(1.6rem, 7vw, 2.05rem); }
    .brand-logo { width: 142px; }
    .hero-grid { padding-top: 36px; padding-bottom: 38px; }
    .hero-actions .button { width: 100%; }
    .hero-trust-row { align-items: center; flex-wrap: wrap; }
    .hero-webinar-link { width: 100%; margin: 2px 0 0; }
    .hero-media { min-height: 220px; }
    .highlights-home .highlight-grid, .highlight-grid { grid-template-columns: 1fr; }
    .highlights-home .highlight-card, .highlight-card { min-height: 0; }
    .home-showcase { padding: 58px 0; }
    .home-showcase-media { min-height: 230px; }
    .home-showcase-media img { max-height: 330px; }
    .home-phase-band-inner { flex-direction: column; align-items: flex-start; }
    .phase-actions { width: 100%; flex-direction: column; }
    .phase-actions .button { width: 100%; }
    .pain-list article { grid-template-columns: 34px 1fr; }
    .product-proof-grid { grid-template-columns: 1fr; }
    .conversion-card { padding: 29px 24px; }
    .conversion-actions .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}


/* Werkorderscan - adviserend en procesgericht */
.scan-advice-heading { align-items: start; }
.scan-advice-overview { display: grid; grid-template-columns: 1.05fr .95fr; gap: 16px; margin-bottom: 28px; }
.scan-main-score-advice h3 { margin: 14px 0 4px; font-size: 1.05rem; color: var(--ink); }
.scan-main-score-advice p { margin: 0; }
.scan-process-advice { margin: 8px 0 28px; padding: 24px; border: 1px solid var(--line); background: #fbfcf8; }
.scan-advice-section-head { display: grid; grid-template-columns: .42fr 1fr 1.25fr; gap: 20px; align-items: end; margin-bottom: 18px; }
.scan-advice-section-head h3 { margin: 0; font-size: 1.15rem; }
.scan-advice-section-head p { margin: 0; color: var(--muted); font-size: .82rem; }
.scan-advice-chain { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 6px; }
.advice-chain-step { min-height: 104px; padding: 13px 11px; border: 1px solid var(--line); background: #fff; position: relative; }
.advice-chain-step span { display: block; margin-bottom: 13px; color: var(--green-deep); font-size: .68rem; font-weight: 900; letter-spacing: .08em; }
.advice-chain-step strong { display: block; font-size: .77rem; line-height: 1.3; }
.advice-chain-step small { display: block; margin-top: 8px; color: var(--muted); font-size: .66rem; line-height: 1.3; }
.advice-chain-step-strong { border-top: 3px solid var(--green); }
.advice-chain-step-partial { border-top: 3px solid #d8b94d; }
.advice-chain-step-start { border-top: 3px solid #8fa6ba; }
.advice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 12px; }
.advice-grid-detail { align-items: stretch; }
.result-card-positive { background: var(--green-pale); border-color: #dce8ab; }
.result-card-wide { min-height: 100%; }
.module-advice-list { display: grid; gap: 10px; margin-top: 10px; }
.module-advice-item { padding: 14px 15px; border: 1px solid var(--line); background: #fff; }
.module-advice-item > div { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.module-advice-item span { display: inline-flex; padding: 3px 7px; background: var(--green-soft); color: var(--green-deep); font-size: .64rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.module-advice-item strong { font-size: .86rem; }
.module-advice-item p { margin: 7px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.phase-list { counter-reset: phase; list-style: none; padding: 0 !important; display: grid; gap: 10px; }
.phase-list li { position: relative; padding: 12px 12px 12px 42px; border-left: 3px solid var(--green); background: #fafbf7; }
.phase-list li::before { counter-increment: phase; content: counter(phase); position: absolute; left: 12px; top: 12px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #172000; font-size: .67rem; font-weight: 900; }
.scan-advice-note { margin-top: 16px; padding: 16px 18px; display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; border-left: 3px solid var(--green); background: #f7f9f0; }
.scan-advice-note strong { white-space: nowrap; font-size: .8rem; }
.scan-advice-note p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.answer-options label span { line-height: 1.25; }
@media (max-width: 980px) {
    .scan-advice-overview { grid-template-columns: 1fr; }
    .scan-advice-section-head { grid-template-columns: 1fr; gap: 5px; }
    .scan-advice-chain { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
    .scan-advice-chain { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .advice-grid { grid-template-columns: 1fr; }
    .scan-process-advice { padding: 18px; }
    .scan-advice-note { grid-template-columns: 1fr; }
}

/* 5.7 content UX: scanbaar voor mens, duidelijk voor search en antwoordmachines */
.page-jump-wrap {
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.page-jump {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
}
.page-jump > span {
    flex: 0 0 auto;
    margin-right: 4px;
    color: var(--muted);
    font-size: .69rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.page-jump a {
    flex: 0 0 auto;
    padding: 7px 11px;
    border: 1px solid #e3e5df;
    border-radius: 999px;
    background: #fafbf8;
    color: #3e463a;
    font-size: .72rem;
    font-weight: 700;
    text-decoration: none;
}
.page-jump a:hover,
.page-jump a:focus-visible {
    border-color: var(--green);
    background: var(--green-pale);
    color: var(--ink);
}

.relevance-section {
    background: #f7f8f5;
}
.relevance-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(310px, .84fr);
    gap: 56px;
    align-items: start;
}
.relevance-column h2 {
    max-width: 650px;
    margin-bottom: 22px;
}
.signal-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #dde0d9;
}
.signal-list li {
    display: grid;
    grid-template-columns: 11px 1fr;
    gap: 13px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid #dde0d9;
}
.signal-list li > span {
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--green);
}
.signal-list p {
    margin: 0;
    color: #3f473d;
    font-size: .87rem;
    line-height: 1.58;
}
.outcome-card {
    padding: 28px 30px;
    border-top: 4px solid var(--green);
    background: #fff;
    box-shadow: 0 7px 24px rgba(30, 40, 20, .07);
}
.outcome-card h3 {
    margin: 8px 0 18px;
    font-size: 1.25rem;
}
.outcome-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.outcome-card li {
    position: relative;
    padding-left: 24px;
    color: #465044;
    font-size: .84rem;
    line-height: 1.55;
}
.outcome-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #8aa30e;
    font-weight: 900;
}

.scenario-section {
    background: #fff;
}
.scenario-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
    gap: 58px;
    align-items: center;
}
.scenario-copy h2 {
    max-width: 650px;
    margin-bottom: 12px;
}
.scenario-intro {
    max-width: 690px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: .91rem;
}
.scenario-steps {
    counter-reset: none;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}
.scenario-steps li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.scenario-steps span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: #354000;
    font-size: .65rem;
    font-weight: 900;
}
.scenario-steps p {
    margin: 3px 0 0;
    color: #3e463b;
    font-size: .84rem;
    line-height: 1.55;
}
.scenario-result {
    margin-top: 20px;
    padding: 16px 18px;
    border-left: 3px solid var(--green);
    background: #f6f9e8;
}
.scenario-result strong {
    display: block;
    margin-bottom: 3px;
    color: #6e820d;
    font-size: .68rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.scenario-result p {
    margin: 0;
    color: #394236;
    font-size: .85rem;
    line-height: 1.55;
}
.scenario-media {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e4e6e0;
    background: #f4f5f2;
}
.scenario-media img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    max-height: 470px;
    object-fit: contain;
    object-position: center;
}

/* Direct answers are deliberately compact and extractable. */
.answer-section {
    scroll-margin-top: 90px;
}
.answer-card {
    border-left: 4px solid var(--green);
}
.answer-label {
    color: #73880d;
}
.answer-card h2 {
    max-width: 760px;
}
.answer-card p {
    max-width: 900px;
    line-height: 1.7;
}
#mogelijkheden,
#herkenning,
#praktijkvoorbeeld,
#proces,
#vragen {
    scroll-margin-top: 86px;
}

.author-card p {
    line-height: 1.55;
}

@media (max-width: 920px) {
    .relevance-grid,
    .scenario-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .outcome-card {
        max-width: 680px;
    }
    .scenario-media {
        min-height: 280px;
        order: -1;
    }
    .scenario-media img {
        min-height: 280px;
        max-height: 410px;
    }
}

@media (max-width: 680px) {
    .page-jump-wrap {
        position: static;
    }
    .page-jump {
        min-height: 54px;
        padding: 8px 0;
    }
    .page-jump > span {
        display: none;
    }
    .relevance-grid,
    .scenario-grid {
        gap: 26px;
    }
    .outcome-card {
        padding: 22px 20px;
    }
    .scenario-media,
    .scenario-media img {
        min-height: 210px;
    }
}

/* ========================================================================== 
   SolvCRM verticale basisstijl
   Werkorder additions on top of the SolvCRM house style.
   ========================================================================== */

/* Preserve the requested H1 scale across the vertical site. */
h1 {
  font-size: clamp(2.45rem, 2.7vw, 2.85rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.breadcrumbs .container { display: flex; align-items: center; gap: 8px; min-height: 38px; }
.hero-media > img { width: min(100%, 650px); max-height: 410px; object-fit: contain; filter: drop-shadow(0 16px 18px rgba(55,65,20,.16)); }
.button-orange { background: var(--peach); color: #fff; }
.button-ghost { background: rgba(255,255,255,.13); color: #fff; border: 1px solid rgba(255,255,255,.48); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.hero-trust a { display: grid; min-width: 132px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.48); border-radius: 6px; background: rgba(255,255,255,.09); }
.hero-trust strong { color: #fff; font-size: .72rem; }
.hero-trust span { color: rgba(255,255,255,.85); font-size: .62rem; }

.answer-strip { padding: 30px 0 8px; background: #fff; }
.answer-strip .answer-card { grid-template-columns: 150px 1fr; border-radius: 8px; }
.answer-strip .answer-card > .eyebrow { margin-top: 4px; }
.answer-strip .answer-card h2 { margin-bottom: 7px; font-size: 1.24rem; }
.answer-strip .answer-card p { margin-bottom: 0; }

.page-jump-nav { position: sticky; top: 64px; z-index: 90; background: rgba(255,255,255,.97); border-top: 1px solid #f0f1ed; border-bottom: 1px solid var(--line); }
.page-jump-nav .container { min-height: 48px; display: flex; align-items: center; gap: 17px; overflow-x: auto; white-space: nowrap; }
.page-jump-nav strong { color: var(--ink); font-size: .72rem; }
.page-jump-nav a { color: var(--muted); font-size: .72rem; font-weight: 700; }
.page-jump-nav a:hover { color: var(--green-deep); }

.section-head { max-width: 780px; margin-bottom: 32px; }
.section-head > p { max-width: 680px; margin-bottom: 0; }
.section-actions { margin-top: 28px; }

.feature-grid { display: grid; gap: 15px; }
.feature-grid-four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.feature-card { min-height: 205px; padding: 24px 21px; border-radius: 8px; color: #fff; box-shadow: 0 5px 13px rgba(45,45,45,.08); }
.feature-card h3, .feature-card p, .feature-card .feature-number { color: #fff; }
.feature-card h3 { margin: 13px 0 8px; font-size: 1.02rem; }
.feature-card p { margin: 0; font-size: .82rem; line-height: 1.55; }
.feature-number { font-size: .7rem; font-weight: 800; opacity: .88; }
.feature-tone-1 { background: var(--cyan); }
.feature-tone-2 { background: var(--pink); }
.feature-tone-3 { background: var(--orange); }
.feature-tone-4 { background: var(--purple); }

.content-sections { display: grid; gap: 54px; }
.content-feature { display: grid; grid-template-columns: minmax(0,1fr) minmax(390px,.9fr); gap: 58px; align-items: center; }
.content-feature-reverse .content-feature-copy { order: 2; }
.content-feature-reverse .content-feature-visual { order: 1; }
.content-feature-copy h2 { max-width: 650px; }
.content-feature-copy > p { font-size: .91rem; }
.content-intro { font-size: 1rem !important; font-weight: 600; }
.content-feature-visual { overflow: hidden; min-height: 330px; display: grid; place-items: center; border: 1px solid var(--line); background: #f2f3ef; }
.content-feature-visual img { width: 100%; height: 100%; max-height: 390px; object-fit: cover; object-position: top; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 7px; }
.check-list li { position: relative; padding-left: 23px; color: var(--ink-2); font-size: .84rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-deep); font-weight: 900; }

.formula-panel { padding: 34px 38px; border-left: 5px solid var(--green); background: #f7f9ed; }
.formula-panel h2 { margin-bottom: 22px; }
.formula-line { padding: 14px 0; border-top: 1px solid #e2e7c8; font-weight: 800; color: #445000; }
.formula-line:last-of-type { border-bottom: 1px solid #e2e7c8; }
.formula-panel p { margin: 17px 0 0; font-size: .8rem; color: var(--muted); }

.responsive-table { overflow-x: auto; border: 1px solid var(--line); background: #fff; }
.responsive-table table { width: 100%; border-collapse: collapse; min-width: 620px; }
.responsive-table th, .responsive-table td { padding: 13px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); font-size: .82rem; }
.responsive-table th { background: #f3f5ec; color: #4d5b17; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; }
.responsive-table tr:last-child td { border-bottom: 0; }

.workflow-list li > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #344000; font-size: .68rem; font-weight: 800; }

.workorder-selector .audience-layout { display: grid; grid-template-columns: 300px 1fr; gap: 20px; }
.workorder-selector .audience-panel { border-radius: 8px; background: #292a28; box-shadow: none; }
.workorder-selector .audience-tabs button { border-radius: 6px; }

.pain-section .pain-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.pain-section .pain-grid article { min-height: 145px; padding: 21px 22px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0; box-shadow: none; }
.pain-section .pain-grid article::after { display: none; }
.pain-section .pain-grid strong { display: block; margin-bottom: 8px; color: var(--ink); }
.pain-section .pain-grid p { margin: 0; font-size: .82rem; }

.platform-showcase { padding-top: 70px; padding-bottom: 70px; }
.showcase-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 54px 0; border-bottom: 1px solid var(--line); }
.showcase-row-reverse .showcase-media { order: 2; }
.showcase-row-reverse .showcase-copy { order: 1; }
.showcase-media { min-height: 340px; display: grid; place-items: center; overflow: hidden; background: #f4f5f1; }
.showcase-media img { width: 100%; max-height: 390px; object-fit: cover; object-position: top; }
.showcase-copy > p { max-width: 590px; font-size: .91rem; }
.showcase-banner { margin: 54px 0; padding: 30px 36px; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: var(--green); }
.showcase-banner h2 { max-width: 660px; margin: 5px 0 0; color: #fff; font-size: 1.7rem; }
.product-proof-grid article { padding-bottom: 20px; }
.product-proof-grid article h3, .product-proof-grid article p { margin-left: 19px; margin-right: 19px; }
.product-proof-grid article h3 { margin-top: 16px; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 60px; }
.faq-grid details { border-bottom: 1px solid var(--line); }
.faq-grid summary { position: relative; padding: 17px 30px 17px 0; cursor: pointer; font-weight: 800; font-size: .88rem; }
.faq-grid summary::after { content: "+"; position: absolute; right: 4px; color: var(--green-deep); font-size: 1.2rem; }
.faq-grid details[open] summary::after { content: "–"; }
.faq-grid details p { padding: 0 28px 17px 0; margin: 0; font-size: .83rem; }

.related-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
.related-card { display: flex; min-height: 220px; flex-direction: column; padding: 21px; border: 1px solid var(--line); background: #fff; }
.related-card > span { color: var(--green-deep); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.related-card h3 { margin: 9px 0 8px; font-size: .98rem; }
.related-card p { flex: 1; margin-bottom: 15px; font-size: .78rem; }
.related-card b { color: #758d00; font-size: .74rem; }

.author-strip { padding: 30px 0; background: #f7f8f4; border-top: 1px solid var(--line); }
.author-card { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.author-card strong { display: block; }
.author-card p { margin: 4px 0 0; font-size: .76rem; }
.author-card > a { color: #718800; font-size: .75rem; font-weight: 800; }

.conversion-inner { min-height: 180px; display: flex; align-items: center; justify-content: space-between; gap: 45px; padding: 35px 40px; background: var(--green); }
.conversion-inner h2 { max-width: 680px; margin: 5px 0 7px; color: #fff; font-size: 1.75rem; }
.conversion-inner p { max-width: 690px; margin: 0; color: rgba(255,255,255,.9); font-size: .85rem; }
.conversion-actions { display: flex; gap: 9px; flex: 0 0 auto; }

.source-section { padding: 28px 0 42px; }
.source-card { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 19px 22px; border: 1px solid var(--line); background: #fafbf7; }
.source-card p { margin: 0; font-size: .75rem; }
.source-links { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.source-links a { color: #718800; font-size: .7rem; font-weight: 800; }

.scan-profile { padding: 40px 42px 42px; }
.scan-profile-copy { max-width: 720px; margin-bottom: 24px; }
.scan-profile-copy h3 { font-size: 1.55rem; }
.workorder-type-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.workorder-type-grid button { min-height: 72px; padding: 12px 10px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 800; cursor: pointer; }
.workorder-type-grid button:hover, .workorder-type-grid button.is-selected { border-color: var(--green); background: var(--green-soft); color: #526300; }
.workorder-score-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; margin-bottom: 24px; }
.workorder-score-grid article { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 14px; border: 1px solid var(--line); background: #fff; }
.workorder-score-grid article.score-primary { background: var(--green-soft); border-color: #dce8ab; }
.workorder-score-grid span { font-size: .72rem; font-weight: 700; color: var(--muted); }
.workorder-score-grid strong { font-size: .9rem; }
.workorder-score-grid progress { grid-column: 1 / -1; width: 100%; height: 7px; accent-color: var(--green); }
.advice-grid { align-items: stretch; }
.module-tags { display: grid; gap: 8px; }
.module-advice-item { padding: 11px 12px; background: #f7f9ed; border-left: 3px solid var(--green); }
.module-advice-item strong { display: block; font-size: .78rem; }
.module-advice-item p { margin: 3px 0 0; font-size: .71rem; }
.result-card ol li { margin-bottom: 10px; }
.result-card ol strong, .result-card ol span { display: block; }
.result-card ol strong { font-size: .72rem; color: var(--green-deep); }
.result-card ol span { font-size: .78rem; }
.implementation-advice { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
.implementation-phases { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 12px; }
.implementation-phases article { padding: 16px; background: #fafbf7; border: 1px solid var(--line); }
.implementation-phases strong { font-size: .78rem; }
.implementation-phases p { margin: 5px 0 0; font-size: .73rem; }

.roi-shell { max-width: 980px; margin: 0 auto; padding: 34px; border: 1px solid var(--line); background: #fff; }
.roi-section { background: #f7f8f4; }
.calculator-potential { grid-column: 1 / -1; background: #f3f6e5 !important; }
.calculator-potential strong { color: #657b00; font-size: 1.3rem; }

.request-layout { grid-template-columns: .75fr 1.25fr; }
.request-copy { position: sticky; top: 92px; }
.request-copy > p { font-size: .9rem; }
.request-links { display: grid; gap: 8px; margin-top: 22px; }
.request-links a { color: #718800; font-size: .78rem; font-weight: 800; }

.site-footer { padding-top: 48px; }
.footer-main { display: grid; grid-template-columns: 1.25fr 1fr .9fr .9fr .9fr; gap: 28px; padding-bottom: 40px; }
.footer-main > div { display: flex; flex-direction: column; gap: 7px; }
.footer-main strong { margin-bottom: 5px; color: var(--green); font-size: .74rem; }
.footer-main a { color: rgba(255,255,255,.70); font-size: .7rem; }
.footer-main a:hover { color: #fff; }
.footer-brand img { width: 150px; }
.footer-brand p { max-width: 260px; color: rgba(255,255,255,.58); font-size: .74rem; }
.footer-certifications a { padding: 7px 9px; border: 1px solid rgba(255,255,255,.12); }
.footer-certifications a b, .footer-certifications a span { display: block; }
.footer-certifications a b { color: #fff; font-size: .7rem; }
.footer-certifications a span { font-size: .62rem; color: rgba(255,255,255,.55); }
.footer-certifications small { color: rgba(255,255,255,.4); font-size: .59rem; }
.footer-bottom { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.5); font-size: .66rem; }
.footer-bottom > span:last-child { display: flex; gap: 14px; }

@media (max-width: 1080px) {
    .feature-grid-four { grid-template-columns: repeat(2,1fr); }
    .related-grid { grid-template-columns: repeat(2,1fr); }
    .workorder-score-grid { grid-template-columns: repeat(2,1fr); }
    .footer-main { grid-template-columns: 1.2fr repeat(2,1fr); }
}

@media (max-width: 920px) {
    .content-feature, .showcase-row, .workorder-selector .audience-layout, .faq-grid, .request-layout { grid-template-columns: 1fr; }
    .content-feature-reverse .content-feature-copy, .content-feature-reverse .content-feature-visual, .showcase-row-reverse .showcase-media, .showcase-row-reverse .showcase-copy { order: initial; }
    .content-feature-visual, .showcase-media { min-height: 260px; }
    .pain-section .pain-grid { grid-template-columns: repeat(2,1fr); }
    .workorder-type-grid { grid-template-columns: repeat(2,1fr); }
    .request-copy { position: static; }
    .source-card { grid-template-columns: 1fr; }
    .conversion-inner, .showcase-banner { align-items: flex-start; flex-direction: column; }
    .conversion-actions { width: 100%; }
    .footer-main { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 680px) {
    h1 {
        font-size: clamp(2.45rem, 2.7vw, 2.85rem);
        font-weight: 800;
        margin-bottom: 24px;
    }
    .page-jump-nav { top: 64px; }
    .answer-strip .answer-card { grid-template-columns: 1fr; }
    .feature-grid-four, .related-grid, .pain-section .pain-grid, .workorder-score-grid, .implementation-phases { grid-template-columns: 1fr; }
    .content-feature { gap: 28px; }
    .content-feature-visual { min-height: 210px; }
    .showcase-row { gap: 28px; padding: 38px 0; }
    .showcase-banner { padding: 25px 22px; }
    .workorder-type-grid { grid-template-columns: 1fr 1fr; }
    .scan-profile, .scan-question-form, .scan-result-section, .scan-inline-section { padding-left: 20px; padding-right: 20px; }
    .answer-options { grid-template-columns: 1fr; margin-left: 0; }
    .question-copy { grid-template-columns: 36px 1fr; gap: 12px; }
    .calculator-form, .form-grid { grid-template-columns: 1fr; }
    .calculator-actions, .form-wide { grid-column: 1; }
    .calculator-result { grid-template-columns: 1fr; }
    .calculator-total, .calculator-potential, .calculator-result > p { grid-column: 1; }
    .conversion-actions { flex-direction: column; }
    .conversion-actions .button { width: 100%; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { align-items: flex-start; flex-direction: column; padding: 18px 0; }
}

.lead-advanced { margin-top: 2px; border: 1px solid var(--line); background: #fafbf7; }
.lead-advanced > summary { padding: 13px 15px; cursor: pointer; color: #667a00; font-size: .78rem; font-weight: 800; }
.lead-advanced-grid { padding: 15px; border-top: 1px solid var(--line); }
.process-usage { border: 0; padding: 0; margin: 0; }
.process-usage legend { margin-bottom: 8px; color: var(--ink-2); font-size: .82rem; font-weight: 700; }
.process-usage label { display: inline-flex !important; grid-template-columns: auto 1fr !important; align-items: center; gap: 6px !important; margin: 0 13px 7px 0; }
.process-usage input { width: auto !important; min-height: 0 !important; }

.practical-section { background: #fff; }
.practical-example { max-width: 920px; margin-bottom: 30px; padding-left: 28px; border-left: 4px solid var(--green); }
.practical-example h2 { margin-bottom: 10px; }
.practical-example p { margin: 0; font-size: .93rem; }
.practical-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.practical-grid > article { padding: 25px 27px; border: 1px solid var(--line); background: #fafbf8; }
.practical-grid h3 { margin-bottom: 16px; }
.practical-grid ul, .practical-grid ol { margin: 0; padding-left: 20px; }
.practical-grid li { margin-bottom: 10px; color: var(--ink-2); font-size: .8rem; }
.implementation-panel ol { list-style: none; padding: 0; display: grid; gap: 10px; }
.implementation-panel li { padding: 12px 13px; border-left: 3px solid var(--green); background: #fff; }
.implementation-panel strong, .implementation-panel span { display: block; }
.implementation-panel strong { margin-bottom: 3px; color: #657a00; font-size: .72rem; }
.implementation-panel span { font-size: .78rem; }
@media (max-width: 760px) { .practical-grid { grid-template-columns: 1fr; } }

/* v1.1 conversion refinements */
.workorder-score-grid-compact { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.lead-form-compact { max-width: 820px; }
.lead-form-compact .form-grid-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.calculator-advanced { margin-top: 2px; border: 1px solid var(--line); background: #fafbf7; }
.calculator-advanced > summary { padding: 13px 15px; cursor: pointer; color: #667a00; font-size: .78rem; font-weight: 800; }
.calculator-advanced-grid { padding: 15px; border-top: 1px solid var(--line); }
@media (max-width: 920px) {
    .workorder-score-grid-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .lead-form-compact .form-grid-compact, .workorder-score-grid-compact { grid-template-columns: 1fr; }
}

/* ========================================================================== 
   SolvCRM verticale componentlaag
   Werkorder refinements: planning, uitvoering, objecthistorie en lifecycle.
   ========================================================================== */
.nav-dropdown-wide {
    width: min(680px, calc(100vw - 40px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 8px;
}
.nav-group[open] .nav-dropdown-wide { display: grid; }
.nav-dropdown .nav-overview {
    background: var(--green-soft);
    color: #5f7300;
    font-weight: 800;
}
.workorder-score-grid-compact {
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
}
.workorder-score-grid-compact article {
    min-height: 86px;
}
.scan-flow-head h2,
.scan-result-heading h2 { max-width: 800px; }
.result-card { min-width: 0; }
.module-advice-item { border-radius: 4px; }
.content-feature-copy p { max-width: 760px; }
.responsive-table table { min-width: 720px; }
.formula-panel { max-width: 940px; }
.process-usage { grid-column: 1 / -1; }
.process-usage label span { line-height: 1.3; }

@media (max-width: 920px) {
    .nav-dropdown-wide { display: block !important; width: 100%; }
}

@media (max-width: 640px) {
    .workorder-type-grid { grid-template-columns: 1fr; }
    .workorder-score-grid-compact { grid-template-columns: 1fr; }
    .hero-trust { display: grid; grid-template-columns: 1fr 1fr; }
}

/* v1.1.1 - werkorderproces role context and handover gates */
.role-context-section {
    background: #fff;
}
.role-context-section .section-head {
    max-width: 860px;
}
.role-context-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    align-items: stretch;
}
.role-context-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(31, 37, 15, .055);
}
.role-context-index {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 9px;
    background: var(--green-soft);
    color: #6e8800;
    font-size: .72rem;
    font-weight: 800;
}
.role-context-card h3 {
    margin-bottom: 20px;
    font-size: 1.08rem;
}
.role-context-block strong {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .065em;
    text-transform: uppercase;
}
.role-context-block p {
    margin: 0;
    color: var(--ink-2);
    font-size: .86rem;
    line-height: 1.55;
}
.role-context-arrow {
    margin: 14px 0;
    color: var(--green-deep);
    font-size: 1.2rem;
    font-weight: 800;
}
.role-context-output {
    margin-top: auto;
    padding: 14px 15px;
    border-radius: 10px;
    background: #f8faef;
}
.role-context-output strong {
    color: #6e8800;
}

.handover-gates-section {
    background: #292a28;
    color: #fff;
}
.handover-gates-section .section-head h2,
.handover-gates-section .section-head p {
    color: #fff;
}
.handover-gates-section .section-head p {
    color: rgba(255,255,255,.72);
}
.handover-gates-section .eyebrow {
    color: var(--green);
}
.handover-gates-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 14px;
    background: rgba(255,255,255,.12);
}
.handover-gates-grid article {
    min-height: 290px;
    padding: 26px 24px;
    background: #292a28;
}
.handover-gates-grid article > span {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 34px;
    border-radius: 50%;
    background: var(--green);
    color: #283100;
    font-size: .72rem;
    font-weight: 900;
}
.handover-gates-grid article > strong {
    display: block;
    margin-bottom: 9px;
    color: var(--green);
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.handover-gates-grid h3 {
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.25;
}
.handover-gates-grid p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: .84rem;
}

@media (max-width: 980px) {
    .handover-gates-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .role-context-grid, .handover-gates-grid { grid-template-columns: 1fr; }
    .role-context-card, .handover-gates-grid article { min-height: 0; }
    .handover-gates-grid article > span { margin-bottom: 20px; }
}


/* v1.2.0 - conversion and SolvCRM.nl bridges */
.nav-external-link {
    font-weight: 800 !important;
    color: #314000 !important;
}
.hero-solvcrm-link {
    margin: -8px 0 18px;
}
.hero-solvcrm-link a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.hero-solvcrm-link a:hover { opacity: .84; }
.solvcrm-bridge-section {
    padding: 54px 0;
    background: #f7f8f4;
}
.solvcrm-bridge-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 42px;
    align-items: center;
    padding: 34px 38px;
    border: 1px solid #e1e7c9;
    border-left: 5px solid var(--green);
    background: #fff;
    box-shadow: 0 10px 30px rgba(44, 54, 20, .055);
}
.solvcrm-bridge-copy h2 {
    max-width: 760px;
    margin-bottom: 9px;
    font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}
.solvcrm-bridge-copy > p {
    max-width: 820px;
    margin-bottom: 13px;
    font-size: .9rem;
}
.solvcrm-bridge-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}
.solvcrm-bridge-links a {
    color: #677b00;
    font-size: .76rem;
    font-weight: 800;
}
.solvcrm-bridge-links a:hover { text-decoration: underline; }
.solvcrm-bridge-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 230px;
}
.solvcrm-bridge-actions .button { width: 100%; }
.conversion-text-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 12px;
}
.footer-brand-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.footer-brand-actions a { font-weight: 800; }
.scan-next { flex-wrap: wrap; }
@media (max-width: 1080px) {
    .nav-external-link { display: none; }
}
@media (max-width: 820px) {
    .solvcrm-bridge-card { grid-template-columns: 1fr; gap: 22px; padding: 28px 25px; }
    .solvcrm-bridge-actions { width: 100%; min-width: 0; }
}
@media (max-width: 640px) {
    .solvcrm-bridge-links { flex-direction: column; gap: 8px; }
    .hero-solvcrm-link { margin-top: -4px; }
}

/* v1.2.0 - complete category directories */
.directory-section { background: #fff; }
.directory-section .section-head { max-width: 800px; }
.directory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.directory-card {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    padding: 22px 23px;
    border: 1px solid var(--line);
    background: #fff;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.directory-card:hover {
    transform: translateY(-2px);
    border-color: #cbdc83;
    box-shadow: 0 9px 24px rgba(47, 58, 19, .07);
}
.directory-card > span {
    margin-bottom: 10px;
    color: #748900;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.directory-card h3 { margin-bottom: 9px; font-size: 1.05rem; }
.directory-card p { flex: 1; margin-bottom: 14px; font-size: .78rem; }
.directory-card strong { color: #667b00; font-size: .75rem; }
@media (max-width: 920px) { .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .directory-grid { grid-template-columns: 1fr; } }

/* ========================================================================== 
   v1.3.0 - digitale werkorderketen, lifecycle depth, scan roadmap and conversion UX
   ========================================================================== */

/* Final visual alignment with the current SolvCRM.nl rhythm: flat, functional,
   product-led and without decorative hero ornaments. */
.hero {
    background: var(--green);
}
.hero::before,
.hero::after {
    display: none;
}
.hero-grid {
    min-height: 535px;
    gap: 48px;
}
.hero-media img {
    filter: drop-shadow(0 22px 28px rgba(39, 52, 0, .16));
}
.content-feature-visual {
    background: #fff;
    border: 1px solid #eceee5;
    overflow: hidden;
}
.content-feature-visual img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: contain;
    padding: 18px;
    background: #fff;
}
.platform-showcase .showcase-media,
.product-proof-grid article {
    border-color: #e7e9df;
    box-shadow: 0 8px 28px rgba(36, 42, 19, .055);
}

/* Visual position of each topic in de end-to-end digitale werkorderketen. */
.workorder-chain-position {
    padding: 28px 0 34px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.workorder-chain-position-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 18px;
}
.workorder-chain-position-head .eyebrow {
    margin-bottom: 7px;
}
.workorder-chain-position-head strong {
    display: block;
    max-width: 760px;
    font-size: .93rem;
    line-height: 1.5;
}
.workorder-chain-position-head > a {
    flex: 0 0 auto;
    color: #6b8100;
    font-size: .76rem;
    font-weight: 800;
}
.workorder-chain-stage-list {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #e5e8dc;
    background: #f8f9f5;
}
.workorder-chain-stage-list li {
    min-width: 0;
    border-right: 1px solid #e5e8dc;
}
.workorder-chain-stage-list li:last-child {
    border-right: 0;
}
.workorder-chain-stage-list a {
    position: relative;
    display: flex;
    min-height: 88px;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    padding: 13px 12px 12px;
    color: #6d7169;
    background: #f8f9f5;
    transition: background .16s ease, color .16s ease;
}
.workorder-chain-stage-list a:hover {
    background: #f2f6dd;
    color: var(--ink);
}
.workorder-chain-stage-list span {
    color: #9da18f;
    font-size: .63rem;
    font-weight: 900;
    letter-spacing: .06em;
}
.workorder-chain-stage-list b {
    font-size: .72rem;
    line-height: 1.35;
}
.workorder-chain-stage-list .is-active a {
    background: var(--green);
    color: #253000;
}
.workorder-chain-stage-list .is-active a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 4px;
    background: #6f8600;
}
.workorder-chain-stage-list .is-active span {
    color: #536700;
}

/* Deeper scan output: first 90-day route based on the three weakest handovers. */
.scan-roadmap {
    margin-top: 26px;
    padding: 28px;
    border: 1px solid #e2e6d4;
    background: #fbfcf7;
}
.scan-roadmap-head {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
    gap: 34px;
    align-items: end;
    margin-bottom: 20px;
}
.scan-roadmap-head h3 {
    margin-bottom: 0;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
}
.scan-roadmap-head > p {
    margin: 0;
    font-size: .88rem;
}
.scan-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.scan-roadmap-grid article {
    min-height: 210px;
    padding: 22px;
    border: 1px solid #e4e6dc;
    background: #fff;
}
.scan-roadmap-grid article > span {
    display: block;
    margin-bottom: 28px;
    color: #748a00;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.scan-roadmap-grid h4 {
    margin: 0 0 9px;
    font-size: 1rem;
    line-height: 1.25;
}
.scan-roadmap-grid p {
    margin: 0;
    font-size: .81rem;
    line-height: 1.58;
}

/* Contextual deep-page conversion bar. It pauses automatically when the footer enters view. */
.decision-sticky-bar {
    position: fixed;
    left: 50%;
    bottom: 16px;
    z-index: 980;
    transform: translateX(-50%);
    width: min(calc(100% - 32px), 1080px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 18px;
    padding: 11px 12px 11px 18px;
    border: 1px solid #dfe5c7;
    background: rgba(255,255,255,.97);
    box-shadow: 0 14px 42px rgba(32, 39, 12, .16);
    backdrop-filter: blur(8px);
    transition: opacity .18s ease, transform .18s ease;
}
.decision-sticky-bar.is-paused {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 12px);
}
.decision-sticky-copy span {
    display: block;
    color: var(--muted);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.decision-sticky-copy strong {
    display: block;
    margin-top: 1px;
    font-size: .83rem;
}
.decision-sticky-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.decision-sticky-actions > a:not(.button) {
    color: #647900;
    font-size: .72rem;
    font-weight: 800;
    white-space: nowrap;
}
.decision-sticky-close {
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #7d8178;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

/* Keep the expanded solution menu usable as the knowledge surface grows. */
.nav-dropdown-wide {
    max-height: min(72vh, 650px);
    overflow-y: auto;
}

@media (max-width: 980px) {
    .workorder-chain-stage-list {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }
    .workorder-chain-stage-list li {
        flex: 0 0 145px;
        scroll-snap-align: start;
    }
    .scan-roadmap-grid {
        grid-template-columns: 1fr;
    }
    .scan-roadmap-grid article {
        min-height: 0;
    }
    .scan-roadmap-grid article > span {
        margin-bottom: 14px;
    }
    .decision-sticky-bar {
        width: min(calc(100% - 24px), 820px);
        grid-template-columns: 1fr auto;
    }
    .decision-sticky-copy {
        display: none;
    }
}

@media (max-width: 720px) {
    .hero-grid {
        min-height: 0;
    }
    .workorder-chain-position-head {
        display: block;
    }
    .workorder-chain-position-head > a {
        display: inline-block;
        margin-top: 9px;
    }
    .scan-roadmap {
        padding: 22px 18px;
    }
    .scan-roadmap-head {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .decision-sticky-bar {
        left: 8px;
        right: 8px;
        bottom: 8px;
        transform: none;
        width: auto;
        grid-template-columns: 1fr auto;
        gap: 8px;
        padding-left: 10px;
    }
    .decision-sticky-bar.is-paused {
        transform: translateY(10px);
    }
    .decision-sticky-actions {
        gap: 8px;
        overflow-x: auto;
    }
    .decision-sticky-actions > a:not(.button) {
        display: none;
    }
    .decision-sticky-actions .button {
        min-height: 38px;
    }
}

@media print {
    body[data-page-type="scan"] * {
        visibility: hidden !important;
    }
    body[data-page-type="scan"] .scan-result-section,
    body[data-page-type="scan"] .scan-result-section * {
        visibility: visible !important;
    }
    body[data-page-type="scan"] .scan-result-section {
        position: absolute;
        inset: 0 auto auto 0;
        width: 100%;
        padding: 0;
    }
    body[data-page-type="scan"] .scan-next {
        display: none !important;
    }
    body[data-page-type="scan"] .scan-roadmap,
    body[data-page-type="scan"] .result-card,
    body[data-page-type="scan"] .implementation-advice,
    body[data-page-type="scan"] .workorder-score-grid article {
        break-inside: avoid;
        box-shadow: none !important;
    }
}

/* ========================================================================== 
   Digitale werkbon - tools, calculator en lead UX
   ========================================================================== */

.dimension-score-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0 28px;
}
.dimension-score-grid article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--line);
    background: #fff;
}
.dimension-score-grid span {
    color: var(--muted);
    font-size: .71rem;
    font-weight: 800;
}
.dimension-score-grid strong {
    color: var(--ink);
    font-size: .92rem;
}
.dimension-score-grid article > div {
    grid-column: 1 / -1;
    height: 7px;
    overflow: hidden;
    background: #eef0e7;
}
.dimension-score-grid article > div > i {
    display: block;
    width: 0;
    height: 100%;
    background: var(--green);
    transition: width .22s ease;
}

.scan-insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}
.scan-insights-grid article,
.scan-module-advice,
.scan-roadmap-panel {
    padding: 22px;
    border: 1px solid var(--line);
    background: #fff;
}
.scan-insights-grid h3,
.scan-module-advice h3,
.scan-roadmap-panel h3 {
    margin-bottom: 12px;
    font-size: 1.05rem;
}
.scan-insights-grid ul,
.scan-module-advice ul {
    margin: 0;
    padding-left: 20px;
}
.scan-insights-grid li,
.scan-module-advice li {
    margin: 7px 0;
    color: var(--ink-2);
    font-size: .8rem;
}
.scan-module-advice {
    margin-top: 14px;
    background: #f9faF5;
}
.scan-roadmap-panel {
    margin-top: 14px;
    background: #fbfcf7;
}
.scan-roadmap-panel > .scan-roadmap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
    padding: 0;
    border: 0;
    background: transparent;
}
.scan-roadmap-panel > .scan-roadmap article {
    min-height: 175px;
    padding: 19px;
    border: 1px solid #e4e6dc;
    background: #fff;
}
.scan-roadmap-panel > .scan-roadmap article > span {
    display: block;
    margin-bottom: 18px;
    color: #748a00;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.scan-roadmap-panel > .scan-roadmap h4 {
    margin: 0 0 8px;
    font-size: .96rem;
}
.scan-roadmap-panel > .scan-roadmap p {
    margin: 0;
    font-size: .78rem;
    line-height: 1.58;
}

.calculator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 30px;
    align-items: start;
}
.calculator-form,
.calculator-result {
    padding: 30px;
    border: 1px solid var(--line);
    background: #fff;
}
.calculator-form h2,
.calculator-result h2 {
    font-size: clamp(1.45rem, 2.3vw, 2.05rem);
}
.calculator-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.calculator-grid label {
    display: grid;
    gap: 6px;
    color: var(--ink-2);
    font-size: .78rem;
    font-weight: 700;
}
.calculator-grid input,
.calculator-grid select {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #dfe2d7;
    background: #fff;
    color: var(--ink);
}
.calculator-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}
.calculator-result dl {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    margin: 20px 0 0;
    border-top: 1px solid var(--line);
}
.calculator-result dt,
.calculator-result dd {
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: .82rem;
}
.calculator-result dt { color: var(--muted); }
.calculator-result dd { padding-left: 18px; color: var(--ink); font-weight: 800; text-align: right; }
.inventory-risk {
    margin-top: 18px;
    padding: 15px 17px;
    border-left: 4px solid var(--green);
    background: #f7f9ed;
}
.inventory-risk strong { display: block; margin-bottom: 6px; font-size: .82rem; }
.inventory-risk p { margin: 0; font-size: .78rem; }

@media (max-width: 980px) {
    .dimension-score-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .calculator-layout { grid-template-columns: 1fr; }
    .scan-roadmap-panel > .scan-roadmap { grid-template-columns: 1fr; }
    .scan-roadmap-panel > .scan-roadmap article { min-height: 0; }
}

@media (max-width: 680px) {
    .dimension-score-grid,
    .scan-insights-grid,
    .calculator-grid { grid-template-columns: 1fr; }
    .calculator-form,
    .calculator-result { padding: 22px 18px; }
}

.workorder-market-section { background: #f7f8f4; }
.market-stat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.market-stat-grid article { min-height: 190px; padding: 25px; border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; }
.market-stat-grid strong { color: #667d00; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; }
.market-stat-grid span { flex: 1; margin-top: 12px; color: var(--ink-2); font-size: .82rem; }
.market-stat-grid a { margin-top: 18px; color: #6b8200; font-size: .72rem; font-weight: 800; }
.market-message { display: grid; grid-template-columns: .72fr 1.28fr; gap: 35px; margin-top: 14px; padding: 25px; border-left: 4px solid var(--green); background: #fff; }
.market-message strong { font-size: 1rem; line-height: 1.45; }
.market-message p { margin: 0; font-size: .84rem; }
@media (max-width: 760px) { .market-stat-grid, .market-message { grid-template-columns: 1fr; } }

/* ========================================================================== 
   Digitale werkbon - responsive tool hardening
   Resolves incomplete styling, grid collisions and responsive overlap.
   ========================================================================== */

body[data-page-type="scan"] .scan-section {
    overflow: clip;
}

body[data-page-type="scan"] .scan-shell {
    width: min(100%, 1080px);
    max-width: 1080px;
    overflow: hidden;
}

body[data-page-type="scan"] .scan-flow-head {
    grid-template-columns: minmax(0, 1fr) minmax(132px, auto);
    gap: 32px;
    align-items: start;
}

body[data-page-type="scan"] .scan-flow-head > div:first-child,
body[data-page-type="scan"] .scan-result-heading > div:first-child,
body[data-page-type="scan"] .scan-inline-heading > div:first-child {
    min-width: 0;
}

body[data-page-type="scan"] .scan-flow-status {
    min-width: 132px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: #fafbf7;
    text-align: left;
}

body[data-page-type="scan"] .scan-profile {
    overflow: hidden;
}

body[data-page-type="scan"] .workorder-type-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

body[data-page-type="scan"] .workorder-type-grid button {
    width: 100%;
    min-width: 0;
    min-height: 96px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    padding: 16px 17px;
    border-radius: 8px;
    text-align: left;
    line-height: 1.3;
}

body[data-page-type="scan"] .workorder-type-grid button strong {
    display: block;
    width: 100%;
    color: inherit;
    font-size: .9rem;
    line-height: 1.28;
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .workorder-type-grid button span {
    display: block;
    width: 100%;
    color: var(--muted);
    font-size: .7rem;
    font-weight: 650;
    line-height: 1.35;
}

body[data-page-type="scan"] .workorder-type-grid button:hover span,
body[data-page-type="scan"] .workorder-type-grid button.is-selected span {
    color: #667900;
}

body[data-page-type="scan"] .scan-question-form {
    min-width: 0;
}

body[data-page-type="scan"] .question-card {
    width: 100%;
    min-width: 0;
    min-height: 360px;
}

body[data-page-type="scan"] .question-card legend {
    float: none;
    display: block;
    width: 100%;
    max-width: 850px;
    margin: 0;
    padding: 0;
    color: var(--ink);
    font-size: clamp(1.3rem, 2.2vw, 1.85rem);
    font-weight: 800;
    line-height: 1.25;
}

body[data-page-type="scan"] .question-card legend > span {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 0 0 12px;
    padding: 6px 9px;
    background: var(--green-soft);
    color: #657800;
    font-size: .66rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
}

body[data-page-type="scan"] .answer-options {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 0;
}

body[data-page-type="scan"] .answer-options label {
    min-width: 0;
}

body[data-page-type="scan"] .answer-options label > span {
    width: 100%;
    min-width: 0;
    min-height: 96px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    padding: 15px 16px;
    border-radius: 8px;
    text-align: left;
    overflow: hidden;
}

body[data-page-type="scan"] .answer-options strong {
    display: block;
    width: 100%;
    color: inherit;
    font-size: .86rem;
    font-weight: 850;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .answer-options small {
    display: block;
    width: 100%;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 500;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .answer-options input:checked + span small {
    color: #647000;
}

body[data-page-type="scan"] .scan-form-actions {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
}

body[data-page-type="scan"] .scan-form-actions p {
    min-width: 0;
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .scan-result-heading,
body[data-page-type="scan"] .scan-inline-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: start;
}

body[data-page-type="scan"] .scan-total-score {
    min-width: 148px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    padding: 18px 20px;
    border: 1px solid #dce8ab;
    background: var(--green-soft);
    color: #526300;
}

body[data-page-type="scan"] .scan-total-score strong {
    display: block;
    font-size: clamp(2.35rem, 5vw, 3.4rem);
    line-height: 1;
    letter-spacing: -.04em;
}

body[data-page-type="scan"] .scan-total-score span {
    color: #6e7c31;
    font-size: .8rem;
    font-weight: 800;
}

body[data-page-type="scan"] .dimension-score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

body[data-page-type="scan"] .dimension-score-grid article {
    min-width: 0;
    padding: 15px 16px;
}

body[data-page-type="scan"] .dimension-score-grid span {
    min-width: 0;
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .scan-insights-grid {
    align-items: stretch;
}

body[data-page-type="scan"] .scan-insights-grid article,
body[data-page-type="scan"] .scan-module-advice,
body[data-page-type="scan"] .scan-roadmap-panel {
    min-width: 0;
}

body[data-page-type="scan"] .scan-insights-grid ul {
    margin-top: 12px;
}

body[data-page-type="scan"] .scan-module-advice > [data-scan-modules] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

body[data-page-type="scan"] .scan-module-advice > [data-scan-modules] article {
    min-width: 0;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 16px;
    border: 1px solid #e0e5cb;
    background: #fff;
}

body[data-page-type="scan"] .scan-module-advice > [data-scan-modules] article span {
    color: #748a00;
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

body[data-page-type="scan"] .scan-module-advice > [data-scan-modules] article strong {
    color: var(--ink);
    font-size: .82rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .scan-roadmap-panel > .scan-roadmap {
    align-items: stretch;
}

body[data-page-type="scan"] .scan-roadmap-panel > .scan-roadmap article {
    min-width: 0;
    height: 100%;
}

body[data-page-type="scan"] .scan-result-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

body[data-page-type="scan"] .scan-result-actions .button {
    min-width: 0;
    white-space: normal;
    text-align: center;
}

body[data-page-type="scan"] .scan-contact-section {
    background: #fafbf7;
}

body[data-page-type="scan"] .scan-contact-section .lead-form {
    padding: 24px;
    border: 1px solid var(--line);
    background: #fff;
}

body[data-page-type="scan"] .lead-form-compact .form-grid,
body[data-page-type="scan"] .lead-form-compact .lead-advanced-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page-type="scan"] .lead-form-compact label,
body[data-page-type="scan"] .lead-form-compact fieldset,
body[data-page-type="scan"] .lead-form-compact details {
    min-width: 0;
}

body[data-page-type="scan"] .lead-form-compact input,
body[data-page-type="scan"] .lead-form-compact select,
body[data-page-type="scan"] .lead-form-compact textarea {
    max-width: 100%;
}

body[data-page-type="scan"] .lead-advanced {
    overflow: hidden;
}

body[data-page-type="scan"] .lead-advanced > summary {
    list-style-position: inside;
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .process-usage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 12px;
}

body[data-page-type="scan"] .process-usage legend {
    grid-column: 1 / -1;
    width: 100%;
}

body[data-page-type="scan"] .process-usage label {
    width: 100%;
    min-width: 0;
    display: flex !important;
    align-items: flex-start;
    gap: 7px !important;
    margin: 0 !important;
    padding: 8px 9px;
    border: 1px solid #e7e9e1;
    background: #fff;
    font-size: .73rem;
    line-height: 1.35;
}

body[data-page-type="scan"] .process-usage label span {
    min-width: 0;
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .lead-form-footer {
    min-width: 0;
}

@media (max-width: 920px) {
    body[data-page-type="scan"] .scan-flow-head,
    body[data-page-type="scan"] .scan-result-heading,
    body[data-page-type="scan"] .scan-inline-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    body[data-page-type="scan"] .scan-flow-status {
        width: 100%;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    body[data-page-type="scan"] .scan-flow-status span {
        margin-top: 0;
        text-align: right;
    }

    body[data-page-type="scan"] .workorder-type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body[data-page-type="scan"] .scan-total-score {
        width: max-content;
        max-width: 100%;
    }

    body[data-page-type="scan"] .scan-module-advice > [data-scan-modules] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body[data-page-type="scan"] .scan-contact-section .lead-form {
        padding: 20px;
    }
}

@media (max-width: 680px) {
    body[data-page-type="scan"] .scan-section {
        padding-top: 42px;
        padding-bottom: 58px;
    }

    body[data-page-type="scan"] .scan-shell {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }

    body[data-page-type="scan"] .scan-flow-head,
    body[data-page-type="scan"] .scan-profile,
    body[data-page-type="scan"] .scan-question-form,
    body[data-page-type="scan"] .scan-result-section,
    body[data-page-type="scan"] .scan-inline-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    body[data-page-type="scan"] .scan-flow-head {
        padding-top: 28px;
        padding-bottom: 22px;
    }

    body[data-page-type="scan"] .workorder-type-grid,
    body[data-page-type="scan"] .answer-options,
    body[data-page-type="scan"] .dimension-score-grid,
    body[data-page-type="scan"] .scan-insights-grid,
    body[data-page-type="scan"] .scan-module-advice > [data-scan-modules],
    body[data-page-type="scan"] .lead-form-compact .form-grid,
    body[data-page-type="scan"] .lead-form-compact .lead-advanced-grid,
    body[data-page-type="scan"] .process-usage {
        grid-template-columns: 1fr;
    }

    body[data-page-type="scan"] .workorder-type-grid button {
        min-height: 82px;
    }

    body[data-page-type="scan"] .question-card {
        min-height: 0;
        padding: 14px 0 2px;
    }

    body[data-page-type="scan"] .question-card legend {
        font-size: clamp(1.2rem, 5.7vw, 1.55rem);
    }

    body[data-page-type="scan"] .answer-options label > span {
        min-height: 82px;
    }

    body[data-page-type="scan"] .scan-form-actions {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    body[data-page-type="scan"] .scan-form-actions p {
        grid-column: 1 / -1;
        grid-row: 1;
        min-height: 18px;
        text-align: left;
    }

    body[data-page-type="scan"] .scan-form-actions .scan-back {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
    }

    body[data-page-type="scan"] .scan-form-actions .scan-next-button {
        grid-column: 2;
        grid-row: 2;
        width: 100%;
        min-width: 0;
    }

    body[data-page-type="scan"] .scan-total-score {
        width: 100%;
        justify-content: flex-start;
    }

    body[data-page-type="scan"] .scan-roadmap-panel > .scan-roadmap {
        grid-template-columns: 1fr;
    }

    body[data-page-type="scan"] .scan-result-actions {
        align-items: stretch;
        flex-direction: column;
    }

    body[data-page-type="scan"] .scan-result-actions .button {
        width: 100%;
    }

    body[data-page-type="scan"] .scan-contact-section .lead-form {
        padding: 18px 14px;
    }

    body[data-page-type="scan"] .lead-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    body[data-page-type="scan"] .lead-form-footer .button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    body[data-page-type="scan"] .scan-form-actions {
        grid-template-columns: 1fr;
    }

    body[data-page-type="scan"] .scan-form-actions p,
    body[data-page-type="scan"] .scan-form-actions .scan-back,
    body[data-page-type="scan"] .scan-form-actions .scan-next-button {
        grid-column: 1;
    }

    body[data-page-type="scan"] .scan-form-actions p { grid-row: 1; }
    body[data-page-type="scan"] .scan-form-actions .scan-next-button { grid-row: 2; }
    body[data-page-type="scan"] .scan-form-actions .scan-back { grid-row: 3; }
}

/* ========================================================================== 
   Digitale werkbon - tool completion layer
   Final isolated layout for profile, questions, result, roadmap and lead form.
   ========================================================================== */
body[data-page-type="scan"] .workorder-scan,
body[data-page-type="scan"] .workorder-scan * {
    min-inline-size: 0;
}

body[data-page-type="scan"] .workorder-scan fieldset {
    min-width: 0;
    min-inline-size: 0;
}

body[data-page-type="scan"] .scan-scope {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

body[data-page-type="scan"] .scan-scope span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid #e3e7d6;
    border-radius: 999px;
    background: #fafbf7;
    color: #697259;
    font-size: .68rem;
    font-weight: 750;
    line-height: 1.2;
    white-space: normal;
}

body[data-page-type="scan"] .scan-flow-status small {
    display: block;
    margin-bottom: 2px;
    color: #8a8d85;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body[data-page-type="scan"] .scan-profile-copy p,
body[data-page-type="scan"] .question-context,
body[data-page-type="scan"] .scan-advice-summary,
body[data-page-type="scan"] .scan-roadmap-panel > p {
    max-width: 760px;
    color: var(--muted);
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .question-card legend strong {
    display: block;
    max-width: 850px;
    color: var(--ink);
    font-size: inherit;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .question-context {
    margin: 12px 0 0;
    font-size: .78rem;
    line-height: 1.55;
}

body[data-page-type="scan"] .answer-options label {
    display: block;
    width: 100%;
}

body[data-page-type="scan"] .answer-options label > span {
    box-shadow: none;
    transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

body[data-page-type="scan"] .answer-options label:hover > span {
    transform: translateY(-1px);
}

body[data-page-type="scan"] .answer-options input:focus-visible + span {
    outline: 3px solid rgba(159,190,0,.2);
    outline-offset: 2px;
}

body[data-page-type="scan"] .scan-form-actions button:disabled {
    transform: none;
    box-shadow: none;
}

body[data-page-type="scan"] .scan-advice-summary {
    margin: 10px 0 0;
    font-size: .86rem;
    line-height: 1.65;
}

body[data-page-type="scan"] .dimension-score-grid article {
    border-radius: 6px;
}

body[data-page-type="scan"] .scan-insights-grid article,
body[data-page-type="scan"] .scan-module-advice,
body[data-page-type="scan"] .scan-roadmap-panel {
    border-radius: 6px;
}

body[data-page-type="scan"] .scan-insights-grid h3,
body[data-page-type="scan"] .scan-module-advice h3,
body[data-page-type="scan"] .scan-roadmap-panel h3 {
    margin: 5px 0 10px;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.35;
}

body[data-page-type="scan"] .scan-insights-grid li {
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .scan-roadmap-panel > p {
    margin: -2px 0 0;
    font-size: .77rem;
    line-height: 1.55;
}

body[data-page-type="scan"] .scan-roadmap-panel > .scan-roadmap article {
    display: flex;
    flex-direction: column;
}

body[data-page-type="scan"] .scan-roadmap-panel > .scan-roadmap p {
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .scan-result-actions {
    justify-content: flex-start;
}

body[data-page-type="scan"] .scan-contact-section .lead-form,
body[data-page-type="scan"] .scan-contact-section .form-grid,
body[data-page-type="scan"] .scan-contact-section .lead-advanced-grid {
    width: 100%;
}

body[data-page-type="scan"] .scan-contact-section .form-grid,
body[data-page-type="scan"] .scan-contact-section .lead-advanced-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 18px;
}

body[data-page-type="scan"] .scan-contact-section .form-wide {
    grid-column: 1 / -1;
}

body[data-page-type="scan"] .scan-contact-section label {
    align-content: start;
}

body[data-page-type="scan"] .scan-contact-section input,
body[data-page-type="scan"] .scan-contact-section select,
body[data-page-type="scan"] .scan-contact-section textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

body[data-page-type="scan"] .scan-contact-section select {
    text-overflow: ellipsis;
}

body[data-page-type="scan"] .scan-contact-section .process-usage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

body[data-page-type="scan"] .scan-contact-section .process-usage legend {
    grid-column: 1 / -1;
}

body[data-page-type="scan"] .scan-contact-section .process-usage label {
    min-height: 42px;
    align-items: center;
}

body[data-page-type="scan"] .scan-contact-section .consent-check {
    width: 100%;
}

body[data-page-type="scan"] .scan-contact-section .lead-form-footer {
    width: 100%;
    justify-content: space-between;
}

body[data-page-type="scan"] .scan-contact-section .lead-form-footer p {
    flex: 1 1 280px;
    margin: 0;
    overflow-wrap: anywhere;
}

@media (max-width: 920px) {
    body[data-page-type="scan"] .scan-scope {
        margin-top: 14px;
    }

    body[data-page-type="scan"] .scan-contact-section .process-usage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    body[data-page-type="scan"] .scan-scope {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body[data-page-type="scan"] .scan-scope span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    body[data-page-type="scan"] .scan-flow-status {
        align-items: flex-start;
    }

    body[data-page-type="scan"] .scan-flow-status small {
        display: none;
    }

    body[data-page-type="scan"] .scan-contact-section .form-grid,
    body[data-page-type="scan"] .scan-contact-section .lead-advanced-grid,
    body[data-page-type="scan"] .scan-contact-section .process-usage {
        grid-template-columns: 1fr;
    }

    body[data-page-type="scan"] .scan-contact-section .lead-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    body[data-page-type="scan"] .scan-contact-section .lead-form-footer p,
    body[data-page-type="scan"] .scan-contact-section .lead-form-footer button {
        width: 100%;
        flex-basis: auto;
    }
}

@media (max-width: 420px) {
    body[data-page-type="scan"] .scan-scope {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================== 
   Digitale werkbon - formulier en tool alignment
   Aligns the actual workorder scan markup with the hardened responsive layer.
   ========================================================================== */
.form-honeypot {
    position: absolute !important;
    inline-size: 1px !important;
    block-size: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

body[data-page-type="scan"] .scan-result-section {
    min-width: 0;
    padding: 42px;
    border-top: 1px solid var(--line);
    background: #fff;
}

body[data-page-type="scan"] .scan-result-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: start;
    margin-bottom: 24px;
}

body[data-page-type="scan"] .scan-result-heading h3 {
    margin: 5px 0 8px;
    color: var(--ink);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
}

body[data-page-type="scan"] .scan-result-heading p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

body[data-page-type="scan"] .dimension-score-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

body[data-page-type="scan"] .dimension-score-grid article {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) auto;
}

body[data-page-type="scan"] .dimension-score-grid article > span {
    min-width: 0;
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .scan-insights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

body[data-page-type="scan"] .scan-insights-grid article {
    min-width: 0;
}

body[data-page-type="scan"] .scan-insight-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 12px;
    padding: 12px 0;
    border-top: 1px solid #e9ece1;
}

body[data-page-type="scan"] .scan-insight-item:first-child {
    border-top: 0;
}

body[data-page-type="scan"] .scan-insight-item strong {
    min-width: 0;
    color: var(--ink);
    font-size: .82rem;
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .scan-insight-item span {
    color: #748a00;
    font-size: .68rem;
    font-weight: 850;
    white-space: nowrap;
}

body[data-page-type="scan"] .scan-insight-item p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--muted);
    font-size: .75rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .scan-module-advice h4,
body[data-page-type="scan"] .scan-roadmap-panel h4 {
    margin: 5px 0 0;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.35;
}

body[data-page-type="scan"] .scan-module-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

body[data-page-type="scan"] .scan-module-card {
    position: relative;
    min-width: 0;
    min-height: 142px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 16px;
    border: 1px solid #e0e5cb;
    background: #fff;
}

body[data-page-type="scan"] .scan-module-card > span {
    color: #748a00;
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .05em;
}

body[data-page-type="scan"] .scan-module-card h5 {
    margin: 0;
    color: var(--ink);
    font-size: .86rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .scan-module-card p {
    flex: 1;
    margin: 0;
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .scan-module-card > strong {
    color: #607400;
    font-size: .76rem;
}

body[data-page-type="scan"] .scan-roadmap-panel {
    margin-top: 14px;
}

body[data-page-type="scan"] .scan-roadmap-panel > .scan-roadmap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

body[data-page-type="scan"] .scan-roadmap-panel > .scan-roadmap article {
    min-width: 0;
    min-height: 190px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-content: start;
}

body[data-page-type="scan"] .scan-roadmap-panel > .scan-roadmap article > span {
    margin: 0;
}

body[data-page-type="scan"] .scan-roadmap-panel > .scan-roadmap article > div {
    min-width: 0;
}

body[data-page-type="scan"] .scan-roadmap-panel > .scan-roadmap small {
    display: block;
    margin-bottom: 5px;
    color: #748a00;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

body[data-page-type="scan"] .scan-roadmap-panel > .scan-roadmap strong {
    display: block;
    margin-bottom: 7px;
    color: var(--ink);
    font-size: .85rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

body[data-page-type="scan"] .scan-contact-section {
    display: grid;
    grid-template-columns: minmax(220px, .75fr) minmax(0, 1.25fr);
    gap: 28px;
    padding: 42px;
    border-top: 1px solid var(--line);
    background: #fafbf7;
}

body[data-page-type="scan"] .scan-contact-copy {
    min-width: 0;
    align-self: start;
}

body[data-page-type="scan"] .scan-contact-copy h3 {
    margin: 5px 0 10px;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

body[data-page-type="scan"] .scan-contact-copy p {
    margin: 0;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.65;
}

body[data-page-type="scan"] .scan-contact-section .lead-form {
    min-width: 0;
    margin: 0;
}

@media (max-width: 980px) {
    body[data-page-type="scan"] .dimension-score-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body[data-page-type="scan"] .scan-module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body[data-page-type="scan"] .scan-contact-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    body[data-page-type="scan"] .scan-result-section,
    body[data-page-type="scan"] .scan-contact-section {
        padding: 28px 18px;
    }

    body[data-page-type="scan"] .scan-result-heading,
    body[data-page-type="scan"] .scan-insights-grid,
    body[data-page-type="scan"] .dimension-score-grid,
    body[data-page-type="scan"] .scan-module-grid,
    body[data-page-type="scan"] .scan-roadmap-panel > .scan-roadmap {
        grid-template-columns: 1fr;
    }

    body[data-page-type="scan"] .scan-result-heading {
        gap: 16px;
    }

    body[data-page-type="scan"] .scan-insight-item {
        grid-template-columns: 1fr;
    }

    body[data-page-type="scan"] .scan-insight-item span,
    body[data-page-type="scan"] .scan-insight-item p {
        grid-column: 1;
        white-space: normal;
    }

    body[data-page-type="scan"] .scan-module-card,
    body[data-page-type="scan"] .scan-roadmap-panel > .scan-roadmap article {
        min-height: 0;
    }
}

/* ========================================================================== 
   Digitale werkbon - doelgroepgerichte proceslaag
   ========================================================================== */
.hero-media { position: relative; }
.hero-workorder-chip {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(21, 42, 29, .94);
    box-shadow: 0 18px 45px rgba(20, 35, 24, .22);
    backdrop-filter: blur(10px);
    overflow: hidden;
}
.hero-workorder-chip span {
    min-width: 0;
    padding: 13px 14px;
    color: rgba(255,255,255,.72);
    font-size: .72rem;
    line-height: 1.35;
}
.hero-workorder-chip b {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-size: .79rem;
}

.operational-roles-section { background: #fff; }
.operational-role-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.operational-role-grid article {
    min-width: 0;
    min-height: 260px;
    padding: 24px;
    border: 1px solid var(--line);
    background: #fbfcf9;
}
.operational-role-grid article > span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green-deep);
    font-size: .72rem;
    font-weight: 900;
}
.operational-role-grid h3 { margin: 0 0 9px; font-size: 1.1rem; }
.operational-role-grid p { min-height: 72px; margin: 0 0 20px; color: var(--muted); }
.operational-role-grid strong { display: block; margin-bottom: 6px; color: var(--green-deep); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.operational-role-grid small { display: block; color: var(--ink-2); font-size: .78rem; line-height: 1.6; }

.workorder-record-section { overflow: hidden; }
.workorder-record-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.workorder-record-layout > div:first-child { max-width: 590px; }
.workorder-record-layout h2 { max-width: 650px; }
.workorder-record-card {
    min-width: 0;
    border: 1px solid #dfe3d8;
    background: #fff;
    box-shadow: 0 22px 55px rgba(32, 46, 32, .09);
}
.workorder-record-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
    background: #17331f;
    color: #fff;
}
.workorder-record-card header small { display: block; color: var(--green); font-size: .67rem; font-weight: 900; letter-spacing: .08em; }
.workorder-record-card header strong { display: block; margin-top: 2px; font-size: 1.3rem; }
.status-pill { flex: 0 0 auto; padding: 7px 10px; border-radius: 999px; background: var(--green); color: #263100; font-size: .68rem; font-weight: 900; }
.workorder-record-row {
    display: grid;
    grid-template-columns: 112px 130px 1fr;
    gap: 15px;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
}
.workorder-record-row:last-child { border-bottom: 0; }
.workorder-record-row > span { color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.workorder-record-row strong { font-size: .84rem; }
.workorder-record-row p { min-width: 0; margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.5; overflow-wrap: anywhere; }

.service-scenario-section { background: #17331f; color: #fff; }
.service-scenario-section .section-head h2 { color: #fff; }
.service-scenario-section .section-head p { color: rgba(255,255,255,.72); }
.service-scenario-section .eyebrow { color: var(--green); }
.service-scenario-timeline {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}
.service-scenario-timeline li {
    position: relative;
    min-width: 0;
    padding: 0 18px 26px 0;
}
.service-scenario-timeline li::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,.18);
}
.service-scenario-timeline time {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-width: 58px;
    height: 28px;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    background: var(--green);
    color: #263100;
    font-size: .7rem;
    font-weight: 900;
}
.service-scenario-timeline strong { display: block; margin-bottom: 8px; color: #fff; font-size: .88rem; }
.service-scenario-timeline p { margin: 0; color: rgba(255,255,255,.68); font-size: .75rem; line-height: 1.55; }
.service-scenario-section .button-secondary { border-color: rgba(255,255,255,.34); background: transparent; color: #fff; }

.solution-fit-section { background: #fff; }
.solution-fit-table table { min-width: 760px; }
.solution-fit-table td:first-child { font-weight: 800; color: var(--ink); }
.solution-fit-table td:nth-child(2) { color: var(--green-deep); font-weight: 800; }

.target-fit-section { padding-top: 48px; padding-bottom: 48px; background: #f4f7e8; }
.target-fit-layout {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 44px;
    align-items: center;
}
.target-fit-layout h2 { margin-top: 8px; }
.target-fit-layout > div:first-child > p { max-width: 690px; color: var(--muted); }
.target-role-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.target-role-tags span { padding: 8px 10px; border: 1px solid #d7e2ac; background: #fff; color: #506000; font-size: .72rem; font-weight: 800; }
.target-signal-card { padding: 24px 26px; border-left: 4px solid var(--green); background: #fff; box-shadow: 0 14px 36px rgba(34,50,28,.06); }
.target-signal-card > strong { display: block; margin-bottom: 12px; font-size: .9rem; }
.target-signal-card ul { margin: 0; padding-left: 18px; color: var(--ink-2); }
.target-signal-card li + li { margin-top: 8px; }

body[data-page-type="scan"] .scan-operational-summary {
    display: grid;
    grid-template-columns: .8fr .8fr 1.4fr;
    gap: 12px;
    margin: 22px 0;
}
body[data-page-type="scan"] .scan-operational-summary article {
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--line);
    background: #fbfcf8;
}
body[data-page-type="scan"] .scan-operational-summary span { display: block; margin-bottom: 7px; color: var(--muted); font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
body[data-page-type="scan"] .scan-operational-summary strong { display: block; color: var(--ink); font-size: 1.4rem; }
body[data-page-type="scan"] .scan-operational-summary strong b { font-size: 1.75rem; }
body[data-page-type="scan"] .scan-operational-summary p { margin: 7px 0 0; color: var(--muted); font-size: .73rem; line-height: 1.5; }
body[data-page-type="scan"] .scan-maturity-card { background: var(--green-soft) !important; border-color: #dbe8a5 !important; }
body[data-page-type="scan"] .scan-maturity-card strong { color: #526400; font-size: 1.02rem; line-height: 1.35; }
body[data-page-type="scan"] .scan-demo-blueprint {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 30px;
    margin: 22px 0;
    padding: 24px;
    border: 1px solid #dbe3d2;
    background: #17331f;
    color: #fff;
}
body[data-page-type="scan"] .scan-demo-blueprint h4 { margin: 6px 0 8px; color: #fff; font-size: 1.2rem; }
body[data-page-type="scan"] .scan-demo-blueprint p { margin: 0; color: rgba(255,255,255,.7); font-size: .8rem; }
body[data-page-type="scan"] .scan-demo-blueprint .eyebrow { color: var(--green); }
body[data-page-type="scan"] .scan-demo-blueprint ol { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin: 0; padding: 0; list-style: none; }
body[data-page-type="scan"] .scan-demo-blueprint li { display: grid; grid-template-columns: 30px 1fr; gap: 9px; align-items: center; min-width: 0; padding: 9px 10px; background: rgba(255,255,255,.07); }
body[data-page-type="scan"] .scan-demo-blueprint li span { display: inline-flex; width: 26px; height: 26px; align-items: center; justify-content: center; background: var(--green); color: #293300; font-size: .65rem; font-weight: 900; }
body[data-page-type="scan"] .scan-demo-blueprint li strong { min-width: 0; color: #fff; font-size: .76rem; overflow-wrap: anywhere; }

.calculator-time-summary { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin: 18px 0; }
.calculator-time-summary article { min-width: 0; padding: 14px; border: 1px solid var(--line); background: #fbfcf8; }
.calculator-time-summary span { display: block; min-height: 35px; color: var(--muted); font-size: .7rem; line-height: 1.35; }
.calculator-time-summary strong { display: block; margin-top: 5px; color: var(--ink); font-size: 1.25rem; }
.calculator-explanation { margin-top: 16px; padding: 16px 18px; border-left: 4px solid var(--green); background: #f7f9ee; }
.calculator-explanation strong { display: block; margin-bottom: 5px; }
.calculator-explanation p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.55; }

@media (max-width: 1050px) {
    .operational-role-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .workorder-record-layout, .target-fit-layout { grid-template-columns: 1fr; gap: 30px; }
    .service-scenario-timeline { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px 0; }
    body[data-page-type="scan"] .scan-operational-summary { grid-template-columns: repeat(2,minmax(0,1fr)); }
    body[data-page-type="scan"] .scan-maturity-card { grid-column: 1 / -1; }
    body[data-page-type="scan"] .scan-demo-blueprint { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .hero-workorder-chip { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); margin-top: 10px; background: #17331f; }
    .operational-role-grid { grid-template-columns: 1fr; }
    .operational-role-grid article { min-height: 0; }
    .operational-role-grid p { min-height: 0; }
    .workorder-record-row { grid-template-columns: 1fr; gap: 4px; }
    .service-scenario-timeline { grid-template-columns: 1fr; gap: 0; }
    .service-scenario-timeline li { display: grid; grid-template-columns: 70px 1fr; gap: 14px; padding: 0 0 18px; }
    .service-scenario-timeline li::before { top: 28px; left: 29px; bottom: -2px; width: 1px; height: auto; right: auto; }
    .service-scenario-timeline time { margin: 0; }
    body[data-page-type="scan"] .scan-operational-summary { grid-template-columns: 1fr; }
    body[data-page-type="scan"] .scan-maturity-card { grid-column: auto; }
    body[data-page-type="scan"] .scan-demo-blueprint { padding: 20px 16px; }
    body[data-page-type="scan"] .scan-demo-blueprint ol, .calculator-time-summary { grid-template-columns: 1fr; }
    .target-signal-card { padding: 20px; }
}

/* v1.2.0 - complete workorder lifecycle layer */
.work-source-section { background: #fff; }
.work-source-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; margin-top:24px; }
.work-source-grid article { min-width:0; display:grid; grid-template-columns:auto 1fr; gap:12px; align-items:start; padding:18px; border:1px solid var(--line); background:#fbfcf8; }
.work-source-grid article > span { display:grid; place-items:center; width:34px; height:34px; border-radius:50%; background:var(--green-soft); color:#5f7300; font-size:.72rem; font-weight:900; }
.work-source-grid strong { display:block; color:var(--ink); font-size:.92rem; }
.work-source-grid p { margin:5px 0 0; color:var(--muted); font-size:.78rem; line-height:1.55; }

.status-priority-layout { display:grid; grid-template-columns:1.3fr .7fr; gap:18px; align-items:stretch; }
.status-model,.priority-model { min-width:0; padding:22px; border:1px solid var(--line); background:#fff; }
.mini-head { display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:16px; }
.mini-head > span { color:var(--ink); font-size:.78rem; font-weight:900; text-transform:uppercase; letter-spacing:.06em; }
.mini-head a { color:#647900; font-size:.76rem; font-weight:800; }
.status-model ol { list-style:none; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:8px; margin:0; padding:0; }
.status-model li { min-width:0; position:relative; padding:14px 12px; border:1px solid var(--line); background:#fafbf7; }
.status-model li > span { display:block; margin-bottom:10px; color:#849500; font-size:.68rem; font-weight:900; }
.status-model li strong,.status-model li small { display:block; }
.status-model li strong { color:var(--ink); font-size:.84rem; }
.status-model li small { margin-top:3px; color:var(--muted); font-size:.7rem; line-height:1.35; }
.priority-model > div:not(.mini-head) { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.priority-model section { padding:14px; border:1px solid var(--line); background:#fafbf7; }
.priority-model section strong { display:inline-grid; place-items:center; width:36px; height:36px; margin-right:8px; background:#292a28; color:#fff; font-size:.76rem; }
.priority-model section b { color:var(--ink); font-size:.82rem; }
.priority-model section p { margin:8px 0 0; color:var(--muted); font-size:.72rem; line-height:1.4; }
.model-note { margin:14px 0 0; color:var(--muted); font-size:.72rem; line-height:1.5; }

.mobile-execution-card { min-width:0; padding:18px; border:1px solid #dfe3d1; background:#f6f8ef; box-shadow:0 16px 36px rgba(30,38,8,.08); }
.mobile-card-head { display:flex; justify-content:space-between; gap:12px; align-items:flex-start; padding-bottom:14px; border-bottom:1px solid #dfe3d1; }
.mobile-card-head div span,.mobile-card-head div strong { display:block; }
.mobile-card-head div span { color:#687c00; font-size:.72rem; font-weight:900; }
.mobile-card-head div strong { margin-top:4px; color:var(--ink); }
.mobile-card-head > b { padding:7px 9px; background:#e3efb7; color:#586c00; font-size:.68rem; }
.mobile-timer { margin:14px 0; padding:14px; background:#292a28; color:#fff; }
.mobile-timer > span { display:block; color:#cfd5b8; font-size:.7rem; }
.mobile-timer > strong { display:block; margin:3px 0 10px; font-size:1.6rem; letter-spacing:.04em; }
.mobile-timer > div { display:flex; gap:8px; }
.mobile-timer button { flex:1; padding:8px 10px; border:1px solid #62665b; background:#383a35; color:#fff; font-weight:800; opacity:1; }
.mobile-execution-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.mobile-execution-grid article { padding:12px; border:1px solid #dfe3d1; background:#fff; }
.mobile-execution-grid span,.mobile-execution-grid strong,.mobile-execution-grid small { display:block; }
.mobile-execution-grid span { color:var(--muted); font-size:.68rem; }
.mobile-execution-grid strong { margin-top:3px; color:var(--ink); font-size:.82rem; }
.mobile-execution-grid small { margin-top:2px; color:#738300; font-size:.68rem; }
.mobile-checklist { list-style:none; display:grid; gap:6px; margin:12px 0 0; padding:0; }
.mobile-checklist li { display:flex; align-items:center; gap:8px; padding:8px 10px; border:1px solid #dfe3d1; background:#fff; color:var(--ink-2); font-size:.74rem; }
.mobile-checklist li span { display:grid; place-items:center; width:20px; height:20px; border-radius:50%; background:#e8f1c8; color:#637700; font-size:.65rem; font-weight:900; }
.mobile-checklist li.is-open span { background:#fff1d7; color:#9a6200; }
.inline-links { display:flex; flex-wrap:wrap; gap:16px; margin-top:16px; }

.object-contract-section { background:#252624; }
.section-head-light h2,.section-head-light p { color:#fff; }
.section-head-light p { color:#c9ccc3; }
.object-contract-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.object-contract-grid article { min-width:0; padding:22px; border:1px solid #464840; background:#2d2f2b; color:#fff; }
.object-contract-grid article > span { color:#b7d72d; font-size:.72rem; font-weight:900; text-transform:uppercase; letter-spacing:.05em; }
.object-contract-grid h3 { margin:8px 0 16px; color:#fff; font-size:1.1rem; }
.object-contract-grid dl { margin:0 0 16px; }
.object-contract-grid dl > div { display:flex; justify-content:space-between; gap:12px; padding:9px 0; border-bottom:1px solid #44473f; }
.object-contract-grid dt { color:#bfc3b6; font-size:.73rem; }
.object-contract-grid dd { margin:0; color:#fff; font-size:.74rem; font-weight:800; text-align:right; }
.object-contract-grid ul { display:grid; gap:9px; margin:0 0 18px; padding:0; list-style:none; }
.object-contract-grid li { position:relative; padding-left:16px; color:#d4d7cf; font-size:.76rem; }
.object-contract-grid li::before { content:'→'; position:absolute; left:0; color:#b7d72d; }
.object-contract-grid a { color:#d3ed61; font-size:.78rem; font-weight:800; }

/* Scan now exposes thirteen separate operational dimensions. */
body[data-page-type="scan"] .dimension-score-grid { grid-template-columns:repeat(4,minmax(0,1fr)); }

@media (max-width: 980px) {
  .work-source-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .status-priority-layout { grid-template-columns:1fr; }
  .status-model ol { grid-template-columns:repeat(4,minmax(0,1fr)); }
  .object-contract-grid { grid-template-columns:1fr; }
  body[data-page-type="scan"] .dimension-score-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .work-source-grid,.status-model ol,.priority-model > div:not(.mini-head),.mobile-execution-grid { grid-template-columns:1fr; }
  .work-source-grid article { padding:15px; }
  .status-model,.priority-model,.mobile-execution-card,.object-contract-grid article { padding:18px; }
  .mini-head { align-items:flex-start; flex-direction:column; }
  body[data-page-type="scan"] .dimension-score-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 460px) {
  body[data-page-type="scan"] .dimension-score-grid { grid-template-columns:1fr; }
  .mobile-card-head { flex-direction:column; }
}

/* ==========================================================
   digitalewerkbon.solvcrm.nl v1.0.0
   Mobile-first workbon components
   ========================================================== */

.hero-workbon-chip {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    background: rgba(20, 52, 58, .94);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(17, 34, 38, .2);
    backdrop-filter: blur(8px);
}
.hero-workbon-chip span { min-width: 0; padding: 8px 10px; color: #fff; font-size: .78rem; line-height: 1.25; }
.hero-workbon-chip b { display: block; color: #c8e347; font-size: .9rem; margin-bottom: 2px; }

.workbon-flow-position { padding: 26px 0; border-bottom: 1px solid #e7ecee; background: #fff; }
.workbon-flow-head { display: flex; gap: 28px; justify-content: space-between; align-items: end; margin-bottom: 18px; }
.workbon-flow-head > div { min-width: 0; display: grid; gap: 5px; }
.workbon-flow-head strong { max-width: 760px; color: #19363c; font-size: 1.05rem; }
.workbon-flow-head a { flex: 0 0 auto; font-weight: 800; color: #17353b; }
.workbon-flow-position ol { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.workbon-flow-position li { min-width: 0; }
.workbon-flow-position li a { height: 100%; display: flex; align-items: center; gap: 9px; padding: 12px 13px; border: 1px solid #e0e7e9; border-radius: 8px; background: #f8fafb; color: #325058; text-decoration: none; }
.workbon-flow-position li span { font-weight: 900; font-size: .72rem; color: #90a0a4; }
.workbon-flow-position li b { min-width: 0; font-size: .82rem; line-height: 1.25; overflow-wrap: anywhere; }
.workbon-flow-position li.is-active a { border-color: #b7d72d; background: #f7fbe7; color: #19363c; }
.workbon-flow-position li.is-active span { color: #738e00; }

.before-after-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.before-after-grid article { min-width: 0; padding: 30px; border-radius: 10px; }
.before-card { background: #f4f5f5; border: 1px solid #e1e5e6; }
.after-card { background: #18383e; color: #fff; }
.before-after-grid article > span { display: inline-block; margin-bottom: 11px; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.after-card > span { color: #c8e347; }
.before-after-grid h3 { margin: 0 0 20px; font-size: 1.35rem; }
.before-after-grid ol { margin: 0; padding: 0; list-style: none; counter-reset: compare; display: grid; gap: 10px; }
.before-after-grid li { position: relative; padding: 10px 12px 10px 42px; background: rgba(255,255,255,.7); border-radius: 6px; line-height: 1.4; }
.after-card li { background: rgba(255,255,255,.08); }
.before-after-grid li::before { counter-increment: compare; content: counter(compare); position: absolute; left: 12px; top: 9px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: #e1e7e8; color: #17353b; font-size: .7rem; font-weight: 900; }
.after-card li::before { background: #b7d72d; }

.phone-showcase-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); align-items: center; gap: clamp(34px, 7vw, 90px); }
.phone-mock { width: min(100%, 380px); margin-inline: auto; padding: 13px; background: #142d32; border: 7px solid #0f2428; border-radius: 38px; box-shadow: 0 30px 70px rgba(22, 49, 55, .22); }
.phone-top { display: flex; justify-content: space-between; align-items: center; padding: 7px 10px 12px; color: #d9e5e7; font-size: .72rem; }
.phone-content { background: #fff; border-radius: 25px; padding: 22px 18px 18px; min-height: 430px; }
.phone-content small { color: #74888d; font-weight: 800; }
.phone-content h3 { margin: 5px 0 10px; font-size: 1.4rem; }
.phone-content p { margin: 0 0 20px; color: #587078; }
.phone-progress { height: 8px; overflow: hidden; background: #e8eeee; border-radius: 20px; margin-bottom: 6px; }
.phone-progress span { display: block; height: 100%; background: #b7d72d; }
.phone-action-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; margin-top: 24px; }
.phone-action-grid button { min-width: 0; min-height: 82px; border: 0; border-radius: 9px; background: #eef3f3; color: #17353b; font: inherit; font-size: .7rem; font-weight: 800; }
.phone-action-grid button b { display: block; margin-top: 7px; font-size: .92rem; }

.one-register-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.one-register-grid article { min-width: 0; padding: 25px; border: 1px solid #dfe7e8; background: #fff; border-radius: 8px; display: grid; gap: 9px; }
.one-register-grid strong { margin-bottom: 7px; color: #17353b; font-size: 1.05rem; }
.one-register-grid span { padding: 8px 10px; background: #f4f7f7; border-radius: 5px; color: #516970; font-size: .88rem; }

.target-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.target-grid a { min-width: 0; display: block; padding: 22px; background: #fff; border: 1px solid #dfe7e8; border-radius: 7px; color: inherit; text-decoration: none; }
.target-grid a:hover { transform: translateY(-2px); border-color: #b7d72d; }
.target-grid strong { display: block; color: #17353b; font-size: 1rem; }
.target-grid p { min-height: 48px; margin: 8px 0 16px; color: #60757b; font-size: .88rem; }
.target-grid span { color: #5f7900; font-size: .82rem; font-weight: 800; }

.tool-teaser-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.tool-teaser-grid a { min-width: 0; padding: 26px; border-radius: 9px; background: #17353b; color: #fff; text-decoration: none; }
.tool-teaser-grid a:nth-child(2) { background: #b7d72d; color: #183239; }
.tool-teaser-grid a:nth-child(3) { background: #f3f5f5; color: #183239; border: 1px solid #dde5e6; }
.tool-teaser-grid > a > span { display: block; margin-bottom: 26px; color: #c8e347; font-weight: 900; }
.tool-teaser-grid a:nth-child(2) > span { color: #183239; }
.tool-teaser-grid strong { display: block; font-size: 1.15rem; }
.tool-teaser-grid p { margin: 9px 0 0; opacity: .82; }

.growth-section { background: #17353b; color: #fff; }
.growth-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(26px,5vw,68px); }
.growth-grid > div { min-width: 0; padding: 12px 0; }
.growth-grid h2 { color: #fff; }
.growth-grid p { color: #cfdddf; }
.growth-grid .eyebrow { color: #c8e347; }
.starter-tags,.growth-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.starter-tags span,.growth-tags span { padding: 9px 12px; border-radius: 5px; background: rgba(255,255,255,.1); font-size: .85rem; font-weight: 800; }
.growth-grid a { display: inline-block; margin-top: 22px; color: #c8e347; font-weight: 800; }

.directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.directory-card { min-width: 0; padding: 23px; border-radius: 8px; border: 1px solid #dfe6e7; background: #fff; color: inherit; text-decoration: none; }
.directory-card > span { display: block; margin-bottom: 12px; color: #71848a; font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.directory-card strong { display: block; color: #18373d; font-size: 1.02rem; line-height: 1.3; }
.directory-card p { color: #64797f; font-size: .87rem; }
.directory-card b { color: #5d7800; font-size: .8rem; }

.bridge-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr); gap: 24px 55px; align-items: start; }
.bridge-steps { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.bridge-steps span { min-width: 0; display: flex; gap: 8px; padding: 11px 12px; background: #f3f6f6; border-radius: 5px; color: #607278; font-size: .8rem; }
.bridge-steps b { color: #17353b; }
.bridge-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.generator-layout,.calculator-layout,.demo-layout,.request-layout,.tool-lead { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 5vw, 60px); align-items: start; }
.generator-form-card,.calculator-card,.request-form-card { min-width: 0; padding: 28px; background: #fff; border: 1px solid #dfe6e8; border-radius: 10px; box-shadow: 0 18px 45px rgba(25,54,60,.07); }
.generator-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.generated-workbon { min-width: 0; background: #fff; border: 1px solid #d9e2e4; border-radius: 6px; padding: 32px; box-shadow: 0 20px 50px rgba(25,54,60,.08); }
.generated-header { display: flex; justify-content: space-between; gap: 15px; padding-bottom: 15px; border-bottom: 3px solid #b7d72d; color: #17353b; }
.generated-workbon h3 { margin: 22px 0; font-size: 1.45rem; }
.generated-meta { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-bottom: 22px; }
.generated-meta span { min-width: 0; padding: 10px; background: #f5f7f7; border-radius: 4px; }
.generated-meta b,.generated-meta i { display: block; font-style: normal; font-size: .82rem; }
.generated-meta i { margin-top: 3px; color: #5f747a; overflow-wrap: anywhere; }
.generated-workbon section { padding: 15px 0; border-top: 1px solid #e3e8e9; }
.generated-two { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.generated-signature { margin-top: 28px; }
.generated-signature > span { display: block; color: #708187; font-size: .8rem; }
.generated-signature > div { height: 70px; border-bottom: 1px solid #8a999d; }

.calculator-card form { display: grid; gap: 13px; }
.calculator-card label { display: grid; gap: 6px; font-weight: 800; font-size: .85rem; }
.calculator-card input { width: 100%; min-width: 0; }
.calculator-result { min-width: 0; padding: 32px; border-radius: 10px; background: #17353b; color: #fff; }
.result-kpi { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.result-kpi strong { display: block; color: #c8e347; font-size: clamp(2.3rem,5vw,4rem); line-height: 1; }
.result-kpi span { display: block; margin-top: 6px; color: #d1dddf; }
.result-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: 18px; }
.result-grid div { min-width: 0; padding: 15px; background: rgba(255,255,255,.08); border-radius: 7px; }
.result-grid strong { display: block; color: #fff; font-size: 1.3rem; overflow-wrap: anywhere; }
.result-grid span { display: block; margin-top: 4px; color: #cbd8da; font-size: .76rem; }
.calculator-result > p { color: #cbd8da; font-size: .8rem; margin: 18px 0 0; }

.demo-copy { min-width: 0; position: sticky; top: 100px; }
.demo-step-list { display: grid; gap: 7px; margin-top: 24px; }
.demo-step-list button { width: 100%; display: flex; align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid #dfe6e7; border-radius: 6px; background: #fff; color: #425c63; text-align: left; font: inherit; cursor: pointer; }
.demo-step-list button span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #edf1f2; font-size: .72rem; font-weight: 900; }
.demo-step-list button.is-active { border-color: #b7d72d; background: #f7fae9; color: #17353b; font-weight: 800; }
.demo-step-list button.is-active span { background: #b7d72d; }
.demo-phone { width: min(100%, 390px); margin-inline: auto; padding: 12px; background: #10262a; border: 7px solid #0c1f23; border-radius: 40px; box-shadow: 0 35px 80px rgba(18,48,54,.23); }
.demo-phone-top { display: flex; justify-content: space-between; padding: 7px 11px 12px; color: #d7e3e5; font-size: .7rem; }
.demo-screen { min-height: 520px; padding: 22px 18px; border-radius: 27px 27px 17px 17px; background: #fff; overflow: hidden; }
.demo-progress { height: 6px; margin-bottom: 20px; background: #e8eeee; border-radius: 20px; overflow: hidden; }
.demo-progress span { display: block; height: 100%; background: #b7d72d; transition: width .25s ease; }
.demo-screen section { min-width: 0; }
.demo-screen small { color: #71868b; font-weight: 900; letter-spacing: .05em; }
.demo-screen h3 { margin: 6px 0 10px; font-size: 1.45rem; }
.demo-screen p { color: #5b7278; }
.demo-summary { display: grid; gap: 8px; margin: 22px 0; }
.demo-summary span { padding: 11px; background: #f3f6f6; border-radius: 5px; color: #60737a; }
.demo-summary b { display: block; color: #17353b; font-size: .74rem; }
.demo-primary,.demo-secondary { width: 100%; min-height: 48px; border: 0; border-radius: 7px; font: inherit; font-weight: 900; cursor: pointer; }
.demo-primary { background: #b7d72d; color: #17353b; }
.demo-secondary { background: #edf1f2; color: #17353b; }
.demo-photo-placeholder { height: 130px; display: grid; place-items: center; margin: 16px 0; background: linear-gradient(135deg,#dbe4e5,#f4f7f7); border-radius: 7px; color: #6d8187; font-weight: 900; font-size: .75rem; }
.demo-check { display: flex; gap: 9px; align-items: center; padding: 9px 0; color: #455f66; }
.signature-pad { display: block; width: 100%; max-width: 100%; height: 120px; margin: 18px 0 8px; border: 1px dashed #92a3a7; border-radius: 6px; background: #fff; touch-action: none; }
.signature-actions { display: flex; justify-content: flex-end; margin-bottom: 16px; }
.signature-actions button { border: 0; background: none; color: #587078; font: inherit; font-size: .78rem; cursor: pointer; }
.demo-success-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 50px auto 20px; border-radius: 50%; background: #b7d72d; color: #17353b; font-size: 2rem; font-weight: 900; }
.demo-bottom-nav { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 3px; padding: 10px 5px 1px; color: #d7e4e6; font-size: .57rem; font-weight: 900; text-align: center; }

.tool-lead { align-items: center; }
.tool-lead > .lead-form { min-width: 0; padding: 24px; background: #fff; border: 1px solid #dce5e6; border-radius: 9px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
.form-grid label { min-width: 0; display: grid; gap: 6px; color: #334f56; font-size: .82rem; font-weight: 800; }
.form-grid input,.form-grid select,.form-grid textarea,.calculator-card input { min-width: 0; width: 100%; border: 1px solid #ccd8da; border-radius: 5px; padding: 11px 12px; background: #fff; color: #17353b; font: inherit; }
.form-wide { grid-column: 1 / -1; }
.needs-fieldset { min-inline-size: 0; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin: 16px 0; padding: 14px; border: 1px solid #dce5e6; border-radius: 6px; }
.needs-fieldset legend { padding: 0 7px; color: #526c73; font-size: .78rem; font-weight: 900; }
.needs-fieldset label { min-width: 0; display: flex; gap: 7px; align-items: center; padding: 8px; background: #f5f7f7; border-radius: 4px; font-size: .78rem; }
.consent-check { display: flex; gap: 9px; align-items: flex-start; margin: 14px 0; color: #607278; font-size: .76rem; line-height: 1.45; }
.lead-form-footer { display: flex; gap: 12px; justify-content: space-between; align-items: center; }
.lead-form-footer p { margin: 0; min-height: 22px; font-size: .78rem; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.request-links { display: grid; gap: 9px; margin-top: 24px; }
.request-links a { color: #5e7900; font-weight: 800; }

@media (max-width: 1020px) {
    .target-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .directory-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .workbon-flow-position ol { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .hero-workbon-chip { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .phone-showcase-grid { grid-template-columns: 1fr 360px; gap: 35px; }
}

@media (max-width: 820px) {
    .before-after-grid,.one-register-grid,.tool-teaser-grid,.growth-grid,.bridge-grid,.generator-layout,.calculator-layout,.demo-layout,.request-layout,.tool-lead,.phone-showcase-grid { grid-template-columns: 1fr; }
    .demo-copy { position: static; }
    .phone-mock { order: -1; }
    .workbon-flow-head { align-items: start; flex-direction: column; gap: 10px; }
    .bridge-actions { grid-column: auto; }
}

@media (max-width: 640px) {
    .hero-workbon-chip { position: static; margin-top: 12px; grid-template-columns: repeat(2,minmax(0,1fr)); border-radius: 8px; }
    .workbon-flow-position ol,.target-grid,.directory-grid,.result-grid,.generated-meta,.generated-two,.form-grid,.needs-fieldset { grid-template-columns: 1fr; }
    .form-wide { grid-column: auto; }
    .generator-form-card,.calculator-card,.calculator-result,.request-form-card,.generated-workbon { padding: 20px; }
    .demo-phone,.phone-mock { width: 100%; max-width: 365px; border-width: 5px; border-radius: 30px; }
    .demo-screen { min-height: 500px; }
    .lead-form-footer { align-items: stretch; flex-direction: column; }
    .lead-form-footer .button { width: 100%; }
    .growth-tags,.starter-tags { gap: 6px; }
}

@media print {
    body[data-page-type="generator"] .site-header,
    body[data-page-type="generator"] .hero,
    body[data-page-type="generator"] .answer-strip,
    body[data-page-type="generator"] .generator-form-card,
    body[data-page-type="generator"] .section-soft,
    body[data-page-type="generator"] .site-footer,
    body[data-page-type="generator"] .breadcrumbs { display: none !important; }
    body[data-page-type="generator"] .generator-section { padding: 0; }
    body[data-page-type="generator"] .generator-layout { display: block; }
    body[data-page-type="generator"] .generated-workbon { border: 0; box-shadow: none; max-width: none; }
}
