: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;
    line-height: 1.06;
}
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; }
}


/* Productiescan - 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;
    }
}

/* ========================================================================== 
   erpsysteem.solvcrm.nl v1.0.0
   Production-focused 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; }

.production-selector .audience-layout { display: grid; grid-template-columns: 300px 1fr; gap: 20px; }
.production-selector .audience-panel { border-radius: 8px; background: #292a28; box-shadow: none; }
.production-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; }
.production-type-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.production-type-grid button { min-height: 72px; padding: 12px 10px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 800; cursor: pointer; }
.production-type-grid button:hover, .production-type-grid button.is-selected { border-color: var(--green); background: var(--green-soft); color: #526300; }
.production-score-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; margin-bottom: 24px; }
.production-score-grid article { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 14px; border: 1px solid var(--line); background: #fff; }
.production-score-grid article.score-primary { background: var(--green-soft); border-color: #dce8ab; }
.production-score-grid span { font-size: .72rem; font-weight: 700; color: var(--muted); }
.production-score-grid strong { font-size: .9rem; }
.production-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); }
    .production-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, .production-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); }
    .production-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, .production-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; }
    .production-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 */
.production-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) {
    .production-score-grid-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .lead-form-compact .form-grid-compact, .production-score-grid-compact { grid-template-columns: 1fr; }
}

/* ERP authority additions */
.nav-dropdown-wide { grid-template-columns: repeat(2, minmax(180px, 1fr)); min-width: 470px; }
.pain-choice { display: grid; gap: 10px; min-height: 132px; padding: 22px; border: 1px solid var(--line); background: #fff; color: var(--ink); text-decoration: none; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.pain-choice:hover { transform: translateY(-2px); border-color: #cadb78; box-shadow: 0 12px 28px rgba(25, 30, 20, .08); }
.pain-choice strong { font-size: 1.05rem; }
.pain-choice span { margin-top: auto; color: var(--green-deep); font-size: .8rem; font-weight: 800; }
.systems-question { margin-top: 34px; display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px 34px; align-items: center; padding: 28px; background: #292a28; color: #fff; border-radius: 8px; }
.systems-question h3 { margin: 5px 0 0; font-size: clamp(1.45rem, 2.4vw, 2rem); }
.systems-options { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.systems-options button { border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.08); color: #fff; padding: 10px 14px; border-radius: 6px; font: inherit; font-weight: 800; cursor: pointer; }
.systems-options button:hover, .systems-options button.is-selected { background: var(--green); border-color: var(--green); color: #1f2412; }
.systems-question > p { grid-column: 1 / -1; margin: 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: #dfe4d9; }
.configurator-section { background: #f7f8f4; }
.configurator-shell { max-width: 1040px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.configurator-form { padding: 42px; }
.config-step h3 { margin: 6px 0 26px; font-size: clamp(1.65rem, 2.7vw, 2.3rem); }
.config-choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.config-choice-grid label { position: relative; cursor: pointer; }
.config-choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.config-choice-grid span { display: flex; min-height: 58px; align-items: center; padding: 12px 14px; border: 1px solid var(--line); background: #fff; font-weight: 800; font-size: .85rem; transition: border-color .15s ease, background .15s ease; }
.config-choice-grid input:checked + span { border-color: var(--green); background: var(--green-pale); box-shadow: inset 4px 0 0 var(--green); }
.config-note { display: grid; gap: 8px; margin-top: 20px; font-weight: 800; }
.config-note textarea { width: 100%; min-height: 90px; resize: vertical; }
.architecture-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0; }
.architecture-board article { min-height: 210px; padding: 22px; border: 1px solid var(--line); background: #fff; }
.architecture-board article:first-child { background: var(--green-pale); border-color: #dbe8a3; }
.architecture-board article > span { display: block; margin-bottom: 14px; color: var(--muted); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.architecture-board article > div { display: flex; flex-wrap: wrap; gap: 8px; }
.architecture-tag { display: inline-flex; padding: 8px 10px; background: #292a28; color: #fff; border-radius: 5px; font-size: .78rem; font-weight: 800; }
.source-strip { padding: 14px 0; border-top: 1px solid var(--line); background: #fafbf8; }
.source-strip .container { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; font-size: .74rem; color: var(--muted); }
.source-strip a { color: var(--green-deep); font-weight: 800; }
.request-links { display: grid; gap: 10px; margin-top: 24px; }
.request-links a { color: var(--green-deep); font-weight: 800; }

@media (max-width: 900px) {
    .nav-dropdown-wide { grid-template-columns: 1fr; min-width: 0; }
    .systems-question, .architecture-board { grid-template-columns: 1fr; }
    .systems-options { justify-content: flex-start; }
    .config-choice-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
    .configurator-form { padding: 26px 20px; }
    .config-choice-grid { grid-template-columns: 1fr; }
    .systems-question { padding: 22px; }
}
