:root {
  --primary: #8FAE4D;
  --primary-strong: #5F7B2A;
  --accent: #D6B85A;
  --dark: #28331F;
  --ink: #151A12;
  --soft: #F5F2EA;
  --surface: #F8F6EF;
  --white: #fff;
  --muted: #6C705E;
  --line: #DED8C8;
  --line-dark: rgba(255,255,255,.16);
  --danger-soft: #fff4e8;
  --danger: #9a5b13;
  --max: 1180px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 22px 60px rgba(40,51,31,.10);
  --shadow-soft: 0 12px 34px rgba(40,51,31,.07);
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; overflow-x: hidden; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--white); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.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: 18px; top: -80px; z-index: 1000; background: var(--dark); color: #fff; padding: 10px 16px; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 18px; }
.icon { width: 1.2em; height: 1.2em; flex: 0 0 auto; }

.preview-ribbon { background: #f5d978; color: #2e321e; min-height: 36px; display: grid; place-items: center; padding: 7px 20px; font-size: .82rem; font-weight: 750; text-align: center; }
.service-strip { color: rgba(255,255,255,.9); background: var(--dark); font-size: .78rem; letter-spacing: .01em; }
.service-strip-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.service-strip span { display: inline-flex; align-items: center; gap: 7px; }
.service-strip .icon { color: var(--primary); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(40,51,31,.12); backdrop-filter: blur(16px); }
.nav { height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand-logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 218px; }
.logo-symbol { width: 43px; height: 43px; flex: 0 0 auto; position: relative; }
.logo-symbol-sp { display: grid; place-items: center; border-radius: 11px; background: var(--primary); box-shadow: inset 0 0 0 1px rgba(255,255,255,.35); }
.logo-symbol-sp::after { content: ""; position: absolute; right: -4px; bottom: 7px; width: 9px; height: 19px; border-radius: 3px; background: var(--accent); }
.logo-symbol-sp span { color: var(--dark); font-weight: 900; letter-spacing: -.08em; transform: translateX(-1px); }
.logo-symbol-ai { border-radius: 12px; background: var(--dark); display: grid; grid-template-columns: repeat(2, 7px); grid-template-rows: repeat(2, 7px); place-content: center; gap: 7px; }
.logo-symbol-ai i { display: block; border-radius: 50%; background: var(--primary); box-shadow: 0 0 18px rgba(143,174,77,.5); }
.logo-symbol-ai i:nth-child(2), .logo-symbol-ai i:nth-child(3) { background: var(--accent); }
.logo-symbol-ai::before, .logo-symbol-ai::after { content: ""; position: absolute; inset: 20px 10px auto; height: 2px; background: rgba(255,255,255,.45); }
.logo-symbol-ai::after { inset: 10px 20px; width: 2px; height: auto; }
.logo-copy { display: flex; flex-direction: column; line-height: 1.1; }
.logo-copy strong { color: var(--dark); font-size: 1.02rem; letter-spacing: -.02em; }
.logo-copy small { margin-top: 4px; color: var(--muted); text-transform: uppercase; font-size: .66rem; font-weight: 750; letter-spacing: .11em; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--dark); text-decoration: none; font-size: .92rem; font-weight: 680; white-space: nowrap; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--primary-strong); }
.nav-links .nav-cross { padding-left: 24px; border-left: 1px solid var(--line); color: var(--primary-strong); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--soft); padding: 10px; cursor: pointer; }
.nav-toggle > span:not(.sr-only) { display: block; height: 2px; background: var(--dark); margin: 5px 0; transition: transform .2s, opacity .2s; }

/* Produktnavigation: Desktop-Dropdown und mobile Auswahlliste */
.nav-products { position: relative; }
.nav-products-toggle { display: inline-flex; align-items: center; gap: 7px; padding: 0; border: 0; color: var(--dark); background: transparent; font: inherit; font-size: .92rem; font-weight: 680; cursor: pointer; }
.nav-products-toggle:hover, .nav-products-toggle:focus-visible { color: var(--primary-strong); }
.nav-products-toggle span { display: inline-block; font-size: .82em; transition: transform .18s ease; }
.nav-products.is-open .nav-products-toggle span { transform: rotate(180deg); }
.nav-products-menu { position: absolute; top: calc(100% + 14px); left: -16px; z-index: 30; width: max-content; min-width: 278px; padding: 9px; display: grid; gap: 2px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 18px 42px rgba(18,59,78,.16); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-5px); transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.nav-products.is-open .nav-products-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.nav-products-menu a { display: block; padding: 10px 12px; border-radius: 9px; color: var(--dark); font-size: .84rem; font-weight: 700; text-decoration: none; }
.nav-products-menu a:hover, .nav-products-menu a:focus-visible { color: var(--dark); background: var(--soft); }

.eyebrow { color: var(--primary-strong); text-transform: uppercase; font-size: .77rem; font-weight: 850; letter-spacing: .14em; }
h1, h2, h3 { color: var(--dark); font-family: "Segoe UI", Arial, sans-serif; margin-top: 0; }
h1 { font-size: clamp(2.6rem, 5.7vw, 5.25rem); line-height: .98; letter-spacing: -.052em; margin-bottom: 26px; }
h2 { font-size: clamp(2rem, 3.5vw, 3.35rem); line-height: 1.08; letter-spacing: -.035em; margin-bottom: 18px; }
h3 { font-size: 1.25rem; line-height: 1.25; letter-spacing: -.018em; }
p { margin-top: 0; }
.lead { max-width: 760px; color: #4F5541; font-size: clamp(1.08rem, 1.4vw, 1.28rem); line-height: 1.65; }
.hero-note { max-width: 680px; color: var(--muted); font-weight: 600; }

.button { min-height: 50px; padding: 12px 20px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 999px; font-weight: 780; text-decoration: none; line-height: 1.2; transition: transform .18s, box-shadow .18s, background .18s, border-color .18s; }
.button:hover:not(.button-disabled), .button:focus-visible:not(.button-disabled) { transform: translateY(-2px); }
.button-primary { background: var(--dark); color: #fff; box-shadow: 0 12px 30px rgba(40,51,31,.18); }
.button-primary:hover:not(.button-disabled) { box-shadow: 0 16px 36px rgba(40,51,31,.25); }
.button-primary .icon { color: var(--primary); }
.button-ghost { color: var(--dark); background: rgba(255,255,255,.64); border-color: rgba(40,51,31,.22); }
.button-ghost:hover { background: #fff; border-color: var(--dark); }
.button-block { width: 100%; }
.button-disabled { background: #E3DDD0; color: #777768; border-color: #E3DDD0; box-shadow: none; cursor: not-allowed; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--dark); font-weight: 780; text-decoration: none; }
.text-link:hover { color: var(--primary-strong); }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }

.home-hero { overflow: hidden; background: radial-gradient(circle at 82% 18%, rgba(143,174,77,.23), transparent 28%), linear-gradient(135deg, var(--soft), #fff 63%); border-bottom: 1px solid var(--line); }
.brand-ki-praxispilot .home-hero { background: radial-gradient(circle at 84% 18%, rgba(143,174,77,.32), transparent 26%), linear-gradient(142deg, #F8F3E5, #fff 57%, #FFFDF7); }
.home-hero-grid { min-height: 0; padding: 82px 0 76px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; align-items: center; }
.home-hero-copy h1 { max-width: 1050px; margin-top: 14px; }
.trust-row { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 20px; color: var(--dark); font-size: .86rem; font-weight: 680; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row .icon { color: var(--primary-strong); }
.home-visual-wrap { min-width: 0; position: relative; }
.home-visual-label { position: absolute; z-index: 5; left: -18px; top: -20px; display: flex; flex-direction: column; padding: 13px 17px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.home-visual-label span { color: var(--muted); font-size: .72rem; text-transform: uppercase; font-weight: 780; letter-spacing: .1em; }
.home-visual-label strong { color: var(--dark); font-size: .95rem; }

.product-visual { position: relative; min-height: 480px; border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--dark), #202719); overflow: hidden; box-shadow: 0 35px 80px rgba(40,51,31,.24); isolation: isolate; }
.product-visual::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 30px 30px; mask-image: linear-gradient(to bottom, #000, transparent 90%); }
.product-visual.visual-compact { min-height: 440px; }
.visual-glow { position: absolute; width: 320px; height: 320px; border-radius: 50%; right: -80px; top: -100px; background: var(--primary); filter: blur(90px); opacity: .34; }
.document-stack { position: absolute; width: 215px; height: 286px; right: 38px; top: 82px; background: #f7f7f4; border-radius: 8px; transform: rotate(7deg); box-shadow: 0 15px 35px rgba(0,0,0,.22); padding: 24px 18px; }
.document-stack.doc-mid { right: 65px; top: 68px; transform: rotate(3deg); }
.document-stack.doc-back { right: 28px; top: 96px; transform: rotate(11deg); opacity: .8; }
.doc-topline { height: 9px; width: 72%; background: #2a3034; margin-bottom: 28px; }
.doc-lines i { display: block; height: 5px; background: #d4d4ce; margin-bottom: 12px; }
.doc-lines i:nth-child(2) { width: 75%; }
.cockpit-window { position: absolute; width: 78%; left: 7%; top: 19%; background: #fff; border-radius: 13px; box-shadow: 0 25px 60px rgba(0,0,0,.32); overflow: hidden; transform: rotate(-2deg); }
.cockpit-head { height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; background: #2a3034; color: #fff; font-weight: 820; letter-spacing: .05em; }
.cockpit-head::after { content: ""; width: 46px; height: 100%; margin-right: -20px; background: var(--accent); }
.cockpit-head small { margin-left: auto; margin-right: 16px; font-size: .68rem; color: rgba(255,255,255,.65); text-transform: uppercase; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; padding: 17px; background: #f4f5f3; }
.metric-row div { padding: 12px 9px; background: #fff; border: 1px solid #daddda; border-radius: 7px; }
.metric-row strong { display: block; color: #2a3034; font-size: 1.2rem; }
.metric-row span { color: #77766A; font-size: .58rem; }
.cockpit-table { padding: 8px 17px 15px; }
.cockpit-table i { display: block; height: 15px; border-bottom: 1px solid #d8dcda; position: relative; }
.cockpit-table i::before, .cockpit-table i::after { content: ""; position: absolute; left: 35%; height: 100%; border-left: 1px solid #e3e6e3; }
.cockpit-table i::after { left: 71%; }
.status-pills { display: flex; gap: 6px; padding: 0 17px 16px; }
.status-pills span { padding: 4px 8px; border-radius: 999px; background: #f0f1ef; color: #626256; font-size: .55rem; font-weight: 750; }
.status-pills span:nth-child(2) { background: #fff3b9; }
.status-pills span:nth-child(3) { background: #E8EFD4; }
.visual-file-chip { position: absolute; padding: 8px 11px; border-radius: 8px; color: #fff; font-weight: 850; font-size: .72rem; letter-spacing: .05em; box-shadow: 0 10px 25px rgba(0,0,0,.2); }
.chip-xlsx { left: 30px; bottom: 28px; background: #5F7B2A; }
.chip-docx { left: 98px; bottom: 28px; background: #6F8737; }

.audit-board { position: absolute; width: 84%; left: 8%; top: 13%; background: #f7f7f4; border-radius: 13px; box-shadow: 0 25px 60px rgba(0,0,0,.33); overflow: hidden; transform: perspective(1000px) rotateY(-2deg) rotateX(2deg); }
.audit-board-head { height: 58px; display: flex; align-items: center; padding: 0 20px; color: #fff; background: #2a3034; font-weight: 850; letter-spacing: .05em; }
.audit-board-head::after { content: ""; width: 54px; height: 100%; margin-left: auto; margin-right: -20px; background: var(--accent); }
.audit-board-head small { margin-left: 15px; color: rgba(255,255,255,.65); font-size: .66rem; text-transform: uppercase; }
.audit-metrics { padding: 14px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.audit-metrics div { padding: 12px; background: #fff; border: 1px solid #dfe2df; border-radius: 8px; }
.audit-metrics strong { display: block; font-size: 1.25rem; color: #2a3034; }
.audit-metrics span { color: #77766A; font-size: .57rem; }
.audit-content { display: grid; grid-template-columns: .9fr 1.1fr; gap: 13px; padding: 0 14px 18px; }
.audit-chart { height: 118px; padding: 16px 12px 0; display: flex; align-items: flex-end; gap: 7px; background: #fff; border: 1px solid #dfe2df; border-radius: 8px; }
.audit-chart i { flex: 1; height: 40%; background: var(--primary); border-radius: 3px 3px 0 0; }
.audit-chart i:nth-child(2) { height: 75%; }
.audit-chart i:nth-child(3) { height: 58%; background: var(--accent); }
.audit-chart i:nth-child(4) { height: 87%; }
.audit-chart i:nth-child(5) { height: 66%; }
.audit-list { padding: 11px 12px; background: #fff; border: 1px solid #dfe2df; border-radius: 8px; }
.audit-list span { min-height: 23px; display: flex; align-items: center; gap: 7px; color: #5C5E50; font-size: .61rem; border-bottom: 1px solid #edf0ed; }
.audit-list b { width: 8px; height: 8px; border-radius: 50%; background: #AFC36C; }
.audit-list span:nth-child(3) b { background: var(--accent); }
.audit-flow { position: absolute; left: 8%; right: 8%; bottom: 61px; display: flex; align-items: center; color: rgba(255,255,255,.82); font-size: .63rem; font-weight: 750; }
.audit-flow span { padding: 6px 8px; border: 1px solid rgba(255,255,255,.23); border-radius: 6px; background: rgba(255,255,255,.08); }
.audit-flow i { flex: 1; height: 1px; background: rgba(255,255,255,.3); }

.boundary-band { background: #fff; border-bottom: 1px solid var(--line); }
.boundary-grid { min-height: 112px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px; }
.boundary-icon { width: 46px; height: 46px; display: grid; place-items: center; color: var(--dark); background: var(--accent); border-radius: 50%; }
.boundary-grid strong { color: var(--dark); font-size: 1.02rem; }
.boundary-grid p { margin: 2px 0 0; color: var(--muted); }

.section { padding: 94px 0; }
.section-soft { background: var(--surface); }
.section-dark { color: rgba(255,255,255,.84); background: var(--dark); position: relative; overflow: hidden; }
.section-dark::before { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 50%; top: -260px; right: -130px; background: var(--primary); opacity: .10; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--primary); }
.section-heading { margin-bottom: 42px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .62fr); gap: 60px; align-items: end; }
.section-heading h2 { max-width: 760px; margin: 8px 0 0; }
.section-heading > p { margin-bottom: 3px; color: var(--muted); }
.section-heading.light > p { color: rgba(255,255,255,.68); }

.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.product-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card--clickable { cursor: pointer; }
.product-card--clickable:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }
.product-card-visual { display: block; padding: 22px 22px 0; background: var(--soft); text-decoration: none; }
.product-card-visual .product-visual { min-height: 330px; border-radius: 19px 19px 0 0; box-shadow: 0 20px 50px rgba(40,51,31,.2); }
.product-card-body { padding: 28px; }
.product-card-meta { display: flex; justify-content: space-between; gap: 15px; color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 760; }
.product-card h3 { margin: 12px 0; font-size: clamp(1.45rem, 2vw, 1.85rem); }
.product-card h3 a { text-decoration: none; }
.product-card p { color: #5B604C; }
.card-stats { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.card-stats span { padding: 6px 9px; background: var(--surface); border-radius: 7px; color: var(--muted); font-size: .73rem; }
.card-stats strong { color: var(--dark); }
.product-card-price { margin: 20px 0; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-card-price small { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.product-card-price strong { color: var(--dark); font-size: 1.08rem; }
.status-dot { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: .73rem; font-weight: 700; }
.status-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #B4B3A1; }
.status-ready::before { background: #7FAA4B; }
.status-pending::before { background: var(--accent); }

.purchase-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.purchase-steps article { min-height: 270px; position: relative; padding: 30px; background: rgba(255,255,255,.07); border: 1px solid var(--line-dark); border-radius: var(--radius); }
.purchase-steps article > span { position: absolute; right: 24px; top: 18px; color: rgba(255,255,255,.14); font-size: 3.1rem; font-weight: 900; }
.purchase-steps article > div > .icon { width: 34px; height: 34px; color: var(--primary); }
.purchase-steps h3 { margin: 40px 0 12px; font-size: 1.34rem; }
.purchase-steps p { color: rgba(255,255,255,.68); }

.category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.category-card { min-height: 250px; padding: 26px; position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.category-card::after { content: ""; position: absolute; width: 110px; height: 110px; right: -30px; bottom: -35px; border-radius: 50%; background: var(--soft); }
.category-number { color: var(--primary-strong); font-size: .73rem; font-weight: 850; letter-spacing: .1em; }
.category-card h3 { margin: 42px 0 12px; font-size: 1.45rem; }
.category-card p { color: var(--muted); }
.category-status { color: var(--dark); font-size: .72rem; font-weight: 780; text-transform: uppercase; letter-spacing: .07em; }
.split-cta { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(280px,.6fr); gap: 65px; align-items: center; }
.split-cta h2 { max-width: 780px; margin-top: 10px; }
.split-cta > div > p { max-width: 760px; color: var(--muted); }
.split-cta aside { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.split-cta aside > span { color: var(--primary-strong); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.split-cta aside h3 { margin: 8px 0 12px; font-size: 1.4rem; }
.split-cta aside p { color: var(--muted); }

.product-hero { overflow: hidden; padding: 35px 0 0; background: radial-gradient(circle at 84% 18%, rgba(143,174,77,.28), transparent 26%), linear-gradient(145deg, var(--soft), #fff 63%); }
.brand-ki-praxispilot .product-hero { background: radial-gradient(circle at 84% 18%, rgba(143,174,77,.35), transparent 25%), linear-gradient(145deg, #F8F3E5, #fff 62%); }
.breadcrumbs { margin-bottom: 42px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .8rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--primary-strong); }
.product-hero-grid { display: grid; grid-template-columns: minmax(0,1.03fr) minmax(440px,.97fr); gap: 56px; align-items: center; padding-bottom: 55px; }
.product-hero-copy h1 { margin: 14px 0 25px; font-size: clamp(2.7rem, 5vw, 4.85rem); }
.product-tags { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 8px; }
.product-tags span, .format-chips span { padding: 6px 10px; color: var(--dark); background: rgba(255,255,255,.72); border: 1px solid rgba(40,51,31,.15); border-radius: 999px; font-size: .72rem; font-weight: 750; }
.product-hero .product-visual { min-height: 500px; }
.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-bottom: 0; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; background: rgba(255,255,255,.92); }
.stat-strip div { min-height: 98px; padding: 18px 24px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.stat-strip div:last-child { border-right: 0; }
.stat-strip strong { color: var(--dark); font-size: 1.58rem; line-height: 1.1; }
.stat-strip span { color: var(--muted); font-size: .78rem; }
.publication-note { width: min(calc(100% - 40px), var(--max)); margin: 26px auto 0; padding: 16px 18px; display: flex; align-items: flex-start; gap: 12px; color: #6c5016; background: #fff8dc; border: 1px solid #eedb8a; border-radius: 12px; }
.publication-note .icon { margin-top: 2px; }
.publication-note strong { color: #574113; }
.publication-note p { margin: 2px 0 0; font-size: .88rem; }

.problem-result { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.problem-result article { min-height: 220px; padding: 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.problem-result article:nth-child(2) { background: var(--soft); }
.problem-result span { color: var(--primary-strong); font-size: .73rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 820; }
.problem-result p { margin: 20px 0 0; color: #555B46; font-size: 1.04rem; }
.benefit-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.benefit-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); }
.benefit-card > span { width: 45px; height: 45px; display: grid; place-items: center; color: var(--dark); background: var(--accent); border-radius: 12px; }
.benefit-card > span .icon { width: 23px; height: 23px; }
.benefit-card h3 { margin: 24px 0 9px; }
.benefit-card p { margin-bottom: 0; color: var(--muted); }

.package-list { display: grid; gap: 16px; }
.package-card { display: grid; grid-template-columns: 68px 1fr; gap: 22px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.package-icon { width: 56px; height: 56px; display: grid; place-items: center; color: var(--dark); background: var(--soft); border-radius: 14px; }
.package-icon .icon { width: 28px; height: 28px; }
.package-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.package-head h3 { margin-bottom: 0; font-size: 1.35rem; }
.package-head > span { padding: 5px 9px; color: var(--dark); background: #f3f4f2; border-radius: 6px; font-size: .72rem; font-weight: 800; }
.package-copy > p { margin: 9px 0 16px; color: var(--muted); }
.package-copy ul { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 15px; list-style: none; }
.package-copy li { display: inline-flex; align-items: center; gap: 6px; color: #595E4A; font-size: .82rem; }
.package-copy li .icon { width: 14px; height: 14px; color: var(--primary-strong); }

.workflow-grid { display: grid; grid-template-columns: minmax(290px,.68fr) minmax(0,1.32fr); gap: 74px; align-items: start; position: relative; }
.workflow-intro { position: sticky; top: 130px; }
.workflow-intro p { color: rgba(255,255,255,.68); }
.workflow-side-note { margin-top: 35px; padding: 18px; display: flex; align-items: flex-start; gap: 11px; color: rgba(255,255,255,.78); background: rgba(255,255,255,.07); border: 1px solid var(--line-dark); border-radius: 12px; font-size: .9rem; }
.workflow-side-note .icon { margin-top: 3px; color: var(--accent); }
.workflow-list { margin: 0; padding: 0; list-style: none; }
.workflow-list li { min-height: 126px; position: relative; display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 0 0 25px; }
.workflow-list li:not(:last-child)::before { content: ""; position: absolute; top: 46px; bottom: 0; left: 21px; width: 1px; background: rgba(255,255,255,.2); }
.workflow-list li > span { width: 44px; height: 44px; z-index: 2; display: grid; place-items: center; color: var(--dark); background: var(--accent); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.workflow-list li > div { padding: 3px 0 25px; border-bottom: 1px solid rgba(255,255,255,.13); }
.workflow-list h3 { margin-bottom: 7px; font-size: 1.22rem; }
.workflow-list p { color: rgba(255,255,255,.66); margin-bottom: 0; }

.quickstart-grid { display: grid; grid-template-columns: minmax(280px,.68fr) minmax(0,1.32fr); gap: 72px; align-items: start; }
.quickstart-grid > div > p { color: var(--muted); }
.quickstart-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.quickstart-list li { min-height: 72px; padding: 13px 16px; display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: center; border: 1px solid var(--line); border-radius: 12px; }
.quickstart-list span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--dark); background: var(--soft); border-radius: 9px; font-weight: 850; }
.quickstart-list p { margin: 0; color: #575C49; }

.fit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.fit-grid article { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.fit-grid article.fit-warning { background: var(--danger-soft); border-color: #EADDBF; }
.fit-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--dark); background: var(--soft); border-radius: 13px; }
.fit-warning .fit-icon { background: #F0E2C8; color: var(--danger); }
.fit-grid h2 { margin: 25px 0 18px; font-size: 1.48rem; }
.icon-list { margin: 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.icon-list li { display: flex; align-items: flex-start; gap: 9px; color: #626753; font-size: .9rem; }
.icon-list .icon { width: 17px; height: 17px; margin-top: 3px; color: var(--primary-strong); }
.fit-warning .icon-list .icon { color: var(--danger); }

.buy-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(340px,.65fr); gap: 65px; align-items: start; }
.buy-copy h2 { max-width: 700px; margin-top: 10px; }
.license-grid { margin-top: 36px; display: grid; gap: 13px; }
.license-grid article { padding: 19px; display: grid; grid-template-columns: 44px 1fr; gap: 15px; border: 1px solid var(--line); border-radius: 13px; }
.license-grid article > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--dark); background: var(--soft); border-radius: 10px; }
.license-grid h3 { margin: 2px 0 5px; font-size: 1.04rem; }
.license-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.purchase-panel { position: sticky; top: 120px; padding: 30px; background: var(--dark); border-radius: var(--radius-lg); box-shadow: var(--shadow); color: rgba(255,255,255,.78); }
.purchase-label { color: var(--primary); font-size: .73rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 850; }
.purchase-panel h3 { color: #fff; margin: 12px 0 22px; font-size: 1.45rem; }
.purchase-price { padding: 20px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.purchase-price small, .purchase-price span { display: block; }
.purchase-price small { color: rgba(255,255,255,.55); text-transform: uppercase; font-size: .67rem; letter-spacing: .09em; }
.purchase-price strong { display: block; margin: 5px 0; color: #fff; font-size: 1.85rem; line-height: 1.15; }
.purchase-price span { color: rgba(255,255,255,.53); font-size: .75rem; }
.format-chips { margin: 18px 0; display: flex; flex-wrap: wrap; gap: 6px; }
.format-chips span { color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
.purchase-facts { margin: 20px 0; display: grid; gap: 10px; }
.purchase-facts span { display: flex; align-items: flex-start; gap: 9px; font-size: .82rem; }
.purchase-facts .icon { margin-top: 2px; color: var(--primary); }
.purchase-panel .button { margin-top: 8px; background: var(--primary); color: var(--dark); }
.purchase-panel .button-disabled { background: #E5E0D4; color: #706F61; }
.purchase-panel > .status-dot { margin: 14px 0 0; color: rgba(255,255,255,.68); }
.external-disclosure { margin: 18px 0 0; color: rgba(255,255,255,.5); font-size: .74rem; line-height: 1.5; }

.faq-grid { display: grid; grid-template-columns: minmax(260px,.6fr) minmax(0,1.4fr); gap: 65px; align-items: start; }
.faq-grid > div:first-child > p { color: var(--muted); }
.faq-grid a { color: var(--primary-strong); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--dark); font-weight: 760; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 31px; height: 31px; display: grid; place-items: center; flex: 0 0 auto; color: var(--dark); background: #fff; border: 1px solid var(--line); border-radius: 50%; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > div { padding: 0 48px 20px 0; color: var(--muted); }

.final-cta { padding: 68px 0; color: #fff; background: linear-gradient(110deg, var(--dark), #242C1B); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta h2 { max-width: 760px; color: #fff; margin: 8px 0 10px; }
.final-cta p { margin-bottom: 0; color: rgba(255,255,255,.66); }
.final-cta .button { min-width: 245px; background: var(--primary); color: var(--dark); }

.site-footer { padding: 62px 0 26px; color: rgba(255,255,255,.72); background: #1C2416; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 55px; }
.footer-brand .brand-logo { margin-bottom: 20px; }
.footer-brand .logo-copy strong, .footer-brand .logo-copy small { color: #fff; }
.footer-brand p { max-width: 440px; font-size: .88rem; }
.footer-grid h3 { color: #fff; margin-bottom: 15px; font-size: .82rem; text-transform: uppercase; letter-spacing: .09em; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(.footer-brand) a { margin-bottom: 8px; color: rgba(255,255,255,.7); text-decoration: none; font-size: .86rem; }
.footer-grid a:hover { color: var(--primary); }
.footer-bottom { margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: .72rem; }
.empty-state { padding: 45px; border: 1px dashed #AAA995; border-radius: var(--radius); background: #fff; }

@media (max-width: 1040px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: .84rem; }
  .product-hero-grid { grid-template-columns: 1fr 420px; gap: 36px; }
  .product-visual { min-height: 440px; }
  .workflow-grid, .quickstart-grid { gap: 45px; }
}

@media (max-width: 900px) {
  .service-strip-inner { justify-content: center; }
  .service-strip-inner span:last-child { display: none; }
  .nav-toggle { display: block; }
  .nav-links { position: fixed; top: calc(var(--header-height) + 34px); left: 0; right: 0; bottom: 0; padding: 32px 20px; display: none; flex-direction: column; align-items: flex-start; gap: 0; background: #fff; overflow-y: auto; }
  .nav-open .nav-links { display: flex; }
  .nav-links a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-links .nav-cross { padding-left: 0; border-left: 0; }
  .nav-products { width: 100%; }
  .nav-products-toggle { width: 100%; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-products-menu { position: static; width: 100%; min-width: 0; margin: 0; padding: 6px 0 8px 12px; display: none; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav-products.is-open .nav-products-menu { display: grid; transform: none; }
  .nav-products-menu a { width: 100%; padding: 10px 12px; border-bottom: 0; font-size: .92rem; }
  .nav-open .nav-toggle > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle > span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .home-hero-grid, .product-hero-grid { grid-template-columns: 1fr; }
  .home-hero-grid { min-height: auto; padding: 65px 0; }
  .home-visual-wrap { max-width: 620px; width: 100%; margin: 40px auto 0; }
  .product-hero .product-visual { max-width: 650px; width: 100%; margin-inline: auto; }
  .product-grid, .problem-result, .benefit-grid, .purchase-steps, .category-grid, .fit-grid { grid-template-columns: 1fr; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; }
  .purchase-steps article { min-height: 220px; }
  .split-cta, .buy-grid, .faq-grid { grid-template-columns: 1fr; }
  .workflow-grid, .quickstart-grid { grid-template-columns: 1fr; }
  .workflow-intro { position: static; }
  .purchase-panel { position: static; }
  .footer-grid { grid-template-columns: 1.25fr .75fr .75fr; gap: 30px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .preview-ribbon { font-size: .7rem; }
  .brand-logo { min-width: 0; }
  .logo-copy strong { font-size: .94rem; }
  .logo-copy small { font-size: .58rem; }
  .logo-symbol { width: 39px; height: 39px; }
  h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  h2 { font-size: clamp(1.85rem, 8vw, 2.65rem); }
  .section { padding: 70px 0; }
  .home-hero-grid { padding: 52px 0; }
  .home-visual-label { left: 10px; top: -22px; }
  .product-visual, .product-visual.visual-compact, .product-hero .product-visual { min-height: 365px; }
  .cockpit-window { width: 84%; left: 5%; top: 22%; }
  .document-stack { width: 165px; height: 225px; }
  .metric-row div { padding: 8px 6px; }
  .metric-row strong { font-size: .95rem; }
  .audit-board { width: 90%; left: 5%; }
  .audit-content { grid-template-columns: 1fr 1fr; }
  .audit-flow { display: none; }
  .boundary-grid { padding: 18px 0; }
  .product-card-visual { padding: 14px 14px 0; }
  .product-card-visual .product-visual { min-height: 310px; }
  .product-card-body { padding: 23px; }
  .product-card-price { align-items: flex-start; flex-direction: column; }
  .section-heading { margin-bottom: 30px; }
  .product-hero { padding-top: 24px; }
  .breadcrumbs { margin-bottom: 30px; }
  .product-hero-grid { padding-bottom: 36px; }
  .product-hero-copy h1 { font-size: clamp(2.35rem, 12vw, 3.8rem); }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
  .stat-strip div:nth-child(2) { border-right: 0; }
  .stat-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .package-card { grid-template-columns: 1fr; }
  .package-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .quickstart-list li { grid-template-columns: 32px 1fr; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .final-cta .button { width: 100%; min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .preview-ribbon, .service-strip, .site-header, .site-footer, .hero-actions, .final-cta, .purchase-panel .button { display: none !important; }
  body { color: #000; }
  .section, .product-hero { padding: 28px 0; }
  .product-visual { box-shadow: none; }
  .purchase-panel { position: static; background: #fff; color: #000; border: 1px solid #aaa; box-shadow: none; }
  .purchase-panel h3, .purchase-price strong { color: #000; }
}


/* Customer-facing purchase information: concise by default, details on demand. */
.purchase-help-section { padding: 0 0 72px; background: #fff; }
.purchase-help { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.purchase-help summary { min-height: 74px; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--dark); font-weight: 820; cursor: pointer; list-style: none; }
.purchase-help summary::-webkit-details-marker { display: none; }
.purchase-help-plus { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; background: #fff; transition: transform .2s; }
.purchase-help[open] .purchase-help-plus { transform: rotate(45deg); }
.purchase-help-content { padding: 0 24px 22px; max-width: 850px; color: var(--muted); }
.purchase-help-content p:last-child { margin-bottom: 0; }
.inline-purchase-details { margin-top: 18px; border-top: 1px solid var(--line-dark); }
.inline-purchase-details summary { padding: 15px 0 5px; display: flex; justify-content: space-between; gap: 14px; color: rgba(255,255,255,.82); font-size: .82rem; font-weight: 760; cursor: pointer; list-style: none; }
.inline-purchase-details summary::-webkit-details-marker { display: none; }
.inline-purchase-details summary span { transition: transform .2s; }
.inline-purchase-details[open] summary span { transform: rotate(45deg); }
.inline-purchase-details > div { padding-top: 8px; color: rgba(255,255,255,.56); font-size: .76rem; line-height: 1.55; }
.inline-purchase-details p { margin-bottom: 9px; }
.inline-purchase-details p:last-child { margin-bottom: 0; }

/* v0.4 – Product page design system: Modular Compact (C) + selected Conversion Clear (A) */
.product-hero { padding: 32px 0 26px; background: var(--surface); }
.product-hero-card { display:grid; grid-template-columns:minmax(0,1fr) minmax(390px,.82fr); gap:42px; align-items:center; padding:38px; background:#fff; border:1px solid var(--line); border-radius:26px; box-shadow:0 15px 46px rgba(40,51,31,.08); }
.product-hero-copy h1 { margin:12px 0 20px; font-size:clamp(2.55rem,5vw,4.65rem); }
.folder-product-visual { position:relative; padding:17px 17px 62px; border-radius:22px; background:linear-gradient(145deg,var(--dark),color-mix(in srgb,var(--dark) 78%,#000)); box-shadow:0 30px 65px rgba(21,26,18,.24); }
.folder-product-visual:before { content:""; position:absolute; left:28px; right:28px; bottom:25px; height:50px; border-radius:0 0 16px 16px; background:color-mix(in srgb,var(--primary) 28%,var(--dark)); transform:skewX(-5deg); }
.folder-product-visual .product-visual { min-height:370px; box-shadow:none; border-radius:15px; z-index:2; }
.folder-product-visual .folder-tab { position:absolute; right:22px; top:-13px; z-index:4; padding:8px 12px; border-radius:9px 9px 0 0; background:var(--accent); color:var(--dark); font-size:.66rem; letter-spacing:.08em; font-weight:850; }
.folder-caption { position:absolute; left:34px; right:34px; bottom:18px; z-index:3; display:flex; justify-content:space-between; gap:18px; color:#fff; font-size:.77rem; }
.folder-caption span { color:rgba(255,255,255,.72); text-align:right; }
.stat-strip { margin-top:20px; border-radius:16px; overflow:hidden; box-shadow:0 8px 26px rgba(40,51,31,.05); }
.product-jumpbar { position:sticky; top:72px; z-index:15; padding:10px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:rgba(248,246,239,.94); backdrop-filter:blur(12px); }
.product-jumpbar .container { display:flex; gap:8px; overflow:auto; scrollbar-width:none; }
.product-jumpbar a { white-space:nowrap; padding:9px 13px; border:1px solid var(--line); border-radius:10px; background:#fff; color:var(--dark); font-size:.82rem; font-weight:760; text-decoration:none; }
.product-jumpbar a:hover { border-color:var(--primary); background:var(--soft); }
.product-content-shell { display:grid; grid-template-columns:225px minmax(0,1fr); gap:25px; padding-top:26px; padding-bottom:70px; }
.product-sidebar { position:sticky; top:138px; align-self:start; }
.product-sidebox { padding:18px; border:1px solid var(--line); border-radius:17px; background:#fff; box-shadow:var(--shadow-soft); }
.product-sidebox .eyebrow { margin:3px 9px 10px; }
.product-sidebox a { display:block; padding:10px 9px; border-radius:9px; color:var(--dark); font-size:.82rem; font-weight:720; text-decoration:none; }
.product-sidebox a:hover { background:var(--soft); }
.product-main { display:grid; gap:20px; min-width:0; }
.product-module { scroll-margin-top:145px; padding:32px; border:1px solid var(--line); border-radius:21px; background:#fff; box-shadow:0 8px 28px rgba(40,51,31,.045); }
.product-module-soft { background:var(--surface); }
.product-module .section-heading { margin-bottom:22px; }
.product-module .problem-result, .product-module .benefit-grid { gap:12px; }
.product-module .benefit-grid { grid-template-columns:repeat(2,minmax(0,1fr)); margin-top:12px; }
.product-module .benefit-card { border-radius:14px; box-shadow:none; }
.product-module .package-list { gap:10px; }
.product-module .package-card { padding:18px; border-radius:14px; box-shadow:none; }
.process-module { position:relative; overflow:hidden; background:linear-gradient(145deg,var(--dark),color-mix(in srgb,var(--dark) 82%,#000)); color:#fff; border:0; }
.process-module:after { content:""; position:absolute; width:300px; height:300px; right:-150px; top:-160px; border-radius:50%; background:color-mix(in srgb,var(--primary) 16%,transparent); }
.process-heading { position:relative; z-index:2; display:grid; grid-template-columns:1fr 280px; gap:25px; align-items:end; margin-bottom:25px; }
.process-heading h2 { color:#fff; margin:8px 0; }
.process-heading p { color:rgba(255,255,255,.72); }
.process-assurance { padding:14px; border:1px solid rgba(255,255,255,.16); border-radius:12px; background:rgba(255,255,255,.07); color:rgba(255,255,255,.82); font-size:.78rem; }
.process-assurance svg { width:18px; vertical-align:middle; color:var(--accent); }
.process-board { position:relative; z-index:2; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px; }
.process-phase { position:relative; padding:15px; border:1px solid rgba(255,255,255,.15); border-radius:15px; background:rgba(255,255,255,.075); }
.process-phase:not(:last-child):after { content:""; position:absolute; z-index:3; right:-12px; top:38px; width:13px; height:2px; background:var(--primary); box-shadow:7px 0 0 -1px var(--primary); }
.process-phase-head { display:flex; gap:10px; align-items:center; min-height:54px; }
.phase-symbol { flex:0 0 35px; width:35px; height:35px; display:grid; place-items:center; border-radius:11px; background:var(--primary); color:var(--dark); }
.phase-symbol svg { width:19px; }
.process-phase small { color:rgba(255,255,255,.57); text-transform:uppercase; letter-spacing:.08em; font-size:.58rem; }
.process-phase h3 { margin:1px 0 0; color:#fff; font-size:.96rem; line-height:1.15; }
.phase-tasks { display:grid; gap:7px; margin-top:13px; }
.phase-task { padding:10px; border-radius:10px; background:rgba(0,0,0,.17); }
.phase-task strong { display:block; font-size:.76rem; line-height:1.2; }
.phase-task span { display:block; margin-top:4px; color:rgba(255,255,255,.62); font-size:.67rem; line-height:1.35; }
.phase-result { margin-top:12px; padding-top:10px; border-top:1px solid rgba(255,255,255,.12); color:var(--accent); font-size:.65rem; font-weight:760; }
.process-rail { display:none; }
.product-module .quickstart-list { grid-template-columns:1fr; }
.product-module .quickstart-list li { grid-template-columns:38px 1fr; padding:13px; border:1px solid var(--line); border-radius:11px; }
.product-module .quickstart-list li > span { width:32px; height:32px; display:grid; place-items:center; border-radius:9px; background:var(--soft); color:var(--primary-strong); }
.product-module .quickstart-list svg { width:17px; }
.product-module .fit-grid { gap:10px; }
.product-module .fit-grid article { border-radius:14px; box-shadow:none; }
.product-module .purchase-panel { position:sticky; top:142px; align-self:start; }
.mobile-purchase-bar { display:none; }
.brand-ki-praxispilot .product-hero { background:#F8F3E5; }
.brand-ki-praxispilot .product-hero-card { border-color:#E4DDC9; }
.brand-ki-praxispilot .folder-product-visual { background:linear-gradient(145deg,#263218,#3E5024); box-shadow:0 30px 70px rgba(30,41,21,.3); }
.brand-ki-praxispilot .folder-product-visual:before { background:#5F7B2A; }
.brand-ki-praxispilot .product-jumpbar { background:rgba(248,243,229,.95); }
.brand-ki-praxispilot .process-module { background:linear-gradient(145deg,#1E2915,#384A20); }
.brand-ki-praxispilot .phase-symbol { background:#C6D879; color:#1E2915; }
.brand-ki-praxispilot .phase-result { color:#DCE7AE; }
@media (max-width:1100px){
  .product-content-shell{grid-template-columns:1fr}.product-sidebar{display:none}.product-hero-card{grid-template-columns:1fr 390px;gap:28px}.process-board{grid-template-columns:repeat(2,1fr)}.process-phase:nth-child(2):after{display:none}
}
@media (max-width:760px){
  .product-hero{padding-top:18px}.product-hero-card{grid-template-columns:1fr;padding:22px;border-radius:19px}.folder-product-visual{padding:12px 12px 54px}.folder-product-visual .product-visual{min-height:330px}.folder-caption{left:24px;right:24px}.folder-caption span{display:none}.product-jumpbar{top:64px}.product-content-shell{width:min(100% - 20px,1160px);padding-top:12px;padding-bottom:90px}.product-main{gap:12px}.product-module{padding:22px;border-radius:17px}.product-module .benefit-grid{grid-template-columns:1fr}.process-heading{grid-template-columns:1fr}.process-board{grid-template-columns:1fr}.process-phase:not(:last-child):after{right:auto;left:31px;top:auto;bottom:-12px;width:2px;height:13px;box-shadow:0 7px 0 -1px var(--primary)}.product-module .fit-grid{grid-template-columns:1fr}.mobile-purchase-bar{position:fixed;left:0;right:0;bottom:0;z-index:60;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:9px 14px;background:#fff;border-top:1px solid var(--line);box-shadow:0 -10px 30px rgba(40,51,31,.12)}.mobile-purchase-bar div{display:grid}.mobile-purchase-bar small{font-size:.65rem;color:var(--muted)}.mobile-purchase-bar strong{font-size:.92rem}.mobile-purchase-bar .button{min-height:42px;padding:9px 14px}.site-footer{padding-bottom:75px}
}

/* Approved compact product-entry baseline v1.0 */
.product-hero.compact-entry {
  padding: 28px 0 0;
  background:
    radial-gradient(circle at 86% 12%, color-mix(in srgb, var(--primary) 24%, transparent), transparent 27%),
    linear-gradient(145deg, var(--soft), #fff 66%);
}
.brand-ki-praxispilot .product-hero.compact-entry {
  background:
    radial-gradient(circle at 88% 10%, rgba(143,174,77,.30), transparent 27%),
    linear-gradient(145deg, #F8F3E5, #fff 65%);
}
.compact-entry .breadcrumbs { margin-bottom: 18px; }
.compact-hero-card {
  display: grid;
  grid-template-columns: minmax(0,1fr) 355px;
  gap: 34px;
  align-items: stretch;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 13px 40px rgba(40,51,31,.075);
}
.compact-hero-copy { align-self: center; min-width: 0; }
.compact-hero-copy h1 {
  max-width: 760px;
  margin: 11px 0 15px;
  font-size: clamp(2.45rem, 4.7vw, 4.35rem);
  line-height: 1.01;
}
.compact-lead {
  max-width: 700px;
  margin: 0;
  color: #59604A;
  font-size: clamp(1.02rem, 1.35vw, 1.17rem);
  line-height: 1.55;
}
.hero-keypoints {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.hero-keypoints li {
  position: relative;
  min-height: 52px;
  padding: 11px 11px 11px 36px;
  color: var(--dark);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: .78rem;
  font-weight: 720;
  line-height: 1.35;
}
.hero-keypoints li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 11px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  color: var(--dark);
  background: var(--primary);
  border-radius: 50%;
  font-size: .66rem;
  font-weight: 900;
}
.compact-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
}
.compact-facts span {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 7px 10px;
  color: var(--dark);
  background: var(--soft);
  border-radius: 9px;
  font-size: .75rem;
  font-weight: 680;
}
.compact-facts strong { font-size: .91rem; }
.compact-hero-copy .hero-actions { margin-top: 22px; }
.hero-purchase-summary {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #fff;
  background: linear-gradient(150deg, var(--dark), color-mix(in srgb,var(--dark) 80%,#000));
  border-radius: 17px;
  box-shadow: 0 22px 48px rgba(21,26,18,.20);
}
.hero-purchase-summary::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -85px;
  top: -85px;
  border-radius: 50%;
  background: color-mix(in srgb,var(--primary) 24%,transparent);
}
.hero-mini-folder {
  position: relative;
  z-index: 1;
  min-height: 116px;
  margin-bottom: 19px;
  padding: 25px 20px 17px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  background: linear-gradient(145deg, color-mix(in srgb,var(--dark) 82%,#fff), var(--dark));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 14px 28px rgba(0,0,0,.18);
}
.brand-ki-praxispilot .hero-mini-folder {
  background: linear-gradient(145deg,#3A4C21,#5F7B2A 72%,#78963E);
}
.hero-mini-folder::before {
  content: "";
  position: absolute;
  width: 42%;
  height: 17px;
  left: 0;
  top: 0;
  border-radius: 0 0 8px 0;
  background: var(--accent);
}
.brand-ki-praxispilot .hero-mini-folder::before { background: var(--primary); }
.hero-mini-folder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 19px 19px;
  pointer-events: none;
}
.hero-mini-folder small,
.hero-mini-folder strong,
.hero-mini-folder span { position: relative; z-index: 2; display: block; }
.hero-mini-folder small { color: rgba(255,255,255,.63); font-size: .62rem; letter-spacing: .10em; font-weight: 800; }
.hero-mini-folder strong { max-width: 245px; margin-top: 6px; color: #fff; font-size: 1.03rem; line-height: 1.15; }
.hero-mini-folder span { margin-top: 12px; color: var(--primary); font-size: .68rem; font-weight: 760; }
.brand-ki-praxispilot .hero-mini-folder span { color: #EDF3CF; }
.hero-summary-label { position: relative; z-index: 1; color: var(--primary); font-size: .67rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 850; }
.hero-summary-price { position: relative; z-index: 1; margin: 5px 0 7px; color: #fff; font-size: 1.65rem; line-height: 1.12; font-weight: 850; letter-spacing: -.025em; }
.hero-summary-copy { position: relative; z-index: 1; margin: 0 0 16px; color: rgba(255,255,255,.70); font-size: .78rem; line-height: 1.48; }
.hero-purchase-summary .button { position: relative; z-index: 1; width: 100%; min-height: 46px; margin-top: auto; background: var(--accent); color: var(--dark); box-shadow: none; }
.brand-ki-praxispilot .hero-purchase-summary .button { background: var(--primary); color: #29341E; }
.hero-purchase-summary .button:hover { box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.hero-summary-fine { position: relative; z-index: 1; margin-top: 10px; color: rgba(255,255,255,.55); font-size: .66rem; line-height: 1.42; }
.compact-entry + .product-jumpbar { margin-top: 22px; }

@media (max-width: 1040px) {
  .compact-hero-card { grid-template-columns: minmax(0,1fr) 315px; gap: 24px; padding: 28px; }
  .hero-keypoints { grid-template-columns: 1fr; }
  .hero-keypoints li { min-height: 0; }
}
@media (max-width: 820px) {
  .compact-hero-card { grid-template-columns: 1fr; }
  .hero-keypoints { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .hero-purchase-summary { display: grid; grid-template-columns: 155px 1fr; column-gap: 18px; align-items: center; }
  .hero-mini-folder { grid-row: 1 / span 5; margin: 0; min-height: 150px; }
  .page-ai-act-betreiber .hero-render-card { grid-row: 1 / span 5; margin: 0; min-height: 150px; }
  .hero-purchase-summary .button { margin-top: 5px; }
  .hero-summary-fine { margin-top: 5px; }
}
@media (max-width: 680px) {
  .product-hero.compact-entry { padding-top: 17px; }
  .compact-entry .breadcrumbs { margin-bottom: 12px; }
  .compact-hero-card { padding: 22px; border-radius: 18px; }
  .compact-hero-copy h1 { font-size: clamp(2.15rem,11vw,3rem); margin-bottom: 13px; }
  .compact-lead { font-size: .98rem; }
  .hero-keypoints { grid-template-columns: 1fr; margin-top: 19px; }
  .compact-facts { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .compact-facts span { align-items: center; }
  .compact-hero-copy .hero-actions { display: grid; grid-template-columns: 1fr; }
  .compact-hero-copy .hero-actions .button { width: 100%; }
  .hero-purchase-summary { display: flex; padding: 18px; }
  .hero-mini-folder { min-height: 108px; margin-bottom: 17px; }
  .page-ai-act-betreiber .hero-render-card { min-height: 108px; margin-bottom: 17px; }
  .hero-summary-price { font-size: 1.45rem; }
  .compact-entry + .product-jumpbar { margin-top: 15px; }
}

/* Controlled per-product accent: layout and brand base remain fixed. */
.product-page { --product-accent: var(--accent); }
.product-page .hero-mini-folder::before { background: var(--product-accent); }
.page-ai-act-betreiber .hero-render-card {
  position:relative; z-index:1; min-height:214px; margin-bottom:18px; overflow:hidden;
  border:1px solid rgba(255,255,255,.18); border-radius:13px; background:#fff;
  box-shadow:0 14px 28px rgba(0,0,0,.18);
}
.page-ai-act-betreiber .hero-render-card::after {
  content:""; position:absolute; left:0; right:0; bottom:0; height:4px;
  background:var(--product-accent);
}
.page-ai-act-betreiber .hero-render-card img {
  display:block; width:100%; height:100%; aspect-ratio:4/3; object-fit:contain;
}
.product-page .phase-result { color: color-mix(in srgb, var(--product-accent) 42%, white); }
.product-page .benefit-card > span { background: color-mix(in srgb, var(--product-accent) 16%, white); color: color-mix(in srgb, var(--product-accent) 88%, #151A12); }
.product-page .process-assurance svg { color: var(--product-accent); }
.product-page .folder-product-visual .folder-tab { background: var(--product-accent); }


/* Live product visuals and launch state */
.home-product-image-card {
  display:block;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 80px rgba(40,51,31,.16);
}
.home-product-image-card img,
.product-card-image img,
.showcase-grid img {
  display:block;
  width:100%;
  height:auto;
}
.product-card-image {
  padding: 14px;
  background: var(--soft);
}
.product-card-image img {
  border-radius: 16px;
  border: 1px solid #DED8C8;
  box-shadow: 0 18px 36px rgba(40,51,31,.14);
}
.product-card-links {
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: .88rem;
}
.status-dot.status-available {
  color: #4F651F;
  background: #ECF2D8;
}
.product-media-showcase {
  padding: 26px 0 12px;
}
.showcase-grid {
  display:grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 22px;
  align-items:start;
}
.showcase-grid figure {
  margin:0;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}
.showcase-grid figcaption {
  padding: 12px 16px 15px;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.45;
}
.showcase-main img {
  background: #F5F2EA;
}
.showcase-side {
  display:grid;
  gap:22px;
}
@media (max-width: 1040px) {
  .showcase-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .home-visual-label { left: 8px; top: -12px; }
  .product-card-links { display:grid; grid-template-columns: 1fr; }
  .product-card-links .button,
  .product-card-links .text-link { width:100%; justify-content:center; }
}


/* KI-Einsatzrichtlinie PraxisKit – controlled product accent and authentic previews */
.product-page-ki-policy { --product-accent: #4A5134; }
.product-page-ki-policy .hero-render-card {
  position: relative; z-index: 1; margin-bottom: 18px; overflow: hidden;
  border-radius: 13px; border: 1px solid rgba(255,255,255,.18);
  background: #fff; box-shadow: 0 14px 28px rgba(0,0,0,.18);
}
.product-page-ki-policy .hero-render-card::after {
  content:""; position:absolute; left:0; right:0; bottom:0; height:4px;
  background: var(--product-accent);
}
.product-page-ki-policy .hero-render-card { min-height: 214px; }
.product-page-ki-policy .hero-render-card img { display:block; width:100%; height:100%; aspect-ratio:740/500; object-fit:cover; transform:scale(1.46); transform-origin:center; }
.product-page-ki-policy .hero-purchase-summary { box-shadow: 0 22px 48px rgba(74,81,52,.24); }
.product-page-ki-policy .hero-purchase-summary .button { background: var(--product-accent); color:#fff; }
.product-page-ki-policy .hero-keypoints li::before { background: color-mix(in srgb, var(--product-accent) 24%, white); color:var(--product-accent); }
.product-page-ki-policy .compact-facts span { border:1px solid color-mix(in srgb, var(--product-accent) 22%, var(--line)); }
.product-page-ki-policy .process-phase::before { background:var(--product-accent); }
.product-page-ki-policy .process-phase .phase-symbol { color:var(--product-accent); background:color-mix(in srgb,var(--product-accent) 13%,#fff); }
.product-page-ki-policy .process-phase .phase-result { border-left-color:var(--product-accent); }
.product-preview-section { margin-top:32px; padding-top:28px; border-top:1px solid var(--line); }
.product-preview-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; margin-top:14px; }
.product-preview-card { margin:0; overflow:hidden; background:#fff; border:1px solid var(--line); border-radius:14px; box-shadow:var(--shadow-soft); }
.product-preview-card img { width:100%; aspect-ratio:3/2; object-fit:cover; background:#fff; }
.product-preview-card figcaption { padding:12px 14px 14px; color:var(--dark); font-size:.82rem; font-weight:760; line-height:1.35; }
.product-card-policy { --product-accent:#4A5134; }
.product-card-policy .product-card-visual { background: color-mix(in srgb, var(--product-accent) 10%, var(--soft)); }
.product-card-policy .product-card-price { border-color: color-mix(in srgb, var(--product-accent) 18%, var(--line)); }
.status-dot.status-preparing { color:#5B604C; background:#EBE8DD; }
.status-dot.status-preparing::before { background:#4A5134; }
.product-card .button-disabled { pointer-events:none; }
.regular-price-note { display:block; margin-top:3px; color:var(--muted); font-size:.72rem; font-weight:650; }
@media (max-width:860px) { .product-preview-grid { grid-template-columns:1fr; } }


/* v0.6.3 – scalable product grid and AI-Act Betreiber product accent */
.product-grid { grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); }
.product-card-operator { --product-accent:#434B31; }
.product-card-operator .product-card-visual { background: color-mix(in srgb, var(--product-accent) 10%, var(--soft)); }
.product-card-operator .product-card-price { border-color: color-mix(in srgb, var(--product-accent) 18%, var(--line)); }
.product-card-operator .product-card-meta span:first-child { color: var(--product-accent); }
@media (max-width:680px) { .product-grid { grid-template-columns:1fr; } }

/* Product Discovery & SEO v1.1 */
.seo-intent-section { padding: 36px 0 4px; }
.seo-intent-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-soft); }
.seo-intent-card h2 { margin: 8px 0 12px; font-size: clamp(1.55rem, 2.7vw, 2.35rem); }
.seo-intent-card > p { max-width: 980px; margin-bottom: 22px; color: #5C614D; }
.seo-facts-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; margin-top: 18px; }
.seo-fact { padding: 13px 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
.seo-fact small { display:block; color:var(--muted); font-size:.64rem; text-transform:uppercase; letter-spacing:.08em; font-weight:800; }
.seo-fact strong { display:block; margin-top:3px; color:var(--dark); font-size:.83rem; line-height:1.35; }
.citation-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin-top:18px; }
.citation-card { padding:17px; border:1px solid var(--line); border-radius:13px; background:color-mix(in srgb,var(--soft) 58%,white); }
.citation-card h3 { margin:0 0 7px; font-size:.98rem; }
.citation-card p { margin:0; color:var(--muted); font-size:.83rem; line-height:1.55; }
.cross-sell-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.cross-sell-card { display:block; padding:20px; border:1px solid color-mix(in srgb,var(--primary) 32%,var(--line)); border-radius:14px; background:linear-gradient(145deg,#fff,color-mix(in srgb,var(--soft) 55%,#fff)); box-shadow:0 8px 20px rgba(40,51,31,.045); }
.cross-sell-card--link { color:inherit; text-decoration:none; transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.cross-sell-card--link:hover { transform:translateY(-3px); border-color:var(--primary); box-shadow:0 14px 28px rgba(40,51,31,.12); }
.cross-sell-card--link:focus-visible { outline:3px solid var(--primary); outline-offset:3px; }
.cross-sell-card h3 { margin:0 0 8px; font-size:1.04rem; }
.cross-sell-card p { margin:0 0 12px; color:var(--muted); font-size:.86rem; }
.product-module#weitere-praxiskits .section-heading { grid-template-columns:minmax(0,1fr); margin-bottom:24px; }
.product-module#weitere-praxiskits .section-heading h2 { max-width:30ch; }
.release-note { margin-top:14px; padding:12px 14px; border-left:4px solid var(--primary); background:var(--soft); border-radius:8px; color:#575C49; font-size:.8rem; }
.product-card [data-product-status="available"] { color:#526B23; }
.product-card [data-product-status="preparation"] { color:#805b12; }
.product-card img { height:auto; }
@media (max-width: 860px) { .seo-facts-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } .citation-grid,.cross-sell-grid { grid-template-columns:1fr; } }
@media (max-width: 520px) { .seo-intent-card { padding:21px; border-radius:16px; } .seo-facts-grid { grid-template-columns:1fr; } }

/* Brand refine v3 - targeted adjustments based on review */
:root {
  --kpp-blue: #176F9F;
  --kpp-blue-hover: #1F8FC8;
  --kpp-blue-deep: #0E2F43;
  --kpp-footer: #082A3A;
  --kpp-olive: #8FAE4D;
  --kpp-olive-dark: #5F7B2A;
  --kpp-olive-soft: #E7EFD4;
  --kpp-cream: #F8F6EF;
  --kpp-line: #D8DEC8;
}

/* shared brand treatment */
.logo-symbol-ai {
  background: var(--kpp-blue-deep);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.logo-symbol-ai i {
  background: var(--kpp-blue);
  box-shadow: 0 0 18px rgba(23,111,159,.42);
}
.logo-symbol-ai i:nth-child(2),
.logo-symbol-ai i:nth-child(3) {
  background: #D6B85A;
}
.logo-copy strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0B1017, #0E2F43);
  color: #fff;
  line-height: 1;
}
.logo-copy .brand-ki { color: var(--kpp-blue-hover); }
.logo-copy .brand-pilot { color: #fff; }
.logo-copy small { margin-top: 6px; }

.nav-brand-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 10px 16px !important;
  border-radius: 999px;
  background: linear-gradient(135deg, #0B1017, #0E2F43);
  color: #fff !important;
  font-weight: 800 !important;
}
.nav-brand-link .brand-ki { color: var(--kpp-blue-hover); }
.nav-brand-link .brand-pilot { color: #fff; }
.nav-brand-link:hover,
.nav-brand-link:focus-visible { color: #fff !important; background: linear-gradient(135deg, #10202d, #154967); }

/* blue checkout buttons */
a.button.button-primary[data-event="checkout_click"],
.product-card-links .button.button-primary,
.mobile-purchase-bar .button.button-primary[data-event="checkout_click"] {
  background: var(--kpp-blue);
  color: #fff;
  box-shadow: 0 12px 30px rgba(23,111,159,.24);
}
a.button.button-primary[data-event="checkout_click"]:hover,
a.button.button-primary[data-event="checkout_click"]:focus-visible,
.product-card-links .button.button-primary:hover,
.product-card-links .button.button-primary:focus-visible,
.mobile-purchase-bar .button.button-primary[data-event="checkout_click"]:hover {
  background: var(--kpp-blue-hover);
  box-shadow: 0 16px 36px rgba(23,111,159,.30);
}

/* green data chips */
.card-stats span,
.compact-facts span {
  background: var(--kpp-olive-dark);
  color: #fff;
  border-color: transparent;
}
.card-stats strong,
.compact-facts strong { color: #fff; }

/* stronger footer like version 2 */
.site-footer {
  background: var(--kpp-footer) !important;
  color: rgba(255,255,255,.76) !important;
}
.footer-brand .logo-copy small,
.footer-brand p,
.footer-grid > div:not(.footer-brand) a,
.footer-bottom { color: rgba(255,255,255,.74) !important; }
.footer-grid h3,
.footer-brand .logo-copy strong { color: #fff !important; }
.footer-grid a:hover,
.footer-grid a:focus-visible { color: var(--kpp-blue-hover) !important; }
.footer-bottom { border-top-color: rgba(255,255,255,.10) !important; }

.final-cta {
  background: linear-gradient(110deg, #0E2F43, #123B4E) !important;
}
.final-cta h2,
.final-cta p { color: #fff !important; }
.final-cta .eyebrow { color: var(--kpp-blue-hover) !important; }

/* home overview adjustments */
body.page-home .split-cta {
  align-items: stretch;
  gap: 28px;
}
body.page-home .split-cta > div:first-child {
  padding: 34px 38px;
  background: linear-gradient(135deg, rgba(143,174,77,.12), rgba(23,111,159,.08));
  border: 1px solid var(--kpp-line);
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(18,40,50,.06);
}
body.page-home .split-cta > div:first-child h2 { max-width: 780px; }
body.page-home .split-cta aside {
  padding: 32px 32px 30px;
  background: #fff;
  border: 1px solid var(--kpp-line);
  border-radius: 24px;
}
body.page-home .split-cta aside span {
  color: var(--kpp-olive-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  font-size: .74rem;
}
body.page-home .split-cta > div:first-child .button.button-primary {
  background: var(--kpp-blue-deep);
}
body.page-home .split-cta > div:first-child .button.button-primary:hover {
  background: var(--kpp-blue);
}

/* KI-Inventar page targeted section colors */
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) .seo-intent-card,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) .product-sidebox,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #kaufen,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) .seo-fact,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) .citation-card,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #nutzen .benefit-card,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #paketinhalt .package-card,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #kaufen .license-grid article,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #faq .faq-list summary span {
  border-color: var(--kpp-line) !important;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) .seo-intent-card,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #kaufen,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #faq { background: #fff !important; }
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) .seo-intent-card .eyebrow,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #nutzen .eyebrow,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #paketinhalt .eyebrow,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits .eyebrow,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #kaufen .eyebrow,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #faq .eyebrow,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) .product-sidebox .eyebrow {
  color: var(--kpp-blue) !important;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) .seo-intent-card h2,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #nutzen h2,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #paketinhalt h2,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits h2,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #kaufen h2,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #faq h2,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) .product-sidebox a,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) .seo-fact strong,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) .citation-card h3,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #nutzen .benefit-card h3,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #paketinhalt .package-copy h3 { color: var(--kpp-blue-deep) !important; }
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) .seo-fact,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #paketinhalt .package-card,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #kaufen .license-grid article,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #faq .faq-list summary span { background: var(--kpp-cream) !important; }
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) .citation-card { background: var(--kpp-olive-soft) !important; }
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #nutzen .problem-result article:first-child { background: var(--kpp-cream) !important; }
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #nutzen .problem-result article:nth-child(2) { background: var(--kpp-olive-soft) !important; }
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #nutzen .benefit-card { background: #fff !important; }
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #nutzen .benefit-card > span,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #paketinhalt .package-icon,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #kaufen .license-grid article > span {
  background: #D6B85A !important;
  color: var(--kpp-blue-deep) !important;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #paketinhalt .package-head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff !important;
  border: 1px solid var(--kpp-line);
  color: var(--kpp-blue-deep) !important;
  font-weight: 700;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) .product-sidebox {
  background: #fff !important;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) .product-sidebox a:hover { color: var(--kpp-blue) !important; }

/* keep process module from version 1; do not recolor to blue */
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess { background: transparent !important; }

/* clean, fully clickable next-step cards */
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits .cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits .cross-sell-card {
  display: block;
  padding: 28px 24px;
  border: 1px solid var(--kpp-line);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--kpp-olive-soft), #F5F2EA);
  color: var(--kpp-blue-deep) !important;
  text-decoration: none !important;
  box-shadow: 0 10px 26px rgba(18,40,50,.05);
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits .cross-sell-card:hover,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits .cross-sell-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(18,40,50,.08);
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits .cross-sell-card *,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits .cross-sell-card h3,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits .cross-sell-card p,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits .cross-sell-card span {
  color: inherit !important;
  text-decoration: none !important;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits .cross-sell-card h3 {
  margin-bottom: 10px;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits .cross-sell-card p {
  margin-bottom: 16px;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits .cross-sell-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

@media (max-width: 900px) {
  :is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #weitere-praxiskits .cross-sell-grid { grid-template-columns: 1fr; }
}


/* v4 refinement */
/* Dark header area, logo text without pill background */
.site-header {
  background: linear-gradient(135deg, #091018, #0E2F43) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  backdrop-filter: blur(14px);
}
.site-header .nav { min-height: 78px; }
.site-header .brand-logo,
.site-header .logo-copy,
.site-header .logo-copy small,
.site-header .nav-links a,
.site-header .nav-toggle > span:not(.sr-only) {
  color: rgba(255,255,255,.92) !important;
}
.site-header .logo-copy strong {
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.site-header .logo-copy .brand-ki,
.site-header .nav-brand-link .brand-ki { color: var(--kpp-blue-hover) !important; }
.site-header .logo-copy .brand-pilot,
.site-header .nav-brand-link .brand-pilot { color: #fff !important; }
.site-header .logo-copy small {
  color: rgba(255,255,255,.88) !important;
}
.site-header .nav-links a:not(.nav-cross):hover,
.site-header .nav-links a:not(.nav-cross):focus-visible {
  color: #fff !important;
}
.site-header .nav-cross {
  color: #9EBC56 !important;
  border-left-color: rgba(255,255,255,.18) !important;
}
.site-header .nav-cross:hover,
.site-header .nav-cross:focus-visible {
  color: #C6D879 !important;
}
.site-header .nav-brand-link {
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: inline-flex !important;
  gap: 6px;
}

/* Home support decision section */
body.page-home .split-cta {
  grid-template-columns: minmax(0,1.5fr) minmax(250px,.48fr) !important;
  gap: 28px !important;
  align-items: start !important;
}
body.page-home .split-cta > div:first-child .button.button-primary {
  background: var(--kpp-blue) !important;
}
body.page-home .split-cta > div:first-child .button.button-primary:hover,
body.page-home .split-cta > div:first-child .button.button-primary:focus-visible {
  background: var(--kpp-blue-hover) !important;
}
body.page-home .split-cta aside {
  width: 100% !important;
  max-width: 340px !important;
  align-self: start !important;
  padding: 26px 24px 24px !important;
}
body.page-home .split-cta aside h3 { font-size: 1.25rem !important; }

/* Restore process module exactly as dark highlighted module */
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess.process-module {
  background: linear-gradient(145deg, #1E2915, #384A20) !important;
  color: #fff !important;
  border: 0 !important;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess.process-module:after {
  content: "" !important;
  position: absolute !important;
  width: 300px !important;
  height: 300px !important;
  right: -150px !important;
  top: -160px !important;
  border-radius: 50% !important;
  background: rgba(143,174,77,.16) !important;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess .eyebrow {
  color: #C6D879 !important;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess h2,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess h3,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess strong {
  color: #fff !important;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess p,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess .phase-task span,
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess .process-assurance {
  color: rgba(255,255,255,.74) !important;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess .process-assurance {
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess .process-assurance svg { color: #D6B85A !important; }
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess .process-phase {
  background: rgba(255,255,255,.075) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess .process-phase:not(:last-child):after {
  background: #8FAE4D !important;
  box-shadow: 7px 0 0 -1px #8FAE4D !important;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess .phase-symbol {
  background: #C6D879 !important;
  color: #1E2915 !important;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess .phase-task {
  background: rgba(0,0,0,.17) !important;
}
:is(body.page-ki-inventar, body.page-ki-einsatzrichtlinie, body.page-ai-act-betreiber) #prozess .phase-result {
  color: #DCE7AE !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
}

@media (max-width: 760px) {
  body.page-home .split-cta {
    grid-template-columns: 1fr !important;
  }
  body.page-home .split-cta aside {
    max-width: none !important;
  }
}


/* v5 fixes */
/* Keep the navigation header visible while the service strip scrolls away. */
.service-strip {
  position: static !important;
  z-index: auto !important;
}
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 70 !important;
}

/* Remove pill background from KI PraxisPilot text everywhere */
.logo-copy strong,
.nav-brand-link {
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.logo-copy .brand-ki,
.nav-brand-link .brand-ki { color: var(--kpp-blue-hover) !important; }
.logo-copy .brand-pilot,
.nav-brand-link .brand-pilot { color: inherit !important; }
.site-header .logo-copy .brand-pilot,
.site-header .nav-brand-link .brand-pilot,
.site-footer .logo-copy .brand-pilot { color: #fff !important; }
.site-footer .logo-copy .brand-ki { color: var(--kpp-blue-hover) !important; }

/* Product card visuals larger and cleaner */
.product-card-image {
  padding: 6px !important;
  background: #F8F6EF !important;
}
.product-card-image img {
  width: 100% !important;
  height: auto !important;
  border-radius: 16px !important;
  border: 1px solid #DED8C8 !important;
  box-shadow: 0 14px 28px rgba(40,51,31,.10) !important;
}

/* Ensure right support card does not create excessive whitespace */
body.page-home .split-cta aside {
  max-width: 320px !important;
  padding: 24px 22px 22px !important;
}


/* KI PraxisPilot Shop V2 – scalable shop architecture.
   Extends the existing live brand palette without changing product landing-page design. */
body.shop-v2,
body.shop-shell-v2 { background:#fff; }

body.shop-v2 .nav-links,
body.shop-shell-v2 .nav-links { gap:18px; }
body.shop-v2 .nav-links > a:not(.nav-cross),
body.shop-shell-v2 .nav-links > a:not(.nav-cross) { font-weight:700; }
.nav-products-menu-wide { min-width:330px; padding:9px; }
.nav-products-menu-wide a { display:grid; gap:2px; padding:12px 13px; border-radius:10px; }
.nav-products-menu-wide a strong { color:var(--ink); font-size:.83rem; }
.nav-products-menu-wide a small { color:var(--muted); font-size:.68rem; font-weight:600; }
.nav-products-menu-wide a { white-space:normal; }
.nav-products-menu-wide a small { line-height:1.35; }
.nav-products-menu-wide a:hover,
.nav-products-menu-wide a:focus-visible { background:var(--kpp-cream); }
.nav-search-link { display:inline-flex !important; align-items:center; gap:7px; }
.nav-search-link .icon { width:18px; height:18px; }
body.shop-v2 .nav-cross,
body.shop-shell-v2 .nav-cross {
  padding:10px 14px;
  border:1px solid rgba(14,47,67,.18);
  border-radius:999px;
  color:var(--kpp-blue-deep);
  background:#fff;
  font-weight:800;
}
body.shop-v2 .nav-cross:hover,
body.shop-shell-v2 .nav-cross:hover {
  color:#fff;
  border-color:var(--kpp-blue-deep);
  background:var(--kpp-blue-deep);
}

.shop-hero { overflow:hidden; background:
  radial-gradient(circle at 84% 12%,rgba(214,184,90,.20),transparent 27%),
  radial-gradient(circle at 70% 88%,rgba(143,174,77,.15),transparent 31%),
  linear-gradient(135deg,#fbfaf5 0%,#f8f6ef 56%,#fff 100%);
}
.shop-hero-grid { min-height:620px; display:grid; grid-template-columns:minmax(0,1.06fr) minmax(430px,.94fr); gap:68px; align-items:center; padding:74px 0 76px; }
.shop-hero .home-hero-copy { max-width:760px; }
.shop-hero .home-hero-copy h1 { max-width:820px; margin:12px 0 21px; font-size:clamp(3rem,5.3vw,5.2rem); line-height:.98; letter-spacing:-.045em; }
.shop-hero .lead { max-width:740px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:11px; margin-top:30px; }
.shop-search { min-height:54px; display:flex; align-items:center; gap:10px; padding:6px 7px 6px 15px; background:#fff; border:1px solid var(--line); border-radius:14px; box-shadow:0 13px 32px rgba(40,51,31,.07); }
.shop-search .icon { width:20px; height:20px; flex:0 0 auto; color:var(--kpp-olive-dark); }
.shop-search input { width:100%; min-width:0; border:0; outline:0; color:var(--ink); background:transparent; font:inherit; font-size:.87rem; }
.shop-search input::placeholder { color:#858879; }
.shop-search button { min-height:42px; padding:9px 17px; border:0; border-radius:10px; color:#fff; background:var(--kpp-olive-dark); font:inherit; font-size:.78rem; font-weight:800; cursor:pointer; }
.shop-search-hero { max-width:720px; margin-top:25px; }

.kpp-hero-products { position:relative; height:470px; }
.kpp-hero-products a { position:absolute; display:block; width:65%; overflow:hidden; background:#fff; border:1px solid rgba(40,51,31,.12); border-radius:18px; box-shadow:0 28px 60px rgba(40,51,31,.15); transition:transform .2s ease,box-shadow .2s ease; }
.kpp-hero-products a:hover,.kpp-hero-products a:focus-visible { z-index:5; transform:translateY(-7px) rotate(0deg) !important; box-shadow:0 34px 74px rgba(40,51,31,.21); outline:none; }
.kpp-hero-products img { width:100%; display:block; aspect-ratio:4 / 3; object-fit:cover; }
.kpp-hero-products a:nth-child(1) { left:0; top:72px; transform:rotate(-5deg); z-index:1; }
.kpp-hero-products a:nth-child(2) { right:0; top:0; transform:rotate(4deg); z-index:2; }
.kpp-hero-products a:nth-child(3) { right:7%; bottom:0; transform:rotate(-1deg); z-index:3; }

.shop-quicknav { border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff; }
.shop-quicknav-inner { min-height:58px; display:flex; align-items:center; justify-content:center; gap:36px; }
.shop-quicknav a { color:var(--dark); font-size:.78rem; font-weight:800; text-decoration:none; }
.shop-quicknav a::after { content:"→"; margin-left:8px; color:var(--accent); }

.section-heading { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(280px,.7fr); gap:56px; align-items:end; margin-bottom:38px; }
.section-heading h2 { margin:8px 0 0; }
.section-heading > p { margin:0; color:var(--muted); }
.shop-topic-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.shop-topic-card { min-height:315px; position:relative; padding:0 28px 28px; display:flex; flex-direction:column; overflow:hidden; text-decoration:none; background:linear-gradient(180deg,var(--dark) 0 7px,#fff 7px 100%); border:1px solid var(--line); border-radius:20px; box-shadow:var(--shadow-soft); transition:transform .18s,box-shadow .18s,border-color .18s; }
.shop-topic-card::before { content:""; position:absolute; width:190px; height:190px; right:-95px; top:24px; border-radius:50%; background:radial-gradient(circle,rgba(214,184,90,.19),rgba(214,184,90,0) 68%); }
.shop-topic-card:hover,.shop-topic-card:focus-visible { transform:translateY(-4px); box-shadow:var(--shadow); border-color:#cfd6b9; outline:none; }
.topic-icon { width:54px; height:54px; margin-top:30px; display:grid; place-items:center; color:#fff; background:var(--dark); border-radius:14px; box-shadow:0 10px 24px rgba(40,51,31,.17); }
.topic-icon .icon { width:25px; height:25px; color:var(--accent); }
.shop-topic-card small { margin-top:23px; color:var(--kpp-olive-dark); font-size:.66rem; font-weight:850; letter-spacing:.11em; text-transform:uppercase; }
.shop-topic-card h3 { margin:7px 0 10px; font-size:1.45rem; }
.shop-topic-card p { max-width:94%; color:var(--muted); }
.topic-link { margin-top:auto; display:inline-flex; align-items:center; gap:8px; color:var(--dark); font-size:.84rem; font-weight:820; z-index:1; }
.topic-link .icon { width:16px; height:16px; color:var(--kpp-olive-dark); transition:transform .18s ease; }
a:hover > .topic-link .icon, a:focus-visible > .topic-link .icon { transform:translateX(4px); }
.section-after-link { margin-top:34px; display:flex; justify-content:center; }

.job-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:15px; }
.job-card { min-height:260px; position:relative; padding:25px; display:flex; flex-direction:column; overflow:hidden; text-decoration:none; background:linear-gradient(145deg,#fff,var(--surface)); border:1px solid var(--line); border-radius:16px; transition:transform .18s,border-color .18s,box-shadow .18s; }
.job-card::after { content:""; position:absolute; left:0; bottom:0; width:100%; height:4px; background:linear-gradient(90deg,var(--kpp-olive-dark),var(--accent)); transform:scaleX(.28); transform-origin:left; transition:transform .18s ease; }
.job-card:hover,.job-card:focus-visible { transform:translateY(-3px); border-color:#cad2b6; box-shadow:var(--shadow-soft); outline:none; }
.job-card:hover::after,.job-card:focus-visible::after { transform:scaleX(1); }
.job-icon,.task-icon { width:46px; height:46px; display:grid; place-items:center; color:var(--dark); background:var(--kpp-olive-soft); border:1px solid #d7dec6; border-radius:12px; }
.job-icon .icon,.task-icon .icon { width:23px; height:23px; color:var(--dark); }
.job-card h3 { margin:28px 0 10px; font-size:1.2rem; }
.job-card p { margin-bottom:18px; color:var(--muted); font-size:.88rem; }
.job-link { margin-top:auto; display:inline-flex; align-items:center; gap:7px; color:var(--dark); font-size:.78rem; font-weight:820; }
.job-link .icon { width:15px; height:15px; color:var(--kpp-olive-dark); }

.catalog-home-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.catalog-format-tags { display:flex; flex-wrap:wrap; gap:6px; margin:15px 0 2px; }
.catalog-format-tags span { padding:5px 8px; color:#435125; background:var(--kpp-olive-soft); border:1px solid #d7dec6; border-radius:999px; font-size:.68rem; font-weight:760; }
.catalog-product-card .card-stats,.catalog-product-card .status-dot,.catalog-product-card .product-card-links { display:none; }
.catalog-product-card .product-card-price { margin-top:15px; }
.catalog-product-card.product-card--clickable { transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease; }
.catalog-product-card.product-card--clickable:hover { transform:translateY(-4px); box-shadow:var(--shadow); border-color:#cbd3b5; }
.catalog-card-arrow { width:32px; height:32px; display:grid; place-items:center; flex:0 0 auto; color:var(--dark); background:var(--kpp-olive-soft); border:1px solid #d7dec6; border-radius:50%; transition:background .18s ease,color .18s ease,transform .18s ease; }
.catalog-card-arrow .icon { width:14px; height:14px; }
.catalog-product-card:hover .catalog-card-arrow { color:#fff; background:var(--dark); transform:translateX(2px); }

.shop-value-section { padding:92px 0; background:linear-gradient(118deg,var(--dark),var(--kpp-blue-deep)); }
.value-intro { max-width:850px; }
.value-intro h2 { color:#fff; }
.value-intro p { max-width:770px; color:rgba(255,255,255,.72); }
.value-intro .eyebrow { color:var(--accent); }
.process-flow { margin:48px 0 40px; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:42px; }
.process-flow article { position:relative; min-height:190px; padding:70px 4px 10px 0; background:transparent; border:0; border-radius:0; }
.process-flow article:not(:last-child)::after { content:"→"; position:absolute; right:-31px; top:52px; color:var(--accent); font-size:2.05rem; font-weight:300; line-height:1; }
.process-flow .flow-icon { position:absolute; left:0; top:0; width:50px; height:50px; display:grid; place-items:center; color:var(--dark); background:var(--accent); border-radius:14px; box-shadow:0 12px 28px rgba(0,0,0,.16); }
.process-flow .flow-icon .icon { width:24px; height:24px; }
.process-flow h3 { margin:0 0 10px; color:#fff; }
.process-flow p { margin:0; color:rgba(255,255,255,.70); font-size:.88rem; }
.process-flow-light article { color:var(--ink); }
.process-flow-light .flow-icon { color:var(--dark); background:var(--kpp-olive-soft); border:1px solid #d7dec6; box-shadow:none; }
.process-flow-light article:not(:last-child)::after { color:var(--kpp-olive-dark); }
.process-flow-light h3 { color:var(--dark); }
.process-flow-light p { color:var(--muted); }
.purchase-steps.process-flow { grid-template-columns:repeat(3,minmax(0,1fr)); }
.button-light { background:#fff; color:var(--dark); box-shadow:none; }

.shop-feature-grid { display:grid; grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr); gap:60px; align-items:start; }
.shop-feature-grid > div > p { max-width:780px; color:var(--muted); }
.feature-chips { margin-top:25px; display:flex; flex-wrap:wrap; gap:8px; }
.feature-chips span { padding:8px 11px; border:1px solid var(--line); border-radius:999px; color:#4d552f; background:#fff; font-size:.76rem; font-weight:750; }
.shop-info-card,.support-link-card { display:block; padding:28px; color:var(--ink); text-decoration:none; background:linear-gradient(145deg,var(--surface),#fff); border:1px solid var(--line); border-radius:17px; transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease; }
.shop-info-card:hover,.shop-info-card:focus-visible,.support-link-card:hover,.support-link-card:focus-visible { transform:translateY(-3px); box-shadow:var(--shadow-soft); border-color:#cad2b6; outline:none; }
.shop-info-card > span:first-child,.support-link-card > span:first-child { color:var(--kpp-olive-dark); text-transform:uppercase; letter-spacing:.1em; font-size:.68rem; font-weight:850; }
.shop-info-card h3,.support-link-card h3 { margin:9px 0 10px; font-size:1.35rem; }
.shop-info-card p,.support-link-card p { color:var(--muted); }
.shop-split-cta { display:grid; grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr); gap:24px; align-items:stretch; }
.shop-split-cta > div { padding:34px 36px; background:#fff; border:1px solid var(--line); border-radius:20px; }
.shop-split-cta > div p { color:var(--muted); }

.shop-page-hero { position:relative; padding:42px 0 62px; background:radial-gradient(circle at 85% 15%,rgba(214,184,90,.21),transparent 26%),linear-gradient(135deg,var(--soft),#fff 68%); border-bottom:1px solid var(--line); }
.shop-page-hero::after { content:""; position:absolute; left:0; bottom:0; width:min(34%,430px); height:4px; background:linear-gradient(90deg,var(--kpp-olive-dark),var(--accent)); }
.shop-page-hero .breadcrumbs { margin-bottom:34px; }
.shop-page-hero h1 { max-width:980px; margin:12px 0 20px; font-size:clamp(2.55rem,5vw,4.6rem); }
.shop-page-hero .lead { max-width:890px; }
.breadcrumbs { display:flex; flex-wrap:wrap; gap:8px; align-items:center; color:var(--muted); font-size:.74rem; }
.breadcrumbs a { color:var(--dark); text-decoration:none; font-weight:750; }

.catalog-section { padding:54px 0 92px; }
.catalog-toolbar { display:flex; align-items:center; justify-content:space-between; gap:24px; margin-bottom:28px; }
.catalog-search { flex:1; max-width:760px; box-shadow:none; }
.catalog-search button { width:40px; min-height:40px; padding:0; color:var(--muted); background:var(--surface); border:1px solid var(--line); font-size:1.3rem; }
.catalog-count { color:var(--muted); font-size:.83rem; white-space:nowrap; }
.catalog-count strong { color:var(--dark); }
.filter-block { display:grid; grid-template-columns:110px 1fr; gap:16px; align-items:start; margin:12px 0; }
.filter-label { min-height:38px; display:flex; align-items:center; gap:7px; color:var(--dark); font-size:.76rem; font-weight:800; }
.filter-pills { display:flex; flex-wrap:wrap; gap:7px; }
.filter-pills button { min-height:38px; padding:8px 13px; border:1px solid var(--line); border-radius:999px; color:#545947; background:#fff; font-size:.75rem; font-weight:720; cursor:pointer; }
.filter-pills button:hover { border-color:#c7cfb2; }
.filter-pills button.is-active { color:#fff; background:var(--dark); border-color:var(--dark); }
.catalog-grid { margin-top:28px; }
.catalog-product-card[hidden] { display:none !important; }
.catalog-empty { margin-top:40px; padding:50px 30px; text-align:center; border:1px dashed #c7c8bd; border-radius:18px; background:var(--surface); }
.catalog-empty h2 { font-size:1.7rem; }
.catalog-empty p { color:var(--muted); }

.topic-detail-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.topic-detail-card { position:relative; min-height:350px; padding:30px; overflow:hidden; background:#fff; border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow-soft); }
a.topic-detail-card { display:flex; flex-direction:column; text-decoration:none; transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease; }
a.topic-detail-card:hover,a.topic-detail-card:focus-visible { transform:translateY(-4px); box-shadow:var(--shadow); border-color:#c9d0b6; outline:none; }
.topic-detail-accent { position:absolute; inset:0 auto 0 0; width:6px; background:linear-gradient(180deg,var(--kpp-olive-dark),var(--accent)); }
.topic-detail-head { display:flex; align-items:flex-start; gap:15px; }
.topic-detail-head > span { width:48px; height:48px; display:grid; place-items:center; flex:0 0 auto; color:var(--dark); background:var(--kpp-olive-soft); border-radius:12px; }
.topic-detail-head > span .icon { color:var(--dark); }
.topic-detail-head small { color:var(--kpp-olive-dark); text-transform:uppercase; letter-spacing:.09em; font-size:.63rem; font-weight:850; }
.topic-detail-head h2 { margin:5px 0 0; font-size:1.35rem; }
.topic-detail-card > p { margin:24px 0 18px; color:var(--muted); }
.topic-product-pill { align-self:flex-start; margin-bottom:22px; padding:7px 10px; color:#505735; background:var(--kpp-olive-soft); border:1px solid #d7dec6; border-radius:9px; font-size:.73rem; font-weight:760; }
.topic-detail-card > .topic-link { margin-top:auto; }

.task-detail-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.task-detail-card { min-height:275px; position:relative; padding:28px; display:grid; grid-template-columns:54px 1fr; gap:20px; overflow:hidden; text-decoration:none; background:linear-gradient(145deg,#fff,var(--surface)); border:1px solid var(--line); border-radius:18px; transition:transform .18s,box-shadow .18s,border-color .18s; }
.task-detail-card::after { content:""; position:absolute; right:-45px; bottom:-45px; width:120px; height:120px; border-radius:50%; background:rgba(214,184,90,.13); }
.task-detail-card:hover,.task-detail-card:focus-visible { transform:translateY(-3px); box-shadow:var(--shadow-soft); border-color:#cbd2b8; outline:none; }
.task-detail-card h2 { margin:4px 0 10px; font-size:1.45rem; }
.task-detail-card p { color:var(--muted); }
.task-detail-card strong { display:inline-flex; align-items:center; gap:7px; color:var(--dark); font-size:.82rem; }
.task-detail-card strong .icon { width:15px; height:15px; color:var(--kpp-olive-dark); }

.kit-definition { display:grid; grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr); gap:64px; align-items:center; }
.kit-definition > div:first-child > p { color:var(--muted); }
.kit-definition-card { position:relative; overflow:hidden; padding:32px; color:#fff; background:linear-gradient(145deg,var(--dark),var(--kpp-blue-deep)); border-radius:20px; box-shadow:var(--shadow); }
.kit-definition-card::after { content:""; position:absolute; right:-70px; top:-70px; width:190px; height:190px; border-radius:50%; border:28px solid rgba(214,184,90,.13); }
.kit-definition-card > span { width:52px; height:52px; display:grid; place-items:center; color:var(--dark); background:var(--accent); border-radius:14px; }
.kit-definition-card > strong { display:block; margin:28px 0 8px; font-size:1.45rem; }
.kit-definition-card p { margin:0; color:rgba(255,255,255,.74); }
.principle-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.principle-grid article { position:relative; padding:28px 26px 26px 30px; background:#fff; border:1px solid var(--line); border-radius:16px; }
.principle-grid article::before { content:""; position:absolute; left:0; top:24px; bottom:24px; width:4px; border-radius:4px; background:var(--accent); }
.principle-grid article > span { width:44px; height:44px; display:grid; place-items:center; color:var(--dark); background:var(--kpp-olive-soft); border-radius:12px; }
.principle-grid article > span .icon { width:22px; height:22px; }
.principle-grid h3 { margin:24px 0 8px; }
.principle-grid p { margin:0; color:var(--muted); font-size:.88rem; }
.shop-faq-grid { display:grid; grid-template-columns:minmax(260px,.55fr) minmax(0,1.45fr); gap:56px; }
.footer-grid-v2 { grid-template-columns:1.4fr repeat(3,1fr); }
.footer-brand-name { margin-bottom:16px; color:#fff; font-size:1.3rem; font-weight:850; }
.footer-brand-name .brand-ki { color:var(--kpp-blue-hover); }

/* Compact catalog: scalable for a larger product portfolio. */
.catalog-page .catalog-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.catalog-page .catalog-product-card { min-height:0; border-radius:15px; box-shadow:0 8px 24px rgba(40,51,31,.075); overflow:hidden; }
.catalog-page .catalog-product-card:hover,.catalog-page .catalog-product-card:focus-visible { transform:translateY(-2px); box-shadow:0 15px 34px rgba(40,51,31,.13); }
.catalog-page .catalog-product-card .product-card-visual { padding:0; background:#f2f3e9; }
.catalog-page .catalog-product-card .product-card-image { border-radius:14px 14px 0 0; box-shadow:none; background:#f2f3e9; }
.catalog-page .catalog-product-card .product-card-image img { width:100%; aspect-ratio:16 / 10; min-height:0; max-height:none; object-fit:cover; }
.catalog-page .catalog-product-card .product-card-body { padding:16px 16px 15px; }
.catalog-page .catalog-product-card .product-card-meta { display:block; margin:0 0 7px; color:var(--kpp-olive-dark); font-size:.62rem; line-height:1.35; letter-spacing:.085em; text-transform:uppercase; }
.catalog-page .catalog-product-card h3 { margin:0 0 7px; font-size:1.04rem; line-height:1.24; }
.catalog-page .catalog-product-card p { display:-webkit-box; margin:0; overflow:hidden; color:#5e6255; font-size:.79rem; line-height:1.48; -webkit-box-orient:vertical; -webkit-line-clamp:2; }
.catalog-page .catalog-format-tags { margin:11px 0 0; gap:5px; }
.catalog-page .catalog-format-tags span { padding:4px 7px; border-radius:7px; font-size:.61rem; }
.catalog-page .catalog-product-card .product-card-price { margin:13px 0 0; padding:12px 0 0; border-top:1px solid var(--line); border-bottom:0; align-items:end; }
.catalog-page .catalog-product-card .product-card-price small { font-size:.58rem; }
.catalog-page .catalog-product-card .product-card-price strong { font-size:.96rem; }

@media (max-width:1220px) {
  .catalog-page .catalog-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (max-width:1100px) {
  .shop-hero-grid { grid-template-columns:1fr; gap:30px; }
  .kpp-hero-products { height:390px; max-width:650px; margin:0 auto; width:100%; }
}
@media (max-width:1000px) {
  .shop-topic-grid,.topic-detail-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .job-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .process-flow { grid-template-columns:repeat(2,minmax(0,1fr)); row-gap:40px; }
  .process-flow article:nth-child(2)::after { display:none; }
  .purchase-steps.process-flow { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .purchase-steps.process-flow article:nth-child(2)::after { display:block; }
  .footer-grid-v2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .shop-split-cta { grid-template-columns:1fr; }
}
@media (max-width:900px) {
  body.shop-v2 .nav-products,body.shop-shell-v2 .nav-products { width:100%; border-bottom:1px solid var(--line); }
  body.shop-v2 .nav-products-toggle,body.shop-shell-v2 .nav-products-toggle { width:100%; padding:16px 0; justify-content:space-between; font-size:1rem; }
  body.shop-v2 .nav-products-menu,body.shop-shell-v2 .nav-products-menu { position:static; width:100%; min-width:0; margin:0 0 12px; padding:0 0 4px 14px; border:0; border-left:2px solid var(--kpp-olive-soft); border-radius:0; box-shadow:none; display:none; opacity:1; visibility:visible; pointer-events:auto; transform:none; }
  body.shop-v2 .nav-products.is-open .nav-products-menu,body.shop-shell-v2 .nav-products.is-open .nav-products-menu { display:grid; }
  body.shop-v2 .nav-products-menu a,body.shop-shell-v2 .nav-products-menu a { padding:10px 12px; border:0; font-size:.87rem; }
  .nav-search-text { display:inline; }
  .shop-feature-grid,.kit-definition,.shop-faq-grid { grid-template-columns:1fr; gap:34px; }
}
@media (max-width:880px) {
  .catalog-page .catalog-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:760px) {
  .shop-hero-grid { min-height:0; padding:60px 0 58px; }
  .shop-hero .home-hero-copy h1 { font-size:clamp(2.5rem,12vw,3.55rem); }
  .kpp-hero-products { height:310px; }
  .shop-search-hero { display:grid; grid-template-columns:24px minmax(0,1fr); padding:12px 13px; }
  .shop-search-hero button { grid-column:1 / -1; width:100%; }
  .shop-quicknav-inner { gap:17px; justify-content:flex-start; overflow-x:auto; padding-top:4px; padding-bottom:4px; }
  .section-heading { grid-template-columns:1fr; gap:14px; }
  .shop-topic-grid,.topic-detail-grid,.task-detail-grid,.principle-grid { grid-template-columns:1fr; }
  .job-grid { grid-template-columns:1fr; }
  .process-flow,.purchase-steps.process-flow { grid-template-columns:1fr; gap:20px; }
  .process-flow article { min-height:0; padding:68px 0 32px; }
  .process-flow article:not(:last-child)::after,.process-flow article:nth-child(2)::after { display:block; content:"↓"; right:auto; left:15px; top:auto; bottom:-2px; font-size:1.7rem; }
  .catalog-toolbar { align-items:stretch; flex-direction:column; }
  .catalog-search { width:100%; max-width:none; }
  .filter-block { grid-template-columns:1fr; gap:7px; }
  .catalog-count { align-self:flex-start; }
  .footer-grid-v2 { grid-template-columns:1fr; }
}
@media (max-width:620px) {
  .catalog-page .catalog-grid { grid-template-columns:1fr; gap:10px; margin-top:22px; }
  .catalog-page .catalog-product-card { display:grid !important; grid-template-columns:104px minmax(0,1fr); align-items:stretch; overflow:hidden; border-radius:13px; }
  .catalog-page .catalog-product-card .product-card-visual { min-width:0; height:100%; }
  .catalog-page .catalog-product-card .product-card-image { height:100%; min-height:136px; border-radius:0; }
  .catalog-page .catalog-product-card .product-card-image img { width:100%; height:100%; min-height:136px; aspect-ratio:auto; object-fit:cover; }
  .catalog-page .catalog-product-card .product-card-body { min-width:0; padding:12px 12px 11px; }
  .catalog-page .catalog-product-card .product-card-meta { margin-bottom:5px; font-size:.56rem; }
  .catalog-page .catalog-product-card h3 { margin-bottom:5px; font-size:.92rem; }
  .catalog-page .catalog-product-card p { font-size:.7rem; line-height:1.4; -webkit-line-clamp:1; }
  .catalog-page .catalog-format-tags { margin-top:8px; }
  .catalog-page .catalog-format-tags span { padding:3px 6px; font-size:.55rem; }
  .catalog-page .catalog-product-card .product-card-price { margin-top:9px; padding-top:8px; }
  .catalog-page .catalog-product-card .product-card-price small { display:none; }
  .catalog-page .catalog-product-card .product-card-price strong { font-size:.86rem; }
  .catalog-card-arrow { width:26px; height:26px; }
}
@media (max-width:520px) {
  .shop-page-hero { padding:30px 0 48px; }
  .shop-page-hero h1 { font-size:clamp(2.25rem,12vw,3.2rem); }
  .task-detail-card { grid-template-columns:1fr; }
  .filter-pills { gap:6px; }
  .filter-pills button { width:100%; text-align:left; border-radius:10px; }
  .kpp-hero-products { height:240px; }
}
@media (max-width:390px) {
  .catalog-page .catalog-product-card { grid-template-columns:88px minmax(0,1fr); }
  .catalog-page .catalog-product-card .product-card-image,.catalog-page .catalog-product-card .product-card-image img { min-height:128px; }
  .catalog-page .catalog-product-card p { display:none; }
}


/* KI PraxisPilot V2.0.2 – desktop refinement & product-page visual continuity */
/* Structural analogue to SP Digital Produkte V2.2.2, rendered in the approved KI PraxisPilot palette. */

/* Wider desktop shell for the discovery pages and shared header shell. */
body.shop-v2 .container { width:min(calc(100% - 56px),1360px); }
body.shop-shell-v2 .site-header .container.nav,
body.shop-shell-v2 .service-strip .container,
body.shop-v2 .site-header .container.nav,
body.shop-v2 .service-strip .container { width:min(calc(100% - 56px),1360px); }

/* Header: compact, one-line and consistent with the product pages. */
body.shop-v2 .nav,
body.shop-shell-v2 .nav { gap:26px; }
body.shop-v2 .nav-links,
body.shop-shell-v2 .nav-links { gap:20px; }
body.shop-v2 .nav-products-toggle,
body.shop-shell-v2 .nav-products-toggle { white-space:nowrap; font-size:.88rem; }
body.shop-v2 .nav-links > a:not(.nav-cross),
body.shop-shell-v2 .nav-links > a:not(.nav-cross) { white-space:nowrap; }
body.shop-v2 .nav-cross,
body.shop-shell-v2 .nav-cross {
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:8px 15px;
  border:1px solid var(--kpp-blue-deep);
  border-radius:999px;
  color:#fff;
  background:var(--kpp-blue-deep);
  text-decoration:none;
  box-shadow:0 8px 20px rgba(14,47,67,.12);
}
body.shop-v2 .nav-cross:hover,
body.shop-v2 .nav-cross:focus-visible,
body.shop-shell-v2 .nav-cross:hover,
body.shop-shell-v2 .nav-cross:focus-visible { color:#fff; background:var(--kpp-blue); border-color:var(--kpp-blue); }
.sp-wordmark { display:inline-flex; align-items:baseline; gap:4px; font-weight:850; letter-spacing:-.015em; }
.sp-wordmark-sp { color:var(--kpp-blue-hover); }
.sp-wordmark-products { color:#fff; }

body.shop-v2 .service-strip-inner,
body.shop-shell-v2 .service-strip-inner { min-height:32px; font-size:.76rem; }

/* Home hero: retain the KI product montage, but remove unnecessary vertical and horizontal air. */
body.shop-v2.shop-home .shop-hero-grid {
  min-height:0;
  grid-template-columns:minmax(0,1.12fr) minmax(390px,.72fr);
  gap:48px;
  padding:52px 0 50px;
}
body.shop-v2.shop-home .shop-hero .home-hero-copy { max-width:900px; }
body.shop-v2.shop-home .shop-hero .home-hero-copy h1 {
  max-width:900px;
  margin:10px 0 18px;
  font-size:clamp(2.85rem,4.25vw,4.45rem);
  line-height:1.01;
}
body.shop-v2.shop-home .shop-hero .lead { max-width:820px; font-size:1.06rem; line-height:1.62; }
body.shop-v2.shop-home .shop-search-hero { max-width:810px; margin-top:23px; }
body.shop-v2.shop-home .hero-actions { margin-top:24px; }
body.shop-v2.shop-home .kpp-hero-products { height:395px; }
body.shop-v2.shop-home .kpp-hero-products a { width:69%; }
body.shop-v2.shop-home .kpp-hero-products a:nth-child(1) { top:56px; }
body.shop-v2.shop-home .kpp-hero-products a:nth-child(2) { top:12px; }
body.shop-v2.shop-home .kpp-hero-products a:nth-child(3) { top:112px; }

/* Product-page accent language: olive eyebrow with controlled gold marker. */
body.shop-v2 .shop-hero .eyebrow,
body.shop-v2 .shop-page-hero .eyebrow {
  display:inline-flex;
  align-items:center;
  gap:9px;
}
body.shop-v2 .shop-hero .eyebrow::before,
body.shop-v2 .shop-page-hero .eyebrow::before {
  content:"";
  width:24px;
  height:5px;
  border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 0 1px rgba(214,184,90,.18);
}

/* Compact page heroes – no oversized empty band on desktop. */
body.shop-v2 .shop-page-hero {
  padding:28px 0 38px;
  background:
    radial-gradient(circle at 87% 22%,rgba(214,184,90,.19),transparent 18%),
    radial-gradient(circle at 78% 16%,rgba(143,174,77,.18),transparent 28%),
    linear-gradient(135deg,#F8F3E5,#fff 70%);
}
body.shop-v2 .shop-page-hero::after {
  width:min(25%,340px);
  height:4px;
  background:linear-gradient(90deg,var(--kpp-blue-deep) 0 58%,var(--kpp-olive-dark) 58% 78%,var(--accent) 78% 100%);
}
body.shop-v2 .shop-page-hero .breadcrumbs { margin-bottom:20px; }
body.shop-v2 .shop-page-hero h1 {
  max-width:1140px;
  margin:8px 0 12px;
  font-size:clamp(2.55rem,4.15vw,4rem);
  line-height:1.04;
}
body.shop-v2 .shop-page-hero .lead { max-width:980px; margin:0; font-size:1.04rem; line-height:1.6; }

/* Readable benefits below the home search – inspired by the product-page fact cards. */
body.shop-v2.shop-home .trust-row {
  max-width:900px;
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  font-size:.85rem;
}
body.shop-v2.shop-home .trust-row span {
  min-height:48px;
  padding:11px 13px;
  border:1px solid var(--kpp-line);
  border-radius:11px;
  background:#fff;
  box-shadow:0 8px 20px rgba(40,51,31,.045);
}
body.shop-v2.shop-home .trust-row span:nth-child(1),
body.shop-v2.shop-home .trust-row span:nth-child(3) {
  background:color-mix(in srgb,var(--accent) 14%,white);
  border-color:color-mix(in srgb,var(--accent) 38%,var(--kpp-line));
}
body.shop-v2.shop-home .trust-row span:nth-child(2) { background:var(--kpp-olive-soft); }
body.shop-v2.shop-home .trust-row .icon { color:var(--kpp-blue-deep); }

/* Schnell-Einstieg: readable, card-like and visibly part of the shop UX. */
body.shop-v2 .shop-quicknav {
  padding:14px 0;
  border-top:0;
  border-bottom:1px solid var(--kpp-line);
  background:#fff;
}
body.shop-v2 .shop-quicknav-inner {
  min-height:0;
  justify-content:flex-start;
  padding:11px 14px;
  gap:10px;
  overflow-x:auto;
  border:1px solid var(--kpp-line);
  border-radius:14px;
  background:linear-gradient(90deg,color-mix(in srgb,var(--accent) 15%,white),#fff 30%,var(--kpp-olive-soft) 100%);
  box-shadow:0 10px 26px rgba(40,51,31,.055);
}
body.shop-v2 .shop-quicknav-inner > span {
  padding:8px 10px;
  color:#29341E;
  background:var(--accent);
  border-radius:9px;
  font-size:.72rem;
  font-weight:850;
  letter-spacing:.075em;
  text-transform:uppercase;
}
body.shop-v2 .shop-quicknav a {
  padding:8px 11px;
  border-radius:9px;
  font-size:.87rem;
  background:rgba(255,255,255,.76);
}
body.shop-v2 .shop-quicknav a:hover,
body.shop-v2 .shop-quicknav a:focus-visible { background:#fff; box-shadow:0 5px 16px rgba(40,51,31,.07); outline:none; }
body.shop-v2 .shop-quicknav a::after { display:none; }

/* Stronger differentiation of the NEW shop cards using the existing product-page palette. */
body.shop-v2 .shop-topic-card small,
body.shop-v2 .topic-detail-head small {
  align-self:flex-start;
  padding:5px 8px;
  border-radius:7px;
  color:#29341E;
  background:color-mix(in srgb,var(--accent) 28%,white);
}
body.shop-v2 .shop-topic-card { background:linear-gradient(180deg,var(--kpp-blue-deep) 0 7px,#fff 7px 100%); }
body.shop-v2 .shop-topic-card:nth-child(2) { background:linear-gradient(180deg,var(--accent) 0 7px,#fff 7px 100%); }
body.shop-v2 .shop-topic-card:nth-child(3) { background:linear-gradient(180deg,var(--kpp-olive-dark) 0 7px,#fff 7px 100%); }
body.shop-v2 .topic-icon,
body.shop-v2 .job-icon,
body.shop-v2 .task-icon,
body.shop-v2 .topic-detail-head > span,
body.shop-v2 .principle-grid article > span {
  background:color-mix(in srgb,var(--accent) 21%,white);
  border:1px solid color-mix(in srgb,var(--accent) 43%,var(--kpp-line));
  color:var(--kpp-blue-deep);
  box-shadow:none;
}
body.shop-v2 .topic-icon .icon,
body.shop-v2 .job-icon .icon,
body.shop-v2 .task-icon .icon,
body.shop-v2 .topic-detail-head > span .icon { color:var(--kpp-blue-deep); }
body.shop-v2 .job-card,
body.shop-v2 .task-detail-card,
body.shop-v2 .topic-detail-card,
body.shop-v2 .shop-info-card,
body.shop-v2 .principle-grid article { box-shadow:0 10px 28px rgba(40,51,31,.065); }
body.shop-v2 .job-card::after { background:linear-gradient(90deg,var(--accent),var(--kpp-olive),var(--kpp-blue)); }
body.shop-v2 .topic-detail-accent { background:linear-gradient(180deg,var(--accent),var(--kpp-olive-dark)); }
body.shop-v2 .task-detail-card { position:relative; overflow:hidden; }
body.shop-v2 .task-detail-card::before {
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--accent),var(--kpp-olive));
}
body.shop-v2 .principle-grid article::before { background:var(--accent); }
body.shop-v2 .shop-info-card { background:linear-gradient(145deg,color-mix(in srgb,var(--accent) 11%,white),#fff 52%,var(--kpp-olive-soft)); }

/* Catalog/filter area: product-page-like treatment with a warm active accent. */
body.shop-v2.catalog-page .catalog-section { padding-top:38px; }
body.shop-v2.catalog-page .catalog-toolbar {
  margin-bottom:16px;
  padding:14px;
  border:1px solid var(--kpp-line);
  border-radius:16px;
  background:linear-gradient(145deg,#fff,color-mix(in srgb,var(--accent) 9%,white));
  box-shadow:0 10px 28px rgba(40,51,31,.055);
}
body.shop-v2.catalog-page .filter-block {
  margin:10px 0;
  padding:10px 12px;
  border:1px solid color-mix(in srgb,var(--accent) 25%,var(--kpp-line));
  border-radius:12px;
  background:color-mix(in srgb,var(--accent) 7%,white);
}
body.shop-v2.catalog-page .filter-pills button.is-active {
  color:#fff;
  background:var(--kpp-blue-deep);
  border-color:var(--kpp-blue-deep);
  box-shadow:0 6px 16px rgba(14,47,67,.10);
}
body.shop-v2.catalog-page .filter-pills button:not(.is-active):hover {
  border-color:color-mix(in srgb,var(--accent) 65%,var(--kpp-line));
  background:color-mix(in srgb,var(--accent) 13%,white);
}
body.shop-v2.catalog-page .catalog-product-card { border-top:4px solid var(--accent); }
body.shop-v2.catalog-page .catalog-product-card:nth-child(2) { border-top-color:var(--kpp-olive); }
body.shop-v2.catalog-page .catalog-product-card:nth-child(3) { border-top-color:var(--kpp-blue); }

/* FAQ gains the warm highlight already familiar from product detail cards. */
body.shop-v2 .faq-list details { border-left:4px solid color-mix(in srgb,var(--accent) 80%,white); }
body.shop-v2 .faq-list details[open] { border-left-color:var(--accent); }

@media (max-width:1180px) {
  body.shop-v2 .container,
  body.shop-shell-v2 .site-header .container.nav,
  body.shop-shell-v2 .service-strip .container,
  body.shop-v2 .site-header .container.nav,
  body.shop-v2 .service-strip .container { width:min(calc(100% - 40px),1180px); }
  body.shop-v2 .nav-links,
  body.shop-shell-v2 .nav-links { gap:13px; }
  body.shop-v2 .nav-links a,
  body.shop-shell-v2 .nav-links a,
  body.shop-v2 .nav-products-toggle,
  body.shop-shell-v2 .nav-products-toggle { font-size:.79rem; }
  body.shop-v2.shop-home .shop-hero-grid { grid-template-columns:minmax(0,1fr) 360px; gap:32px; }
}
@media (max-width:1000px) {
  body.shop-v2.shop-home .trust-row { grid-template-columns:1fr; }
  body.shop-v2.shop-home .shop-hero-grid { grid-template-columns:1fr; padding:48px 0 44px; }
  body.shop-v2.shop-home .kpp-hero-products { max-width:720px; width:100%; height:390px; margin-inline:auto; }
}
@media (max-width:760px) {
  body.shop-v2 .container,
  body.shop-shell-v2 .site-header .container.nav,
  body.shop-shell-v2 .service-strip .container,
  body.shop-v2 .site-header .container.nav,
  body.shop-v2 .service-strip .container { width:min(calc(100% - 28px),1180px); }
  body.shop-v2 .shop-page-hero { padding:24px 0 32px; }
  body.shop-v2 .shop-page-hero .breadcrumbs { margin-bottom:15px; }
  body.shop-v2 .shop-page-hero h1 { font-size:clamp(2.15rem,11vw,3rem); }
  body.shop-v2 .shop-quicknav { padding:10px 0; }
  body.shop-v2 .shop-quicknav-inner { padding:9px 10px; }
  body.shop-v2.shop-home .kpp-hero-products { height:310px; }
}



/* ==========================================================================
   KI PraxisPilot v2.0.3 – cache-safe unified shop shell
   ========================================================================== */
:root{
  --kpp-shell-max:1360px;
  --kpp-navy:#0E2F43;
  --kpp-navy-2:#082536;
  --kpp-blue:#2F9DCF;
  --kpp-olive:#8FAE4D;
  --kpp-olive-dark:#5F7B2A;
  --kpp-gold:#D6B85A;
  --kpp-cream:#F8F3E5;
  --kpp-line:#DED8C8;
}

/* New discovery pages use a broad desktop canvas, while product content keeps its own established measure. */
body.shop-v2 .container{width:min(calc(100% - 56px),var(--kpp-shell-max));}
body.shop-v2 .site-header .container.nav,
body.shop-shell-v2 .site-header .container.nav,
body.shop-v2 .service-strip .container,
body.shop-shell-v2 .service-strip .container{width:min(calc(100% - 56px),var(--kpp-shell-max));}

/* Header / navigation – deliberately explicit to avoid cached legacy rules. */
body.brand-ki-praxispilot .site-header{background:var(--kpp-navy-2);border-bottom:1px solid rgba(255,255,255,.10);}
body.brand-ki-praxispilot .site-header .nav{height:76px;gap:26px;}
body.brand-ki-praxispilot .site-header .nav-links{display:flex;align-items:center;gap:21px;margin-left:auto;}
body.brand-ki-praxispilot .site-header .nav-links>a:not(.nav-cross),
body.brand-ki-praxispilot .site-header .nav-products-toggle{color:#fff;font-size:.86rem;font-weight:760;white-space:nowrap;text-decoration:none;}
body.brand-ki-praxispilot .site-header .nav-links>a:not(.nav-cross):hover,
body.brand-ki-praxispilot .site-header .nav-links>a:not(.nav-cross):focus-visible,
body.brand-ki-praxispilot .site-header .nav-products-toggle:hover,
body.brand-ki-praxispilot .site-header .nav-products-toggle:focus-visible{color:var(--kpp-gold);}
body.brand-ki-praxispilot .site-header .nav-search-link{display:inline-flex!important;align-items:center;gap:6px;}
body.brand-ki-praxispilot .site-header .nav-search-link .icon{width:17px;height:17px;}

/* Product dropdown: hidden means hidden; open means a readable card. */
body.brand-ki-praxispilot .site-header .nav-products{position:relative;}
body.brand-ki-praxispilot .site-header .nav-products-toggle{display:inline-flex;align-items:center;gap:7px;padding:10px 0;border:0;background:transparent;cursor:pointer;font-family:inherit;}
body.brand-ki-praxispilot .site-header .nav-products-toggle span{font-size:.78em;transition:transform .18s ease;}
body.brand-ki-praxispilot .site-header .nav-products.is-open .nav-products-toggle span{transform:rotate(180deg);}
body.brand-ki-praxispilot .site-header .nav-products-menu,
body.brand-ki-praxispilot .site-header .nav-products-menu-wide{
  position:absolute!important;
  top:calc(100% + 12px)!important;
  left:-14px!important;
  z-index:100!important;
  width:340px!important;
  min-width:340px!important;
  margin:0!important;
  padding:10px!important;
  display:none!important;
  gap:3px!important;
  border:1px solid #DED8C8!important;
  border-radius:15px!important;
  background:#fff!important;
  box-shadow:0 22px 52px rgba(8,37,54,.22)!important;
  opacity:1!important;
  visibility:visible!important;
  pointer-events:auto!important;
  transform:none!important;
}
body.brand-ki-praxispilot .site-header .nav-products.is-open .nav-products-menu,
body.brand-ki-praxispilot .site-header .nav-products.is-open .nav-products-menu-wide{display:grid!important;}
body.brand-ki-praxispilot .site-header .nav-products-menu a{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:2px!important;
  width:100%!important;
  padding:12px 13px!important;
  border:0!important;
  border-radius:10px!important;
  color:#151A12!important;
  background:#fff!important;
  text-decoration:none!important;
  white-space:normal!important;
  line-height:1.3!important;
}
body.brand-ki-praxispilot .site-header .nav-products-menu a:hover,
body.brand-ki-praxispilot .site-header .nav-products-menu a:focus-visible{background:#F8F3E5!important;color:#151A12!important;outline:none!important;}
body.brand-ki-praxispilot .site-header .nav-products-menu a strong{display:block;color:#28331F!important;font-size:.84rem!important;font-weight:800!important;}
body.brand-ki-praxispilot .site-header .nav-products-menu a small{display:block;color:#6C705E!important;font-size:.69rem!important;font-weight:600!important;line-height:1.4!important;}

/* Cross-shop logo button. */
body.brand-ki-praxispilot .site-header .nav-cross.sp-shop-brand{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:40px!important;
  padding:5px 10px!important;
  border:1px solid rgba(255,255,255,.18)!important;
  border-radius:11px!important;
  background:#fff!important;
  box-shadow:0 8px 20px rgba(0,0,0,.14)!important;
  text-decoration:none!important;
}
body.brand-ki-praxispilot .site-header .nav-cross.sp-shop-brand:hover,
body.brand-ki-praxispilot .site-header .nav-cross.sp-shop-brand:focus-visible{transform:translateY(-1px);box-shadow:0 12px 26px rgba(0,0,0,.18)!important;outline:none;}
body.brand-ki-praxispilot .site-header .nav-cross.sp-shop-brand img{display:block;width:auto;height:27px;max-width:148px;object-fit:contain;}

/* Discovery-page hero and content density. */
body.shop-v2 .shop-page-hero{padding:34px 0 40px!important;}
body.shop-v2 .shop-page-hero .breadcrumbs{margin-bottom:18px!important;}
body.shop-v2 .shop-page-hero h1{max-width:1100px;margin:9px 0 12px!important;font-size:clamp(2.8rem,4.35vw,4.5rem)!important;line-height:1.01!important;}
body.shop-v2 .shop-page-hero .lead,
body.shop-v2 .shop-page-hero p{max-width:850px!important;}
body.shop-v2.shop-home .shop-hero-grid{min-height:0!important;padding:52px 0 48px!important;}
body.shop-v2.shop-home .shop-hero .home-hero-copy h1{font-size:clamp(3rem,4.45vw,4.65rem)!important;line-height:.99!important;}

/* Quick navigation stays readable and visually intentional. */
body.shop-v2 .shop-quicknav{padding:12px 0!important;background:#fff;border-top:1px solid var(--kpp-line);border-bottom:1px solid var(--kpp-line);}
body.shop-v2 .shop-quicknav-inner{display:flex;align-items:center;gap:8px;flex-wrap:wrap;padding:10px 12px!important;border:1px solid var(--kpp-line);border-radius:14px;background:linear-gradient(135deg,#fff,#F8F3E5);}
body.shop-v2 .shop-quicknav-inner>span{padding:7px 10px;border-radius:9px;background:var(--kpp-gold);color:#28331F;font-size:.72rem;font-weight:850;letter-spacing:.06em;text-transform:uppercase;}
body.shop-v2 .shop-quicknav a{padding:8px 11px;border-radius:9px;color:#28331F;font-size:.82rem;font-weight:760;text-decoration:none;}
body.shop-v2 .shop-quicknav a:hover,body.shop-v2 .shop-quicknav a:focus-visible{background:#fff;box-shadow:0 5px 16px rgba(40,51,31,.08);outline:none;}

/* Force themed cards to remain cards even when an older stylesheet is cached elsewhere. */
body.shop-v2 .shop-topic-grid,
body.shop-v2 .job-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:18px!important;}
body.shop-v2 .shop-topic-card,
body.shop-v2 .job-card,
body.shop-v2 .topic-detail-card,
body.shop-v2 .task-detail-card{
  display:flex!important;flex-direction:column!important;min-width:0!important;padding:24px!important;
  border:1px solid var(--kpp-line)!important;border-radius:18px!important;background:#fff!important;
  box-shadow:0 11px 30px rgba(40,51,31,.075)!important;text-decoration:none!important;color:#151A12!important;
}
body.shop-v2 .shop-topic-card{border-top:6px solid var(--kpp-gold)!important;}
body.shop-v2 .shop-topic-card:nth-child(2){border-top-color:var(--kpp-olive)!important;}
body.shop-v2 .shop-topic-card:nth-child(3){border-top-color:var(--kpp-blue)!important;}
body.shop-v2 .job-card{position:relative;overflow:hidden;}
body.shop-v2 .job-card::after{content:"";position:absolute;left:0;right:0;bottom:0;height:4px;background:linear-gradient(90deg,var(--kpp-gold),var(--kpp-olive),var(--kpp-blue));}
body.shop-v2 .topic-icon,body.shop-v2 .job-icon,body.shop-v2 .task-icon{width:46px;height:46px;display:grid;place-items:center;border:1px solid #E3D5A2;border-radius:12px;background:#FFF6D9;color:var(--kpp-navy);}
body.shop-v2 .shop-topic-card h3,body.shop-v2 .job-card h3{margin:14px 0 8px;font-size:1.12rem;line-height:1.25;}
body.shop-v2 .shop-topic-card p,body.shop-v2 .job-card p{margin:0 0 14px;color:#606455;font-size:.86rem;line-height:1.55;}
body.shop-v2 .topic-link,body.shop-v2 .job-link{margin-top:auto;color:var(--kpp-olive-dark);font-size:.78rem;font-weight:800;}

/* Catalog is deliberately compact – never let the product visual become a full-width billboard. */
body.shop-v2.catalog-page .catalog-section{padding:34px 0 68px!important;}
body.shop-v2.catalog-page .catalog-toolbar{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;gap:16px!important;align-items:start!important;margin-bottom:22px!important;padding:16px!important;border:1px solid var(--kpp-line)!important;border-radius:16px!important;background:linear-gradient(145deg,#fff,#FBF5E3)!important;box-shadow:0 10px 28px rgba(40,51,31,.06)!important;}
body.shop-v2.catalog-page .catalog-controls{min-width:0!important;}
body.shop-v2.catalog-page .catalog-results{font-size:.82rem!important;font-weight:750!important;padding:12px 4px!important;white-space:nowrap!important;}
body.shop-v2.catalog-page .catalog-search{display:flex!important;align-items:center!important;gap:8px!important;max-width:760px!important;min-height:48px!important;padding:5px 6px 5px 13px!important;border:1px solid var(--kpp-line)!important;border-radius:12px!important;background:#fff!important;}
body.shop-v2.catalog-page .catalog-search input{width:100%!important;min-width:0!important;border:0!important;outline:0!important;background:transparent!important;font:inherit!important;}
body.shop-v2.catalog-page .filter-block{display:flex!important;align-items:flex-start!important;gap:14px!important;margin:11px 0 0!important;padding:9px 10px!important;border:1px solid #E8DDB8!important;border-radius:12px!important;background:#FFF9E8!important;}
body.shop-v2.catalog-page .filter-label{min-width:74px!important;padding-top:5px!important;font-size:.75rem!important;font-weight:800!important;}
body.shop-v2.catalog-page .filter-pills{display:flex!important;flex-wrap:wrap!important;gap:7px!important;}
body.shop-v2.catalog-page .filter-pills button{min-height:34px!important;padding:6px 11px!important;border:1px solid var(--kpp-line)!important;border-radius:999px!important;background:#fff!important;color:#28331F!important;font:inherit!important;font-size:.72rem!important;font-weight:750!important;cursor:pointer!important;}
body.shop-v2.catalog-page .filter-pills button.is-active{border-color:var(--kpp-navy)!important;background:var(--kpp-navy)!important;color:#fff!important;}
body.shop-v2.catalog-page .catalog-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:17px!important;}
body.shop-v2.catalog-page .catalog-product-card{display:flex!important;flex-direction:column!important;min-height:0!important;overflow:hidden!important;border:1px solid var(--kpp-line)!important;border-top:4px solid var(--kpp-gold)!important;border-radius:15px!important;background:#fff!important;box-shadow:0 9px 25px rgba(40,51,31,.075)!important;}
body.shop-v2.catalog-page .catalog-product-card:nth-child(2){border-top-color:var(--kpp-olive)!important;}
body.shop-v2.catalog-page .catalog-product-card:nth-child(3){border-top-color:var(--kpp-blue)!important;}
body.shop-v2.catalog-page .catalog-product-card .product-card-visual{display:block!important;padding:0!important;background:#F3F5F2!important;text-decoration:none!important;}
body.shop-v2.catalog-page .catalog-product-card .product-card-image img{display:block!important;width:100%!important;height:auto!important;aspect-ratio:16/10!important;object-fit:cover!important;border:0!important;border-radius:0!important;box-shadow:none!important;}
body.shop-v2.catalog-page .catalog-product-card .product-card-body{display:flex!important;flex-direction:column!important;flex:1!important;padding:16px!important;}
body.shop-v2.catalog-page .catalog-product-card .product-card-meta{margin:0 0 6px!important;color:var(--kpp-olive-dark)!important;font-size:.62rem!important;font-weight:800!important;letter-spacing:.08em!important;text-transform:uppercase!important;}
body.shop-v2.catalog-page .catalog-product-card h3{margin:0 0 7px!important;font-size:1.05rem!important;line-height:1.24!important;}
body.shop-v2.catalog-page .catalog-product-card h3 a{text-decoration:none!important;color:#28331F!important;}
body.shop-v2.catalog-page .catalog-product-card p{display:-webkit-box!important;margin:0!important;overflow:hidden!important;color:#606455!important;font-size:.79rem!important;line-height:1.48!important;-webkit-box-orient:vertical!important;-webkit-line-clamp:2!important;}
body.shop-v2.catalog-page .catalog-format-tags{display:flex!important;flex-wrap:wrap!important;gap:5px!important;margin-top:10px!important;}
body.shop-v2.catalog-page .catalog-format-tags span{padding:4px 7px!important;border-radius:7px!important;background:#F8F3E5!important;color:#5F7B2A!important;font-size:.62rem!important;font-weight:800!important;}
body.shop-v2.catalog-page .product-card-price{display:flex!important;align-items:end!important;justify-content:space-between!important;gap:10px!important;margin-top:auto!important;padding-top:12px!important;border-top:1px solid var(--kpp-line)!important;}
body.shop-v2.catalog-page .product-card-price small{display:block!important;color:#777B6B!important;font-size:.58rem!important;text-transform:uppercase!important;letter-spacing:.08em!important;}
body.shop-v2.catalog-page .product-card-price strong{display:block!important;color:#151A12!important;font-size:.98rem!important;}
body.shop-v2.catalog-page .catalog-card-arrow{width:31px;height:31px;display:grid!important;place-items:center!important;border-radius:50%!important;background:#F8F3E5!important;color:var(--kpp-olive-dark)!important;}

@media(max-width:1180px){
 body.shop-v2 .container,body.shop-v2 .site-header .container.nav,body.shop-shell-v2 .site-header .container.nav,body.shop-v2 .service-strip .container,body.shop-shell-v2 .service-strip .container{width:min(calc(100% - 40px),1180px);}
 body.brand-ki-praxispilot .site-header .nav-links{gap:13px;}
 body.brand-ki-praxispilot .site-header .nav-links>a:not(.nav-cross),body.brand-ki-praxispilot .site-header .nav-products-toggle{font-size:.78rem;}
 body.brand-ki-praxispilot .site-header .nav-cross.sp-shop-brand img{height:24px;max-width:132px;}
}
@media(max-width:1000px){
 body.shop-v2 .shop-topic-grid,body.shop-v2 .job-grid,body.shop-v2.catalog-page .catalog-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media(max-width:760px){
 body.shop-v2 .container,body.shop-v2 .site-header .container.nav,body.shop-shell-v2 .site-header .container.nav,body.shop-v2 .service-strip .container,body.shop-shell-v2 .service-strip .container{width:min(calc(100% - 28px),1180px);}
 body.brand-ki-praxispilot .site-header .nav-links{position:fixed;top:110px;left:0;right:0;bottom:0;z-index:90;display:none;flex-direction:column;align-items:stretch;gap:0;padding:20px;background:#fff;overflow:auto;}
 body.nav-open.brand-ki-praxispilot .site-header .nav-links{display:flex;}
 body.brand-ki-praxispilot .site-header .nav-links>a:not(.nav-cross),body.brand-ki-praxispilot .site-header .nav-products-toggle{width:100%;padding:14px 0;border-bottom:1px solid var(--kpp-line);color:#28331F!important;font-size:1rem!important;}
 body.brand-ki-praxispilot .site-header .nav-products{width:100%;}
 body.brand-ki-praxispilot .site-header .nav-products-menu,body.brand-ki-praxispilot .site-header .nav-products-menu-wide{position:static!important;width:100%!important;min-width:0!important;margin:0!important;padding:7px 0 10px 10px!important;border:0!important;border-left:2px solid #E7D79F!important;border-radius:0!important;box-shadow:none!important;}
 body.brand-ki-praxispilot .site-header .nav-cross.sp-shop-brand{align-self:flex-start!important;margin-top:12px!important;border-color:var(--kpp-line)!important;}
 body.shop-v2 .shop-topic-grid,body.shop-v2 .job-grid,body.shop-v2.catalog-page .catalog-grid{grid-template-columns:1fr!important;}
 body.shop-v2.catalog-page .catalog-toolbar{grid-template-columns:1fr!important;}
 body.shop-v2.catalog-page .filter-block{display:block!important;}
 body.shop-v2.catalog-page .filter-label{display:block!important;margin-bottom:7px!important;}
 body.shop-v2.catalog-page .catalog-product-card{display:grid!important;grid-template-columns:104px minmax(0,1fr)!important;align-items:stretch!important;}
 body.shop-v2.catalog-page .catalog-product-card .product-card-image,body.shop-v2.catalog-page .catalog-product-card .product-card-image img{height:100%!important;min-height:136px!important;aspect-ratio:auto!important;object-fit:cover!important;}
 body.shop-v2.catalog-page .catalog-product-card .product-card-body{padding:12px!important;}
 body.shop-v2.catalog-page .catalog-product-card p{display:none!important;}
}


/* KI PraxisPilot v2.0.4 – product-page palette applied to new shop pages */
:root{
  --kpp-blue:#176F9F;
  --kpp-blue-hover:#1F8FC8;
  --kpp-blue-soft:#E8F3F8;
  --kpp-blue-deep:#0E2F43;
  --kpp-olive:#8FAE4D;
  --kpp-olive-dark:#5F7B2A;
  --kpp-olive-soft:#E7EFD4;
  --kpp-cream:#F8F6EF;
  --kpp-surface:#F5F2EA;
  --kpp-line:#D8DEC8;
  --kpp-gold:#D6B85A;
}
/* Product pages are the source of truth: cream/grey + soft green surfaces; gold only as a small marker. */
body.shop-v2 .shop-hero,
body.shop-v2 .shop-page-hero{
  background:radial-gradient(circle at 86% 14%,rgba(143,174,77,.23),transparent 27%),linear-gradient(145deg,var(--kpp-cream),#fff 67%)!important;
}
body.shop-v2 .shop-page-hero::after{
  background:linear-gradient(90deg,var(--kpp-blue-deep),var(--kpp-blue),var(--kpp-olive))!important;
}
body.shop-v2 .shop-hero .eyebrow,
body.shop-v2 .shop-page-hero .eyebrow{color:var(--kpp-olive-dark)!important;}
/* Keep a tiny gold marker only, never a large gold surface. */
body.shop-v2 .shop-hero .eyebrow::before,
body.shop-v2 .shop-page-hero .eyebrow::before{background:var(--kpp-gold)!important;}

/* Primary green actions alternate with controlled blue actions. */
body.shop-v2 .shop-search button,
body.shop-v2.catalog-page .catalog-search button,
body.shop-v2 .catalog-reset,
body.shop-v2 .search-submit{background:var(--kpp-blue)!important;color:#fff!important;}
body.shop-v2 .shop-search button:hover,
body.shop-v2 .shop-search button:focus-visible,
body.shop-v2.catalog-page .catalog-search button:hover,
body.shop-v2.catalog-page .catalog-search button:focus-visible{background:var(--kpp-blue-hover)!important;}
body.shop-v2 .shop-search .icon,
body.shop-v2.catalog-page .catalog-search .icon{color:var(--kpp-blue)!important;}

/* Home feature tiles: product-page cream / soft green / blue-soft rhythm. */
body.shop-v2.shop-home .trust-row span{border-color:var(--kpp-line)!important;color:#28331F!important;}
body.shop-v2.shop-home .trust-row span:nth-child(1){background:var(--kpp-cream)!important;}
body.shop-v2.shop-home .trust-row span:nth-child(2){background:var(--kpp-olive-soft)!important;}
body.shop-v2.shop-home .trust-row span:nth-child(3){background:var(--kpp-blue-soft)!important;}
body.shop-v2.shop-home .trust-row span:nth-child(1) .icon,
body.shop-v2.shop-home .trust-row span:nth-child(3) .icon{color:var(--kpp-blue)!important;}
body.shop-v2.shop-home .trust-row span:nth-child(2) .icon{color:var(--kpp-olive-dark)!important;}

/* Quick navigation: neutral product-page surface; blue label rather than SP-style yellow block. */
body.shop-v2 .shop-quicknav{background:#fff!important;border-color:var(--kpp-line)!important;}
body.shop-v2 .shop-quicknav-inner{
  border-color:var(--kpp-line)!important;
  background:linear-gradient(135deg,#fff,var(--kpp-cream))!important;
}
body.shop-v2 .shop-quicknav-inner>span{
  background:var(--kpp-blue-deep)!important;color:#fff!important;
}
body.shop-v2 .shop-quicknav a{color:#28331F!important;background:#fff!important;}
body.shop-v2 .shop-quicknav a:hover,
body.shop-v2 .shop-quicknav a:focus-visible{background:var(--kpp-blue-soft)!important;color:var(--kpp-blue-deep)!important;}

/* Topic and task cards: blue + olive, no large gold/yellow backgrounds. */
body.shop-v2 .shop-topic-card,
body.shop-v2 .job-card,
body.shop-v2 .topic-detail-card,
body.shop-v2 .task-detail-card{
  background:#fff!important;border-color:var(--kpp-line)!important;
}
body.shop-v2 .shop-topic-card{border-top:6px solid var(--kpp-blue)!important;}
body.shop-v2 .shop-topic-card:nth-child(2){border-top-color:var(--kpp-olive)!important;}
body.shop-v2 .shop-topic-card:nth-child(3){border-top-color:var(--kpp-blue-hover)!important;}
body.shop-v2 .shop-topic-card::before{background:radial-gradient(circle,rgba(23,111,159,.10),rgba(23,111,159,0) 68%)!important;}
body.shop-v2 .shop-topic-card small,
body.shop-v2 .topic-detail-head small,
body.shop-v2.catalog-page .catalog-product-card .product-card-meta{color:var(--kpp-blue)!important;}
body.shop-v2 .topic-detail-head h2,
body.shop-v2 .shop-topic-card h3{color:var(--kpp-blue-deep)!important;}
body.shop-v2 .topic-detail-accent{background:linear-gradient(180deg,var(--kpp-blue),var(--kpp-olive-dark))!important;}
body.shop-v2 .job-card::after{background:linear-gradient(90deg,var(--kpp-blue),var(--kpp-olive))!important;}
body.shop-v2 .task-detail-card::after{background:rgba(23,111,159,.08)!important;}
body.shop-v2 .topic-icon,
body.shop-v2 .task-icon{background:var(--kpp-cream)!important;border-color:var(--kpp-line)!important;color:var(--kpp-blue-deep)!important;}
body.shop-v2 .job-icon{background:var(--kpp-olive-soft)!important;border-color:#D7DEC6!important;color:var(--kpp-blue-deep)!important;}
body.shop-v2 .topic-link{color:var(--kpp-blue)!important;}
body.shop-v2 .job-link,
body.shop-v2 .task-detail-card strong{color:var(--kpp-olive-dark)!important;}
body.shop-v2 .topic-product-pill{background:var(--kpp-olive-soft)!important;border-color:#D7DEC6!important;color:#505735!important;}

/* Catalog controls: remove yellow-orange wash; use neutral/green surfaces and blue active state. */
body.shop-v2.catalog-page .catalog-toolbar{
  border-color:var(--kpp-line)!important;
  background:linear-gradient(145deg,#fff,var(--kpp-cream))!important;
}
body.shop-v2.catalog-page .filter-block{
  border-color:var(--kpp-line)!important;
  background:var(--kpp-cream)!important;
}
body.shop-v2.catalog-page .filter-block:nth-of-type(2){background:var(--kpp-olive-soft)!important;}
body.shop-v2.catalog-page .filter-pills button{
  border-color:var(--kpp-line)!important;background:#fff!important;color:#28331F!important;
}
body.shop-v2.catalog-page .filter-pills button.is-active{
  border-color:var(--kpp-blue)!important;background:var(--kpp-blue)!important;color:#fff!important;
}
body.shop-v2.catalog-page .filter-pills button:hover:not(.is-active),
body.shop-v2.catalog-page .filter-pills button:focus-visible:not(.is-active){
  border-color:var(--kpp-blue)!important;background:var(--kpp-blue-soft)!important;
}
body.shop-v2.catalog-page .catalog-product-card{border-top-color:var(--kpp-blue)!important;}
body.shop-v2.catalog-page .catalog-product-card:nth-child(2){border-top-color:var(--kpp-olive)!important;}
body.shop-v2.catalog-page .catalog-product-card:nth-child(3){border-top-color:var(--kpp-blue-hover)!important;}
body.shop-v2.catalog-page .catalog-format-tags span{background:var(--kpp-olive-soft)!important;color:#435125!important;}
body.shop-v2.catalog-page .catalog-card-arrow{background:var(--kpp-blue-soft)!important;color:var(--kpp-blue)!important;border-color:#CDE3ED!important;}
body.shop-v2.catalog-page .catalog-product-card:hover .catalog-card-arrow{background:var(--kpp-blue)!important;color:#fff!important;}

/* FAQ / info surfaces use product-page neutrals. */
body.shop-v2 .shop-info-card,
body.shop-v2 .faq-list details,
body.shop-v2 .support-link-card{border-color:var(--kpp-line)!important;background:var(--kpp-cream)!important;}
body.shop-v2 .shop-info-card:nth-child(even){background:var(--kpp-olive-soft)!important;}
body.shop-v2 .shop-info-card>span:first-child,
body.shop-v2 .support-link-card>span:first-child{color:var(--kpp-blue)!important;}

/* Final v2.0.4 cleanup: no SP-style warm fills on KI shop components. */
body.shop-v2.catalog-page [data-clear-search]{
  background:var(--kpp-cream)!important;color:#6C705E!important;border:1px solid var(--kpp-line)!important;
}
body.shop-v2.catalog-page [data-clear-search]:hover,
body.shop-v2.catalog-page [data-clear-search]:focus-visible{
  background:var(--kpp-blue-soft)!important;color:var(--kpp-blue-deep)!important;border-color:#CDE3ED!important;
}
body.shop-v2 .task-detail-card::before{background:linear-gradient(90deg,var(--kpp-blue),var(--kpp-olive))!important;}
body.shop-v2 .principle-grid article::before{background:var(--kpp-blue)!important;}
body.shop-v2 .principle-grid article:nth-child(even)::before{background:var(--kpp-olive)!important;}
body.shop-v2 .value-intro .eyebrow{color:var(--kpp-blue-hover)!important;}
body.shop-v2 .process-flow article:not(:last-child)::after{color:var(--kpp-blue)!important;}
body.shop-v2 .process-flow .flow-icon{background:var(--kpp-blue)!important;color:#fff!important;box-shadow:0 12px 28px rgba(23,111,159,.16)!important;}
body.shop-v2 .process-flow article:nth-child(even) .flow-icon{background:var(--kpp-olive)!important;color:#28331F!important;}
body.shop-v2 .faq-list details{border-left-color:#CDE3ED!important;}
body.shop-v2 .faq-list details:nth-child(even){border-left-color:#D7DEC6!important;}
body.shop-v2 .faq-list details[open]{border-left-color:var(--kpp-blue)!important;}


/* KI PraxisPilot v2.0.5 – product preview legibility and reference-consistent hero */
body.shop-v2.shop-home .kpp-hero-products { height:360px!important; }
body.shop-v2.shop-home .kpp-hero-products a {
  width:56%!important;
  padding:6px!important;
  background:#F4F8FA!important;
  border-color:#D9E1E4!important;
  border-radius:17px!important;
}
body.shop-v2.shop-home .kpp-hero-products img {
  width:100%!important;
  height:auto!important;
  aspect-ratio:4 / 3!important;
  object-fit:contain!important;
  object-position:center!important;
  border-radius:12px!important;
  background:#F4F8FA!important;
}
body.shop-v2.shop-home .kpp-hero-products a:nth-child(1) { left:2%!important; top:60px!important; }
body.shop-v2.shop-home .kpp-hero-products a:nth-child(2) { right:1%!important; top:10px!important; }
body.shop-v2.shop-home .kpp-hero-products a:nth-child(3) { right:9%!important; top:104px!important; bottom:auto!important; }
@media(max-width:1040px){
  body.shop-v2.shop-home .kpp-hero-products{height:330px!important;max-width:650px!important;}
  body.shop-v2.shop-home .kpp-hero-products a{width:55%!important;}
}
@media(max-width:760px){
  body.shop-v2.shop-home .kpp-hero-products{height:255px!important;}
  body.shop-v2.shop-home .kpp-hero-products a{width:58%!important;padding:4px!important;}
}


/* KPP mobile catalog contract: prevent the home-card grid from retaining its
   desktop columns and preserve complete product visuals in filtered results. */
@media (max-width:760px) {
  body.shop-v2.shop-home .catalog-home-grid {
    grid-template-columns:1fr !important;
    gap:14px !important;
  }
  body.shop-v2.shop-home .catalog-home-grid .catalog-product-card {
    min-width:0 !important;
  }
  body.shop-v2.catalog-page .catalog-product-card {
    grid-template-columns:128px minmax(0,1fr) !important;
  }
  body.shop-v2.catalog-page .catalog-product-card .product-card-visual,
  body.shop-v2.catalog-page .catalog-product-card .product-card-image {
    min-width:0 !important;
    background:#F4F8FA !important;
  }
  body.shop-v2.catalog-page .catalog-product-card .product-card-image img {
    width:100% !important;
    height:100% !important;
    min-height:142px !important;
    object-fit:contain !important;
    object-position:center !important;
    background:#F4F8FA !important;
  }
  body.shop-v2.catalog-page .catalog-product-card .product-card-body {
    min-width:0 !important;
  }
}
@media (max-width:390px) {
  body.shop-v2.catalog-page .catalog-product-card {
    grid-template-columns:104px minmax(0,1fr) !important;
  }
}

/* KI-Einsatzrichtlinie: compact, two-level hero heading. */
body.page-ki-einsatzrichtlinie .compact-hero-copy .policy-hero-title {
  max-width:760px;
  font-size:clamp(2.2rem,3.2vw,2.55rem);
  line-height:1.08;
}
body.page-ki-einsatzrichtlinie .policy-hero-title__main {
  display:block;
  white-space:nowrap;
}
body.page-ki-einsatzrichtlinie .policy-hero-title__sub {
  display:block;
  max-width:34ch;
  margin-top:.22em;
  color:#435125;
  font-size:.56em;
  font-weight:760;
  line-height:1.18;
  letter-spacing:-.015em;
}
@media (max-width:680px) {
  body.page-ki-einsatzrichtlinie .compact-hero-copy .policy-hero-title {
    font-size:clamp(1.65rem,7vw,2.15rem);
  }
  body.page-ki-einsatzrichtlinie .policy-hero-title__main {
    white-space:normal;
  }
  body.page-ki-einsatzrichtlinie .policy-hero-title__sub {
    max-width:100%;
    font-size:.62em;
  }
}

/* KI-Inventar: compact, two-level hero heading. */
body.page-ki-inventar .compact-hero-copy .inventory-hero-title {
  max-width:760px;
  font-size:clamp(2.2rem,3.2vw,2.55rem);
  line-height:1.08;
}
body.page-ki-inventar .inventory-hero-title__main {
  display:block;
  white-space:nowrap;
}
body.page-ki-inventar .inventory-hero-title__sub {
  display:block;
  max-width:34ch;
  margin-top:.22em;
  color:#435125;
  font-size:.56em;
  font-weight:760;
  line-height:1.18;
  letter-spacing:-.015em;
}
@media (max-width:680px) {
  body.page-ki-inventar .compact-hero-copy .inventory-hero-title {
    font-size:clamp(1.65rem,7vw,2.15rem);
  }
  body.page-ki-inventar .inventory-hero-title__main {
    white-space:normal;
  }
  body.page-ki-inventar .inventory-hero-title__sub {
    max-width:100%;
    font-size:.62em;
  }
}
