/*
Theme Name: Prozesskern Platform V25
Theme URI: https://prozesskern.de
Author: Prozesskern
Description: Premium WordPress-Auftritt für Prozesskern Unternehmenssoftware. Korrekturstand: V25 mit neutralisierten Produkt-Einblicken und Livegang-Vorbereitung.
Version: 25.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPL-2.0-or-later
Text Domain: prozesskern-platform-v18
*/

:root {
  --pk-bg: #020915;
  --pk-bg-2: #061225;
  --pk-panel: rgba(7, 21, 42, 0.82);
  --pk-panel-strong: rgba(8, 26, 54, 0.94);
  --pk-line: rgba(60, 163, 255, 0.22);
  --pk-line-strong: rgba(24, 151, 255, 0.52);
  --pk-text: #f4f8ff;
  --pk-muted: #aab7cb;
  --pk-soft: #718097;
  --pk-blue: #0a8dff;
  --pk-cyan: #0de5ff;
  --pk-blue-2: #055bed;
  --pk-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
  --pk-glow: 0 0 32px rgba(9, 139, 255, 0.32), 0 0 90px rgba(0, 102, 255, 0.14);
  --pk-radius: 24px;
  --pk-radius-sm: 16px;
  --pk-container: min(1440px, calc(100vw - 64px));
  --pk-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--pk-font);
  color: var(--pk-text);
  background:
    radial-gradient(circle at 73% 16%, rgba(13, 135, 255, .24), transparent 28%),
    radial-gradient(circle at 20% 42%, rgba(0, 229, 255, .10), transparent 28%),
    linear-gradient(135deg, #010713 0%, #061327 43%, #020712 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
body::before {
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 25%, black 0%, transparent 70%);
}
body::after {
  background: radial-gradient(circle at 50% 120%, rgba(0, 117, 255, .18), transparent 48%);
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
a:hover { color: #9beeff; }
img { max-width: 100%; height: auto; }

.pk-container { width: var(--pk-container); margin: 0 auto; }
.pk-page { min-height: 100vh; }
.pk-muted { color: var(--pk-muted); }
.pk-blue { color: var(--pk-blue); }
.pk-kicker {
  margin: 0 0 22px;
  color: var(--pk-cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.pk-title {
  margin: 0;
  font-size: clamp(48px, 6vw, 94px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 850;
}
.pk-title span,
.pk-accent {
  color: var(--pk-blue);
  text-shadow: 0 0 28px rgba(0, 141, 255, .34);
}
.pk-lead {
  margin: 26px 0 0;
  color: #c6d1e3;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.6;
  max-width: 650px;
}
.pk-section-title {
  margin: 0 0 24px;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.pk-section-copy {
  margin: 0;
  color: var(--pk-muted);
  line-height: 1.75;
  font-size: 16px;
}

.pk-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 9, 21, .74);
  border-bottom: 1px solid rgba(60, 163, 255, .14);
  backdrop-filter: blur(24px);
}
.pk-nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.pk-logo {
  display: inline-flex;
  align-items: center;
  min-width: 230px;
}
.pk-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--pk-blue);
  font-weight: 850;
  letter-spacing: -.045em;
  font-size: 31px;
  line-height: 1;
  text-shadow: 0 0 24px rgba(0, 141, 255, .34);
}
.pk-logo-mark {
  width: 58px;
  height: 72px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 16px rgba(0, 141, 255, .34));
}
.pk-logo-word { display: inline-block; }
.pk-logo img.custom-logo { width: 230px; height: auto; display: block; }
.pk-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 64px);
  font-size: 15px;
  color: rgba(244,248,255,.86);
  flex: 1;
}
.pk-menu a {
  position: relative;
  padding: 34px 0 32px;
  transition: color .2s ease;
}
.pk-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  border-radius: 99px;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--pk-blue), var(--pk-cyan));
  box-shadow: 0 0 22px rgba(0, 142, 255, .72);
  transition: transform .22s ease;
}
.pk-menu a:hover::after,
.pk-menu a.pk-active::after { transform: scaleX(1); }
.pk-menu a:hover,
.pk-menu a.pk-active { color: var(--pk-text); }
.pk-mobile-toggle { display: none; }

.pk-intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 52% 72%, rgba(0, 119, 255, .34), transparent 26%),
    radial-gradient(circle at 50% 20%, rgba(9, 153, 255, .22), transparent 38%),
    #020814;
  overflow: hidden;
  animation: pkIntroExit .95s cubic-bezier(.7, 0, .2, 1) 5.05s forwards;
}
.pk-intro::before,
.pk-intro::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(110deg, transparent 0%, rgba(0, 150, 255, .22) 45%, transparent 70%);
  filter: blur(18px);
  transform: translateX(-70%);
  animation: pkSweep 2.5s ease-in-out .5s forwards;
}
.pk-intro::after {
  animation-delay: 2.2s;
  opacity: .46;
}
.pk-intro-logo {
  width: min(980px, 76vw);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(0, 123, 255, .62));
  animation: pkLogoIn 1.15s cubic-bezier(.2, .9, .2, 1) both, pkLogoSettle .9s ease 3.25s forwards;
}
.pk-intro-logo img { display: block; border-radius: 18px; }
.pk-intro-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  width: auto;
  max-width: min(1080px, 86vw);
}
.pk-intro-brand img {
  width: clamp(112px, 18vw, 230px);
  border-radius: 28px;
  filter: drop-shadow(0 0 36px rgba(0, 141, 255, .55));
}
.pk-intro-copy { display: grid; gap: 16px; }
.pk-intro-copy strong {
  color: var(--pk-blue);
  font-size: clamp(54px, 9vw, 140px);
  line-height: .9;
  letter-spacing: -.07em;
  text-shadow: 0 0 34px rgba(0, 141, 255, .48);
}
.pk-intro-copy span {
  display: block;
  padding-top: 14px;
  border-top: 2px solid rgba(0, 195, 255, .78);
  color: #dbe7f8;
  font-size: clamp(18px, 2.2vw, 34px);
  letter-spacing: -.03em;
}
.pk-intro-word {
  position: absolute;
  z-index: 4;
  color: #eaf8ff;
  font-size: clamp(20px, 3.2vw, 48px);
  font-weight: 760;
  letter-spacing: -.04em;
  text-shadow: 0 0 18px rgba(0, 187, 255, .9), 0 0 52px rgba(0, 88, 255, .76);
  opacity: 0;
  white-space: nowrap;
}
.pk-intro-word::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 240px;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(0, 142, 255, .1), #25dfff);
  box-shadow: 0 0 26px rgba(0, 156, 255, .8);
}
.pk-word-dms { left: 12vw; top: 18vh; animation: pkFlyLeft 1.1s ease 2.05s forwards; }
.pk-word-time { left: 48vw; top: 17vh; animation: pkFlyTop 1.1s ease 2.25s forwards; }
.pk-word-diktate { right: 8vw; top: 22vh; animation: pkFlyRight 1.1s ease 2.45s forwards; }
.pk-word-erp { left: 16vw; bottom: 22vh; animation: pkFlyLeft 1.1s ease 2.55s forwards; }
.pk-word-fertigung { left: 43vw; bottom: 18vh; animation: pkFlyBottom 1.1s ease 2.75s forwards; }
.pk-word-workflows { right: 8vw; bottom: 20vh; animation: pkFlyRight 1.1s ease 2.95s forwards; }
.pk-content-reveal { animation: pkContentIn .85s ease 5.35s backwards; }
@keyframes pkIntroExit { to { opacity: 0; visibility: hidden; transform: scale(1.018); } }
@keyframes pkLogoIn { from { opacity: 0; transform: translateY(18px) scale(.94); filter: blur(8px) drop-shadow(0 0 0 rgba(0,123,255,0)); } to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0) drop-shadow(0 0 40px rgba(0,123,255,.62)); } }
@keyframes pkLogoSettle { to { transform: translateY(-3vh) scale(.78); } }
@keyframes pkSweep { 0% { transform: translateX(-70%) rotate(0deg); } 100% { transform: translateX(70%) rotate(0deg); } }
@keyframes pkFlyLeft { from { opacity: 0; transform: translateX(-100px); filter: blur(8px); } to { opacity: 1; transform: translateX(0); filter: blur(0); } }
@keyframes pkFlyRight { from { opacity: 0; transform: translateX(100px); filter: blur(8px); } to { opacity: 1; transform: translateX(0); filter: blur(0); } }
@keyframes pkFlyTop { from { opacity: 0; transform: translateY(-80px); filter: blur(8px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes pkFlyBottom { from { opacity: 0; transform: translateY(80px); filter: blur(8px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes pkContentIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.pk-hero {
  position: relative;
  padding: clamp(72px, 9vw, 138px) 0 42px;
  overflow: hidden;
}
.pk-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 136, 255, .55), transparent);
  box-shadow: 0 0 60px rgba(0, 139, 255, .6);
  opacity: .72;
}
.pk-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, .96fr) minmax(520px, 1.1fr);
  gap: clamp(38px, 6vw, 90px);
  align-items: center;
}
.pk-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  margin-top: 36px;
  color: #cbd8ea;
}
.pk-hero-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: #cbd8ea;
}
.pk-icon-mini {
  width: 28px;
  height: 28px;
  color: var(--pk-blue);
  filter: drop-shadow(0 0 10px rgba(0,141,255,.5));
}

.pk-dashboard {
  position: relative;
  border: 1px solid var(--pk-line-strong);
  border-radius: 28px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(11, 32, 62, .78), rgba(2, 8, 18, .92));
  box-shadow: var(--pk-shadow), var(--pk-glow);
  transform: perspective(1200px) rotateY(-5deg) rotateX(1deg);
  min-height: 410px;
}
.pk-dashboard::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -16px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 122, 255, .42);
  filter: blur(22px);
}
.pk-app {
  position: relative;
  display: grid;
  grid-template-columns: 174px 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(114, 188, 255, .14);
  background: rgba(1, 8, 20, .84);
  min-height: 376px;
}
.pk-app-sidebar {
  padding: 22px 16px;
  border-right: 1px solid rgba(114,188,255,.12);
  background: linear-gradient(180deg, rgba(10, 30, 58, .72), rgba(2, 10, 23, .96));
}
.pk-app-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #59bdff;
  margin-bottom: 20px;
}
.pk-app-logo img { width: 28px; height: 28px; object-fit: contain; }
.pk-app-nav { display: grid; gap: 8px; }
.pk-app-nav span {
  border-radius: 10px;
  padding: 9px 10px;
  color: #c8d6e8;
  font-size: 12px;
}
.pk-app-nav span:first-child {
  color: white;
  background: rgba(13, 141, 255, .16);
  border: 1px solid rgba(13,141,255,.18);
}
.pk-app-main { padding: 22px; }
.pk-app-top {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}
.pk-search {
  width: 180px;
  height: 30px;
  border: 1px solid rgba(128,185,255,.16);
  border-radius: 10px;
  color: var(--pk-soft);
  font-size: 12px;
  padding: 7px 12px;
  background: rgba(10,25,48,.64);
}
.pk-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pk-blue), var(--pk-blue-2));
  font-weight: 800;
  font-size: 11px;
}
.pk-app-title { margin: 0 0 16px; font-size: 21px; }
.pk-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pk-metric {
  min-height: 116px;
  border: 1px solid rgba(92, 171, 255, .16);
  border-radius: 14px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(16,43,80,.66), rgba(4,12,26,.78));
  position: relative;
  overflow: hidden;
}
.pk-metric::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: 72px;
  height: 72px;
  background: url('assets/logo-kern.png') center / contain no-repeat;
  opacity: .13;
}
.pk-metric b { display: block; font-size: 26px; margin-top: 10px; }
.pk-metric small { color: var(--pk-muted); }
.pk-metric a { display: block; margin-top: 12px; color: #0ab6ff; font-size: 12px; }

.pk-modules { padding: 56px 0 34px; }
.pk-card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.pk-card {
  position: relative;
  min-height: 250px;
  padding: 30px 26px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(9, 26, 52, .84), rgba(3, 12, 27, .9));
  border: 1px solid rgba(84, 168, 255, .18);
  box-shadow: 0 24px 56px rgba(0,0,0,.24);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.pk-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 0%, rgba(0, 155, 255, .16), transparent 36%);
  opacity: .0;
  transition: opacity .22s ease;
}
.pk-card:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 179, 255, .46);
  box-shadow: 0 26px 76px rgba(0, 97, 255, .18);
}
.pk-card:hover::before { opacity: 1; }
.pk-card > * { position: relative; }
.pk-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--pk-blue);
  filter: drop-shadow(0 0 14px rgba(0, 141, 255, .58));
}
.pk-card h3 { margin: 0 0 12px; font-size: 21px; letter-spacing: -.03em; }
.pk-card p { margin: 0 0 24px; color: var(--pk-muted); line-height: 1.55; }
.pk-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #09baff;
  font-weight: 700;
  font-size: 14px;
}
.pk-link::after { content: "→"; transition: transform .2s ease; }
.pk-link:hover::after { transform: translateX(4px); }

.pk-benefits {
  padding: 8px 0 80px;
}
.pk-benefit-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(84, 168, 255, .17);
  border-radius: 18px;
  background: rgba(5, 17, 35, .76);
  box-shadow: 0 24px 56px rgba(0,0,0,.22);
  overflow: hidden;
}
.pk-benefit {
  display: flex;
  gap: 16px;
  padding: 28px 26px;
  border-right: 1px solid rgba(84, 168, 255, .14);
}
.pk-benefit:last-child { border-right: 0; }
.pk-benefit h4 { margin: 0 0 8px; font-size: 16px; }
.pk-benefit p { margin: 0; color: var(--pk-muted); font-size: 14px; line-height: 1.5; }

.pk-split-section,
.pk-page-hero {
  padding: clamp(68px, 8vw, 112px) 0 48px;
}
.pk-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(520px, 1.1fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}
.pk-module-map,
.pk-process-strip,
.pk-resource-panel,
.pk-company-strip {
  border: 1px solid rgba(84,168,255,.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(8, 24, 48, .82), rgba(3, 12, 27, .92));
  box-shadow: var(--pk-shadow);
}
.pk-module-map { display: grid; grid-template-columns: .82fr 1.18fr; gap: 32px; padding: 34px; align-items: center; margin: 22px 0 80px; }
.pk-module-dots { position: relative; min-height: 178px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center; }
.pk-module-dots::before { content: ""; position: absolute; left: 8%; right: 8%; top: 50%; height: 2px; background: linear-gradient(90deg, transparent, var(--pk-blue), transparent); box-shadow: 0 0 24px rgba(0, 141, 255, .56); }
.pk-module-dot { position: relative; z-index: 2; display: grid; place-items: center; gap: 10px; color: #d9eaff; font-size: 13px; }
.pk-module-dot .pk-dot-icon { width: 72px; height: 72px; border-radius: 18px; display: grid; place-items: center; border: 1px solid rgba(74,170,255,.3); background: rgba(7,22,44,.92); box-shadow: 0 0 28px rgba(0, 117, 255, .16); }
.pk-module-dot.pk-core { transform: translateY(-16px); }
.pk-module-dot.pk-core .pk-dot-icon { width: 84px; height: 84px; border-color: rgba(0, 229, 255, .52); box-shadow: 0 0 48px rgba(0, 145, 255, .4); }
.pk-module-dot svg { width: 34px; height: 34px; color: var(--pk-blue); }

.pk-process-strip { padding: 26px 30px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; margin: 18px 0 36px; }
.pk-process-step { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; position: relative; }
.pk-process-step:not(:last-child)::after { content: "→"; position: absolute; right: -17px; top: 24px; color: var(--pk-blue); font-size: 24px; text-shadow: 0 0 16px rgba(0,141,255,.6); }
.pk-process-step h4 { margin: 0 0 7px; font-size: 16px; }
.pk-process-step p { margin: 0; color: var(--pk-muted); font-size: 13px; line-height: 1.45; }

.pk-company-visual {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
}
.pk-company-mark {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(0,141,255,.22), rgba(0,141,255,.02) 60%, transparent 62%);
  box-shadow: inset 0 0 0 1px rgba(0, 229, 255, .14), 0 0 80px rgba(0, 141, 255, .3);
}
.pk-company-mark img { width: 128px; filter: drop-shadow(0 0 28px rgba(0,141,255,.7)); }
.pk-orbit-card { position: absolute; width: 158px; min-height: 98px; border: 1px solid rgba(74, 170, 255, .28); border-radius: 16px; background: rgba(5, 18, 37, .78); padding: 17px; box-shadow: 0 0 28px rgba(0, 118, 255, .14); }
.pk-orbit-card b { display:block; margin-bottom: 8px; }
.pk-orbit-card svg { width: 32px; height: 32px; color: var(--pk-blue); }
.pk-orbit-a { right: 10%; top: 7%; }
.pk-orbit-b { right: 2%; bottom: 18%; }
.pk-orbit-c { left: 6%; bottom: 16%; }
.pk-orbit-d { left: 13%; top: 14%; }

.pk-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 38px 0 26px; }
.pk-info-card { border: 1px solid rgba(84,168,255,.18); border-radius: 18px; background: rgba(5, 18, 38, .76); padding: 28px; }
.pk-info-card h3 { margin: 0 0 14px; font-size: 22px; }
.pk-info-card p { color: var(--pk-muted); line-height: 1.62; }
.pk-check-list { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; color: #cbd8e8; font-size: 14px; }
.pk-check-list li::before { content: "✓"; color: var(--pk-blue); font-weight: 900; margin-right: 10px; }
.pk-contact-strip { display: grid; grid-template-columns: 1fr 1fr 1.4fr 1fr; gap: 0; margin: 26px 0 80px; }
.pk-contact-item { padding: 28px 30px; border-right: 1px solid rgba(84,168,255,.14); }
.pk-contact-item:last-child { border-right: 0; }
.pk-contact-item span { display: block; color: var(--pk-muted); margin-bottom: 6px; }
.pk-contact-item b, .pk-contact-item a { color: #0eb8ff; font-size: 18px; }

.pk-resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pk-resource-card { min-height: 188px; border: 1px solid rgba(84,168,255,.22); border-radius: 20px; background: linear-gradient(145deg, rgba(9,26,52,.85), rgba(4,13,28,.92)); padding: 28px; box-shadow: 0 0 34px rgba(0, 124, 255, .09); }
.pk-resource-card h3 { margin: 0 0 10px; }
.pk-resource-card p { color: var(--pk-muted); line-height: 1.52; }
.pk-resource-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 44px 0 80px; }
.pk-resource-panel { padding: 30px; }
.pk-list-row { display: grid; grid-template-columns: 1fr auto auto; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(84,168,255,.12); align-items: center; color: #dce8f8; }
.pk-list-row:last-child { border-bottom: 0; }
.pk-list-row small { color: var(--pk-muted); }
.pk-faq-row { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(84,168,255,.12); color: #dce8f8; }
.pk-faq-row:last-child { border-bottom: 0; }

.pk-footer { border-top: 1px solid rgba(84,168,255,.14); background: rgba(1, 7, 16, .64); padding: 34px 0; color: var(--pk-soft); }
.pk-footer-inner { display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; }

@media (max-width: 1260px) {
  :root { --pk-container: min(1120px, calc(100vw - 42px)); }
  .pk-card-grid { grid-template-columns: repeat(3, 1fr); }
  .pk-benefit-bar { grid-template-columns: repeat(2, 1fr); }
  .pk-benefit { border-bottom: 1px solid rgba(84,168,255,.14); }
  .pk-hero-grid, .pk-page-hero-grid { grid-template-columns: 1fr; }
  .pk-dashboard { transform: none; }
  .pk-info-grid { grid-template-columns: repeat(2, 1fr); }
  .pk-process-strip { grid-template-columns: 1fr; }
  .pk-process-step:not(:last-child)::after { display: none; }
}
@media (max-width: 820px) {
  :root { --pk-container: min(100% - 26px, 720px); }
  .pk-nav { height: auto; min-height: 78px; flex-wrap: wrap; padding: 16px 0; }
  .pk-logo { min-width: 190px; }
  .pk-logo img, .pk-logo svg { width: 190px; }
  .pk-menu { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; gap: 24px; padding-bottom: 4px; }
  .pk-menu a { padding: 10px 0 12px; white-space: nowrap; }
  .pk-menu a::after { bottom: 4px; }
  .pk-title { font-size: clamp(42px, 14vw, 70px); }
  .pk-app { grid-template-columns: 1fr; }
  .pk-app-sidebar { display: none; }
  .pk-metric-grid { grid-template-columns: 1fr; }
  .pk-card-grid, .pk-resource-grid, .pk-info-grid, .pk-resource-panels, .pk-contact-strip { grid-template-columns: 1fr; }
  .pk-module-map { grid-template-columns: 1fr; padding: 24px; }
  .pk-module-dots { grid-template-columns: repeat(2, 1fr); }
  .pk-benefit-bar { grid-template-columns: 1fr; }
  .pk-benefit { border-right: 0; }
  .pk-intro-logo { width: 92vw; }
  .pk-intro-word { font-size: 22px; }
}

.pk-footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.pk-footer-links a { color: #dce7f7; }
.pk-footer-contact { color: var(--pk-muted); }
.pk-footer-contact a { color: #0eb8ff; }
.pk-legal { padding: clamp(64px, 7vw, 104px) 0 80px; }
.pk-legal-grid { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(480px, 1.2fr); gap: 36px; align-items: start; }
.pk-legal-card { border: 1px solid rgba(84,168,255,.18); border-radius: 22px; background: linear-gradient(145deg, rgba(8, 24, 48, .82), rgba(3, 12, 27, .92)); box-shadow: var(--pk-shadow); padding: 34px; }
.pk-legal-card h2 { margin-top: 0; font-size: clamp(26px, 3vw, 38px); }
.pk-legal-card h3 { margin: 28px 0 10px; }
.pk-legal-card p,
.pk-legal-card address,
.pk-legal-card li { color: var(--pk-muted); line-height: 1.72; font-style: normal; }
.pk-legal-card a { color: #0eb8ff; }

@media (max-width: 980px) {
  .pk-logo-lockup { font-size: 27px; gap: 12px; }
  .pk-logo-mark { width: 48px; height: 60px; }
  .pk-dashboard { min-height: auto; padding: 12px; }
  .pk-app { min-height: 0; }
  .pk-app-main { min-width: 0; }
  .pk-metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pk-resource-panels { grid-template-columns: 1fr; }
  .pk-legal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .pk-logo { min-width: 0; }
  .pk-logo-lockup { font-size: 24px; }
  .pk-logo-mark { width: 42px; height: 52px; }
  .pk-intro-brand { display: grid; text-align: center; }
  .pk-intro-copy span { font-size: 16px; }
  .pk-metric-grid { grid-template-columns: 1fr; }
  .pk-dashboard { border-radius: 20px; }
  .pk-app-main { padding: 16px; }
  .pk-legal-card { padding: 24px; }
  .pk-list-row { grid-template-columns: 1fr; gap: 6px; }
  .pk-footer-inner { display: grid; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .pk-intro { display: none; }
  .pk-content-reveal { animation: none; }
}
.pk-hero-badge .pk-icon,
.pk-benefit .pk-icon,
.pk-process-step .pk-icon,
.pk-info-card > .pk-icon,
.pk-resource-card > .pk-icon,
.pk-contact-item .pk-icon {
  width: 34px;
  height: 34px;
  margin: 0;
  flex: 0 0 auto;
}
.pk-card .pk-icon { flex: 0 0 auto; }
.pk-dot-icon .pk-icon { margin: 0; }
.pk-orbit-card .pk-icon { margin: 0; }
.custom-logo { width: 230px; height: auto; display: block; }

.pk-solution-grid { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1260px) { .pk-solution-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .pk-solution-grid { grid-template-columns: 1fr; } }


/* V9: Startseiten-Hero stabilisieren
   Nur Layout/CSS-Fix: Der lange Hero-Titel darf nicht in die Dashboard-Grafik laufen. */
.pk-hero-grid > div:first-child {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 840px;
}
.pk-hero .pk-title {
  font-size: clamp(48px, 4.35vw, 76px);
  line-height: 1.04;
  letter-spacing: -.055em;
  max-width: min(850px, 100%);
}
.pk-hero .pk-lead { max-width: 660px; }
.pk-dashboard {
  z-index: 1;
  justify-self: end;
  width: min(100%, 760px);
  transform-origin: right center;
}
@media (min-width: 1261px) {
  .pk-hero-grid {
    grid-template-columns: minmax(0, .98fr) minmax(500px, .92fr);
    gap: clamp(34px, 4.2vw, 72px);
  }
}
@media (max-width: 1500px) and (min-width: 1261px) {
  .pk-hero .pk-title { font-size: clamp(46px, 4.1vw, 66px); }
  .pk-dashboard { width: min(100%, 700px); }
}
@media (max-width: 1260px) {
  .pk-hero-grid > div:first-child { max-width: 100%; }
  .pk-dashboard { justify-self: stretch; width: 100%; }
}
@media (max-width: 820px) {
  .pk-hero { padding-top: 56px; }
  .pk-hero .pk-title {
    font-size: clamp(40px, 12.5vw, 64px);
    line-height: 1.02;
    letter-spacing: -.055em;
  }
}
@media (max-width: 460px) {
  .pk-hero .pk-title { font-size: clamp(36px, 11vw, 52px); }
}


/* V10: Mobile-Optimierung für Intro + engeres Header-Lockup */
.pk-logo { min-width: 0; flex: 0 0 auto; }
.pk-logo-lockup { gap: 10px; font-size: 29px; }
.pk-logo-mark { width: 52px; height: 64px; }
.pk-menu { justify-content: flex-end; gap: clamp(20px, 3vw, 46px); }
@media (max-width: 980px) {
  .pk-logo-lockup { gap: 8px; font-size: 26px; }
  .pk-logo-mark { width: 46px; height: 58px; }
}
@media (max-width: 820px) {
  .pk-nav { gap: 12px; }
  .pk-logo { width: auto; }
  .pk-logo img.custom-logo { width: 190px; }
  .pk-intro { padding: 20px 14px; }
  .pk-intro-brand { max-width: min(92vw, 420px); gap: 14px; }
  .pk-intro-brand img { width: clamp(88px, 24vw, 124px); }
  .pk-intro-copy { gap: 10px; }
  .pk-intro-copy strong { font-size: clamp(36px, 11vw, 60px); text-align: center; }
  .pk-intro-copy span { padding-top: 10px; font-size: clamp(15px, 3.8vw, 20px); text-align: center; }
  .pk-intro-word { font-size: clamp(14px, 4vw, 19px); padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(44, 177, 255, .34); background: rgba(4, 18, 38, .58); backdrop-filter: blur(8px); }
  .pk-intro-word::before { display: none; }
  .pk-word-dms { left: 6vw; top: 17vh; }
  .pk-word-time { left: auto; right: 6vw; top: 17vh; }
  .pk-word-diktate { right: 5vw; top: 31vh; }
  .pk-word-erp { left: 7vw; bottom: 31vh; }
  .pk-word-fertigung { left: 6vw; bottom: 16vh; }
  .pk-word-workflows { right: 5vw; bottom: 16vh; }
}
@media (max-width: 620px) {
  .pk-logo-lockup { gap: 7px; font-size: 22px; }
  .pk-logo-mark { width: 40px; height: 50px; }
  .pk-logo img.custom-logo { width: 172px; }
  .pk-intro { animation-duration: .9s; }
  .pk-intro-brand { max-width: min(94vw, 320px); gap: 12px; }
  .pk-intro-brand img { width: 84px; }
  .pk-intro-copy strong { font-size: clamp(30px, 10.5vw, 44px); }
  .pk-intro-copy span { font-size: 14px; line-height: 1.4; }
  .pk-intro-word { font-size: 13px; padding: 7px 10px; }
  .pk-word-dms { left: 5vw; top: 16vh; }
  .pk-word-time { right: 5vw; top: 16vh; }
  .pk-word-diktate { right: 4vw; top: 30vh; }
  .pk-word-erp { left: 5vw; bottom: 30vh; }
  .pk-word-fertigung { left: 5vw; bottom: 14vh; }
  .pk-word-workflows { right: 4vw; bottom: 14vh; }
}
@media (max-width: 420px) {
  .pk-logo-lockup { font-size: 20px; }
  .pk-logo-mark { width: 36px; height: 46px; }
  .pk-intro-brand img { width: 76px; }
  .pk-intro-copy strong { font-size: 28px; }
  .pk-intro-word { font-size: 12px; }
}


/* V11: Modul-Unterseiten + Ressourcen-Layout-Fix */
.pk-module-back { margin-top: 28px; }
.pk-detail-panel {
  border: 1px solid rgba(84,168,255,.22);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(9,26,52,.88), rgba(3,12,27,.94));
  box-shadow: var(--pk-shadow), var(--pk-glow);
  padding: clamp(28px, 4vw, 46px);
  min-height: 360px;
  display: grid;
  align-content: center;
}
.pk-detail-panel h2 { margin: 18px 0 6px; font-size: clamp(30px, 4vw, 54px); letter-spacing: -.045em; }
.pk-detail-icon .pk-icon { width: 72px; height: 72px; margin: 0; }
.pk-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pk-card-grid-related { grid-template-columns: repeat(3, 1fr); }
.pk-related-modules { padding-top: 8px; }
.pk-resources-hero .pk-title { max-width: 740px; }
.pk-resources-hero-grid { align-items: start; }
.pk-resources-hero .pk-resource-grid { min-width: 0; }
@media (min-width: 1261px) {
  .pk-resources-hero-grid {
    grid-template-columns: minmax(0, .82fr) minmax(600px, 1.18fr);
    gap: clamp(36px, 4.5vw, 72px);
  }
  .pk-resources-hero .pk-title {
    font-size: clamp(42px, 3.9vw, 70px);
    line-height: 1.08;
    letter-spacing: -.055em;
  }
}
@media (max-width: 1500px) and (min-width: 1261px) {
  .pk-resources-hero-grid { grid-template-columns: minmax(0, .78fr) minmax(560px, 1.22fr); gap: 34px; }
  .pk-resources-hero .pk-title { font-size: clamp(38px, 3.55vw, 58px); }
  .pk-resource-card { padding: 24px; }
}
@media (max-width: 980px) {
  .pk-detail-grid, .pk-card-grid-related { grid-template-columns: 1fr; }
  .pk-detail-panel { min-height: auto; }
}


/* V12: Unterseiten-Hero stabilisieren - Text darf nicht in Karten/Bildbereiche laufen */
.pk-page-hero-grid > div:first-child {
  position: relative;
  z-index: 3;
  min-width: 0;
}
.pk-page-hero .pk-title {
  max-width: min(760px, 100%);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.pk-page-hero .pk-lead {
  max-width: 680px;
}
.pk-page-hero-grid > :last-child {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.pk-module-detail-hero .pk-title {
  max-width: min(700px, 100%);
  font-size: clamp(42px, 4.15vw, 78px);
}
.pk-module-detail-hero .pk-detail-panel {
  justify-self: end;
  width: min(100%, 720px);
}
.pk-resources-hero .pk-title {
  max-width: min(640px, 100%);
  font-size: clamp(40px, 3.85vw, 66px);
}
.pk-resources-hero .pk-lead {
  max-width: 600px;
}
.pk-resources-hero .pk-resource-grid {
  justify-self: end;
  width: min(100%, 780px);
}
@media (min-width: 1261px) {
  .pk-page-hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(480px, 1.02fr);
    gap: clamp(34px, 4.2vw, 70px);
    align-items: start;
  }
  .pk-module-detail-hero .pk-page-hero-grid {
    grid-template-columns: minmax(0, .88fr) minmax(460px, .98fr);
  }
  .pk-resources-hero-grid {
    grid-template-columns: minmax(0, .84fr) minmax(600px, 1.16fr);
  }
}
@media (max-width: 1500px) and (min-width: 1261px) {
  .pk-page-hero .pk-title { font-size: clamp(40px, 3.75vw, 64px); }
  .pk-module-detail-hero .pk-title { font-size: clamp(38px, 3.65vw, 60px); }
  .pk-module-detail-hero .pk-detail-panel { width: min(100%, 650px); }
  .pk-resources-hero .pk-title { font-size: clamp(36px, 3.2vw, 54px); }
  .pk-resources-hero .pk-resource-grid { width: min(100%, 720px); }
}
@media (max-width: 1260px) {
  .pk-page-hero .pk-title,
  .pk-module-detail-hero .pk-title,
  .pk-resources-hero .pk-title {
    max-width: 100%;
  }
  .pk-module-detail-hero .pk-detail-panel,
  .pk-resources-hero .pk-resource-grid {
    justify-self: stretch;
    width: 100%;
  }
}
@media (max-width: 820px) {
  .pk-page-hero .pk-title {
    font-size: clamp(36px, 11.4vw, 58px);
    line-height: 1.03;
  }
  .pk-resources-hero .pk-title,
  .pk-module-detail-hero .pk-title {
    font-size: clamp(34px, 10.8vw, 54px);
  }
}
@media (max-width: 460px) {
  .pk-page-hero .pk-title,
  .pk-resources-hero .pk-title,
  .pk-module-detail-hero .pk-title {
    font-size: clamp(30px, 10vw, 46px);
  }
}


/* V13: harte Responsive-Korrektur fuer Mobile-Header, Intro und Unterseiten-Heroes */
html,
body,
.pk-site,
.pk-page {
  max-width: 100%;
  overflow-x: hidden;
}
.pk-title,
.pk-section-title,
.pk-lead,
.pk-card h3,
.pk-resource-card h3,
.pk-detail-panel h2 {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.pk-header .pk-container,
.pk-page-hero .pk-container,
.pk-hero .pk-container {
  min-width: 0;
}
.pk-logo-lockup {
  flex-wrap: nowrap;
  white-space: nowrap;
}
.pk-logo .pk-logo-mark {
  flex: 0 0 auto;
}
.pk-logo .pk-logo-word {
  flex: 0 1 auto;
  min-width: 0;
}
@media (min-width: 1261px) {
  .pk-module-detail-hero .pk-page-hero-grid {
    grid-template-columns: minmax(0, .78fr) minmax(520px, 1.02fr);
    gap: clamp(58px, 6vw, 112px);
  }
  .pk-module-detail-hero .pk-title {
    font-size: clamp(38px, 3.15vw, 56px);
    line-height: 1.08;
    max-width: 620px;
  }
  .pk-module-detail-hero .pk-lead {
    max-width: 600px;
  }
  .pk-module-detail-hero .pk-detail-panel {
    width: min(100%, 660px);
  }
  .pk-resources-hero-grid {
    grid-template-columns: minmax(0, .76fr) minmax(600px, 1.24fr);
    gap: clamp(58px, 6vw, 112px);
  }
  .pk-resources-hero .pk-title {
    font-size: clamp(36px, 3vw, 52px);
    line-height: 1.1;
    max-width: 560px;
  }
  .pk-resources-hero .pk-lead {
    max-width: 540px;
  }
  .pk-resources-hero .pk-resource-grid {
    width: min(100%, 740px);
  }
}
@media (max-width: 1500px) and (min-width: 1261px) {
  .pk-module-detail-hero .pk-page-hero-grid,
  .pk-resources-hero-grid {
    gap: 64px;
  }
  .pk-module-detail-hero .pk-title {
    font-size: clamp(36px, 2.9vw, 50px);
    max-width: 560px;
  }
  .pk-resources-hero .pk-title {
    font-size: clamp(34px, 2.75vw, 48px);
    max-width: 520px;
  }
  .pk-resource-card {
    padding: 22px;
  }
}
@media (max-width: 1260px) {
  .pk-page-hero-grid,
  .pk-resources-hero-grid,
  .pk-module-detail-hero .pk-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pk-page-hero .pk-title,
  .pk-resources-hero .pk-title,
  .pk-module-detail-hero .pk-title {
    max-width: 100%;
  }
}
@media (max-width: 820px) {
  :root { --pk-container: calc(100vw - 32px); }
  .pk-header {
    position: sticky;
  }
  .pk-nav {
    min-height: 0;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 10px;
    padding: 12px 0 10px;
  }
  .pk-logo {
    min-width: 0 !important;
    width: auto !important;
    max-width: 100%;
    justify-self: center;
  }
  .pk-logo-lockup {
    gap: 8px !important;
    font-size: clamp(22px, 7.2vw, 30px) !important;
    justify-content: center;
  }
  .pk-logo .pk-logo-mark,
  .pk-logo-lockup .pk-logo-mark,
  .pk-logo img.pk-logo-mark {
    width: clamp(38px, 11vw, 50px) !important;
    height: clamp(46px, 13vw, 62px) !important;
    max-width: none !important;
  }
  .pk-logo img.custom-logo {
    width: min(220px, 78vw) !important;
    max-width: 100% !important;
  }
  .pk-menu {
    order: initial;
    width: 100%;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    gap: clamp(15px, 4.2vw, 28px);
    overflow-x: auto;
    padding: 0 4px 4px;
    font-size: clamp(12px, 3.3vw, 14px);
    scrollbar-width: none;
  }
  .pk-menu::-webkit-scrollbar { display: none; }
  .pk-menu a {
    flex: 0 0 auto;
    padding: 8px 0 10px;
  }
  .pk-hero,
  .pk-page-hero {
    padding-top: 42px;
  }
  .pk-hero .pk-title,
  .pk-page-hero .pk-title,
  .pk-resources-hero .pk-title,
  .pk-module-detail-hero .pk-title {
    font-size: clamp(30px, 8.2vw, 42px) !important;
    line-height: 1.11;
    letter-spacing: -.04em;
    max-width: 100%;
  }
  .pk-kicker {
    font-size: 11px;
    letter-spacing: .26em;
  }
  .pk-lead,
  .pk-hero .pk-lead,
  .pk-page-hero .pk-lead {
    font-size: clamp(16px, 4.2vw, 19px);
    line-height: 1.62;
    max-width: 100%;
  }
  .pk-hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pk-hero-badge {
    font-size: 16px;
  }
  .pk-dashboard,
  .pk-detail-panel,
  .pk-resource-grid {
    width: 100% !important;
    justify-self: stretch !important;
  }
  .pk-dashboard {
    transform: none !important;
    margin-top: 8px;
  }
  .pk-app-main {
    overflow: hidden;
  }
  .pk-intro {
    min-height: 100dvh;
    padding: 24px 18px;
  }
  .pk-intro-brand {
    width: min(88vw, 340px) !important;
    max-width: 88vw !important;
    display: grid !important;
    justify-items: center;
    text-align: center;
    gap: 12px;
  }
  .pk-intro-brand img {
    width: clamp(72px, 22vw, 104px) !important;
    border-radius: 20px;
  }
  .pk-intro-copy strong {
    font-size: clamp(30px, 10vw, 44px) !important;
    line-height: 1;
  }
  .pk-intro-copy span {
    font-size: clamp(13px, 3.8vw, 17px) !important;
    line-height: 1.35;
    padding-top: 10px;
  }
  .pk-intro-word {
    font-size: clamp(12px, 3.6vw, 16px) !important;
    padding: 6px 10px !important;
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .pk-word-dms { left: 5vw !important; top: 18vh !important; }
  .pk-word-time { right: 5vw !important; top: 18vh !important; left: auto !important; }
  .pk-word-diktate { right: 4vw !important; top: 34vh !important; }
  .pk-word-erp { left: 5vw !important; bottom: 34vh !important; }
  .pk-word-fertigung { left: 5vw !important; bottom: 18vh !important; }
  .pk-word-workflows { right: 4vw !important; bottom: 18vh !important; }
}
@media (max-width: 460px) {
  :root { --pk-container: calc(100vw - 28px); }
  .pk-logo-lockup {
    font-size: clamp(20px, 6.4vw, 25px) !important;
  }
  .pk-logo .pk-logo-mark,
  .pk-logo-lockup .pk-logo-mark,
  .pk-logo img.pk-logo-mark {
    width: 36px !important;
    height: 46px !important;
  }
  .pk-menu {
    justify-content: flex-start;
    padding-left: 2px;
    padding-right: 2px;
  }
  .pk-hero .pk-title,
  .pk-page-hero .pk-title,
  .pk-resources-hero .pk-title,
  .pk-module-detail-hero .pk-title {
    font-size: clamp(28px, 7.8vw, 36px) !important;
    letter-spacing: -.032em;
  }
  .pk-intro-brand {
    width: min(84vw, 300px) !important;
  }
  .pk-intro-brand img { width: 70px !important; }
  .pk-intro-copy strong { font-size: clamp(26px, 9vw, 36px) !important; }
  .pk-intro-word { max-width: 38vw; }
}


/* V14: Modul-Unterseiten ausbauen + mobile Stabilitaet finalisieren */
.pk-module-detail-hero .pk-page-hero-grid,
.pk-resources-hero-grid {
  align-items: start;
}
.pk-module-detail-hero .pk-title,
.pk-resources-hero .pk-title {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.pk-module-intro {
  padding: 10px 0 34px;
}
.pk-module-intro-box {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  border: 1px solid rgba(84,168,255,.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(8,24,48,.82), rgba(3,12,27,.92));
  box-shadow: var(--pk-shadow);
  padding: clamp(26px, 4vw, 42px);
}
.pk-module-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.pk-module-feature {
  border: 1px solid rgba(84,168,255,.18);
  border-radius: 18px;
  background: rgba(5,18,38,.76);
  padding: 26px;
  min-width: 0;
}
.pk-module-feature h3,
.pk-workflow-card h3,
.pk-connect-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: -.025em;
}
.pk-module-feature p,
.pk-workflow-card p,
.pk-connect-card p {
  margin: 0;
  color: var(--pk-muted);
  line-height: 1.62;
}
.pk-module-workflow {
  padding: 34px 0 20px;
}
.pk-workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.pk-workflow-card {
  position: relative;
  border: 1px solid rgba(84,168,255,.18);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(9,26,52,.78), rgba(3,12,27,.88));
  padding: 26px;
  min-width: 0;
}
.pk-workflow-step {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  margin-bottom: 16px;
  color: #e9f8ff;
  background: linear-gradient(135deg, var(--pk-blue), var(--pk-blue-2));
  box-shadow: 0 0 24px rgba(0,141,255,.38);
  font-weight: 800;
}
.pk-connect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.pk-connect-card {
  border: 1px solid rgba(84,168,255,.18);
  border-radius: 18px;
  background: rgba(5,18,38,.72);
  padding: 24px;
  min-width: 0;
}
.pk-detail-panel {
  overflow: hidden;
}
.pk-detail-panel .pk-check-list {
  max-width: 100%;
}
.pk-detail-panel .pk-check-list li {
  overflow-wrap: anywhere;
}
@media (min-width: 1261px) {
  .pk-module-detail-hero .pk-page-hero-grid {
    grid-template-columns: minmax(0, .82fr) minmax(460px, .9fr) !important;
    gap: clamp(72px, 7vw, 128px) !important;
  }
  .pk-module-detail-hero .pk-title {
    font-size: clamp(36px, 2.75vw, 50px) !important;
    max-width: 560px !important;
    line-height: 1.12 !important;
  }
  .pk-module-detail-hero .pk-lead {
    max-width: 560px !important;
  }
  .pk-module-detail-hero .pk-detail-panel {
    width: min(100%, 620px) !important;
  }
  .pk-resources-hero-grid {
    grid-template-columns: minmax(0, .7fr) minmax(620px, 1.3fr) !important;
    gap: clamp(70px, 7vw, 130px) !important;
  }
  .pk-resources-hero .pk-title {
    font-size: clamp(34px, 2.65vw, 48px) !important;
    max-width: 500px !important;
    line-height: 1.14 !important;
  }
  .pk-resources-hero .pk-lead { max-width: 500px !important; }
}
@media (max-width: 1260px) {
  .pk-module-intro-box,
  .pk-module-feature-grid,
  .pk-workflow-grid,
  .pk-connect-grid {
    grid-template-columns: 1fr;
  }
  .pk-module-detail-hero .pk-page-hero-grid,
  .pk-resources-hero-grid {
    gap: 34px !important;
  }
}
@media (max-width: 820px) {
  body { width: 100%; overflow-x: hidden; }
  .pk-header { overflow: hidden; }
  .pk-nav {
    width: 100%;
    max-width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 10px 0 8px !important;
  }
  .pk-logo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .pk-logo-lockup {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    max-width: calc(100vw - 28px) !important;
    font-size: clamp(21px, 6.2vw, 27px) !important;
    line-height: 1 !important;
  }
  .pk-logo-word { display: inline-block !important; min-width: 0 !important; }
  .pk-logo-lockup .pk-logo-mark,
  .pk-logo img.pk-logo-mark {
    width: clamp(34px, 9vw, 44px) !important;
    height: clamp(42px, 11vw, 54px) !important;
  }
  .pk-menu {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    gap: clamp(12px, 3.8vw, 24px) !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 8px 4px !important;
    font-size: clamp(12px, 3.2vw, 14px) !important;
  }
  .pk-menu a { padding: 7px 0 10px !important; white-space: nowrap !important; }
  .pk-hero,
  .pk-page-hero { padding-top: 34px !important; }
  .pk-hero-grid,
  .pk-page-hero-grid,
  .pk-resources-hero-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px !important;
  }
  .pk-hero .pk-title,
  .pk-page-hero .pk-title,
  .pk-resources-hero .pk-title,
  .pk-module-detail-hero .pk-title {
    font-size: clamp(27px, 7.5vw, 36px) !important;
    line-height: 1.13 !important;
    letter-spacing: -.028em !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }
  .pk-hero .pk-lead,
  .pk-page-hero .pk-lead {
    font-size: clamp(15px, 4vw, 18px) !important;
    line-height: 1.58 !important;
  }
  .pk-resource-grid,
  .pk-detail-panel,
  .pk-dashboard { width: 100% !important; max-width: 100% !important; }
  .pk-resource-card,
  .pk-card,
  .pk-detail-panel,
  .pk-info-card,
  .pk-module-feature,
  .pk-workflow-card,
  .pk-connect-card {
    padding: 22px !important;
  }
  .pk-intro { padding: 20px 16px !important; }
  .pk-intro-brand {
    width: min(82vw, 310px) !important;
    max-width: 82vw !important;
    transform: translateY(-1vh);
  }
  .pk-intro-brand img { width: clamp(68px, 18vw, 90px) !important; }
  .pk-intro-copy strong { font-size: clamp(27px, 8.5vw, 38px) !important; }
  .pk-intro-copy span { font-size: clamp(12px, 3.4vw, 15px) !important; }
  .pk-intro-word {
    font-size: clamp(11px, 3.2vw, 14px) !important;
    padding: 6px 9px !important;
    max-width: none !important;
  }
  .pk-word-dms { left: 7vw !important; top: 20vh !important; }
  .pk-word-time { right: 7vw !important; top: 20vh !important; left: auto !important; }
  .pk-word-diktate { right: 7vw !important; top: 35vh !important; }
  .pk-word-erp { left: 7vw !important; bottom: 35vh !important; }
  .pk-word-fertigung { left: 7vw !important; bottom: 20vh !important; }
  .pk-word-workflows { right: 7vw !important; bottom: 20vh !important; }
}
@media (max-width: 460px) {
  .pk-logo-lockup { font-size: clamp(19px, 5.6vw, 23px) !important; }
  .pk-logo-lockup .pk-logo-mark,
  .pk-logo img.pk-logo-mark { width: 32px !important; height: 40px !important; }
  .pk-menu { justify-content: flex-start !important; }
  .pk-hero .pk-title,
  .pk-page-hero .pk-title,
  .pk-resources-hero .pk-title,
  .pk-module-detail-hero .pk-title { font-size: clamp(26px, 7vw, 32px) !important; }
  .pk-intro-brand { width: min(78vw, 280px) !important; max-width: 78vw !important; }
  .pk-intro-brand img { width: 64px !important; }
  .pk-intro-word { font-size: 11px !important; padding: 5px 8px !important; }
  .pk-word-dms { left: 6vw !important; top: 21vh !important; }
  .pk-word-time { right: 6vw !important; top: 21vh !important; }
  .pk-word-diktate { right: 6vw !important; top: 36vh !important; }
  .pk-word-erp { left: 6vw !important; bottom: 36vh !important; }
  .pk-word-fertigung { left: 6vw !important; bottom: 21vh !important; }
  .pk-word-workflows { right: 6vw !important; bottom: 21vh !important; }
}


/* V15: Startseite inhaltlich schaerfen + Zielgruppen/Warum Prozesskern */
.pk-section-head {
  max-width: 880px;
  margin-bottom: 28px;
}
.pk-home-focus {
  padding: clamp(40px, 6vw, 76px) 0 34px;
}
.pk-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.pk-focus-card,
.pk-audience-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(84,168,255,.18);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(9,26,52,.80), rgba(3,12,27,.92));
  box-shadow: 0 24px 56px rgba(0,0,0,.22);
  padding: 26px;
  overflow: hidden;
}
.pk-focus-card::before,
.pk-audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 0%, rgba(0, 155, 255, .14), transparent 38%);
  opacity: .88;
  pointer-events: none;
}
.pk-focus-card > *,
.pk-audience-card > * { position: relative; }
.pk-focus-card .pk-icon,
.pk-audience-card .pk-icon {
  width: 38px;
  height: 38px;
  margin: 0 0 18px;
}
.pk-focus-card h3,
.pk-audience-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -.028em;
}
.pk-focus-card p,
.pk-audience-card p {
  margin: 0;
  color: var(--pk-muted);
  line-height: 1.62;
}
.pk-home-audience {
  padding: 30px 0 22px;
}
.pk-audience-box {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  border: 1px solid rgba(84,168,255,.18);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(8,24,48,.82), rgba(3,12,27,.92));
  box-shadow: var(--pk-shadow);
  padding: clamp(28px, 4vw, 44px);
}
.pk-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.pk-audience-card { padding: 22px; }
.pk-audience-card h3 { font-size: 18px; }
@media (max-width: 1260px) {
  .pk-focus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pk-audience-box { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .pk-home-focus { padding-top: 34px; }
  .pk-focus-grid,
  .pk-audience-grid { grid-template-columns: 1fr; }
  .pk-focus-card,
  .pk-audience-card { padding: 22px; }
  .pk-section-head { margin-bottom: 22px; }
}


/* V16: Produkt-Einblicke + Ressourcen/FAQ */
.pk-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 34px 0 38px;
}
.pk-insight-card {
  position: relative;
  min-height: 290px;
  border: 1px solid rgba(84,168,255,.20);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(9,26,52,.84), rgba(3,12,27,.94));
  box-shadow: 0 24px 58px rgba(0,0,0,.22);
  padding: 26px;
  overflow: hidden;
}
.pk-insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 0%, rgba(0, 155, 255, .18), transparent 40%);
  pointer-events: none;
}
.pk-insight-card > * { position: relative; }
.pk-insight-card h3 { margin: 18px 0 10px; font-size: 22px; letter-spacing: -.032em; }
.pk-insight-card p { margin: 0 0 20px; color: var(--pk-muted); line-height: 1.6; }
.pk-insight-card .pk-icon { width: 40px; height: 40px; margin: 0; }
.pk-ui-mini {
  margin-top: 22px;
  border: 1px solid rgba(84,168,255,.16);
  border-radius: 16px;
  background: rgba(1, 9, 22, .74);
  padding: 14px;
  display: grid;
  gap: 10px;
}
.pk-ui-bar,
.pk-ui-row,
.pk-ui-pill {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,141,255,.56), rgba(0,229,255,.24));
  box-shadow: 0 0 18px rgba(0,141,255,.18);
}
.pk-ui-bar { height: 10px; width: 68%; }
.pk-ui-row { height: 9px; width: 100%; opacity: .52; }
.pk-ui-row:nth-child(3) { width: 78%; }
.pk-ui-row:nth-child(4) { width: 88%; }
.pk-ui-pill { height: 30px; width: 46%; border-radius: 12px; opacity: .72; }
.pk-resource-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.pk-resource-action {
  border: 1px solid rgba(84,168,255,.18);
  border-radius: 18px;
  background: rgba(5, 18, 38, .72);
  padding: 22px;
}
.pk-resource-action h3 { margin: 0 0 9px; }
.pk-resource-action p { margin: 0 0 14px; color: var(--pk-muted); line-height: 1.55; }
.pk-faq-list { display: grid; gap: 14px; }
.pk-faq-item {
  border: 1px solid rgba(84,168,255,.15);
  border-radius: 16px;
  background: rgba(5, 18, 38, .66);
  padding: 20px 22px;
}
.pk-faq-item h3 { margin: 0 0 8px; font-size: 17px; }
.pk-faq-item p { margin: 0; color: var(--pk-muted); line-height: 1.58; }
.pk-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.pk-guide-step {
  border: 1px solid rgba(84,168,255,.16);
  border-radius: 18px;
  background: rgba(5, 18, 38, .68);
  padding: 22px;
}
.pk-guide-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--pk-blue), var(--pk-blue-2));
  font-weight: 850;
  margin-bottom: 14px;
}
.pk-guide-step h3 { margin: 0 0 8px; font-size: 18px; }
.pk-guide-step p { margin: 0; color: var(--pk-muted); line-height: 1.55; }
.pk-notice-panel {
  border: 1px solid rgba(84,168,255,.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(8,24,48,.82), rgba(3,12,27,.92));
  box-shadow: var(--pk-shadow);
  padding: clamp(26px, 4vw, 38px);
  margin: 20px 0 70px;
}
.pk-notice-panel p { color: var(--pk-muted); line-height: 1.68; }
@media (max-width: 1260px) {
  .pk-insight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pk-guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .pk-insight-grid,
  .pk-resource-actions,
  .pk-guide-grid { grid-template-columns: 1fr; }
  .pk-insight-card,
  .pk-resource-action,
  .pk-guide-step { padding: 22px; }
}


/* V17: Unternehmen-Seite persönlicher und vertrauensstärker */
.pk-company-hero .pk-title {
  max-width: min(760px, 100%);
}
.pk-company-intro-panel,
.pk-trust-band,
.pk-company-work-grid {
  border: 1px solid rgba(84,168,255,.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(8, 24, 48, .82), rgba(3, 12, 27, .92));
  box-shadow: var(--pk-shadow);
}
.pk-company-intro-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: end;
  padding: clamp(28px, 4.5vw, 52px);
  margin-bottom: 34px;
}
.pk-company-card {
  min-height: 360px;
}
.pk-company-work-section,
.pk-company-trust-section {
  padding-top: 22px;
}
.pk-company-work-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 4.5vw, 58px);
  align-items: center;
  padding: clamp(28px, 4.5vw, 52px);
}
.pk-workflow-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.pk-workflow-card {
  position: relative;
  min-height: 150px;
  border: 1px solid rgba(84,168,255,.18);
  border-radius: 18px;
  padding: 24px;
  background: rgba(5, 18, 38, .76);
  overflow: hidden;
}
.pk-workflow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(0, 155, 255, .15), transparent 42%);
  pointer-events: none;
}
.pk-workflow-card span {
  position: relative;
  display: inline-flex;
  color: #0eb8ff;
  font-weight: 850;
  font-size: 18px;
  margin-bottom: 12px;
}
.pk-workflow-card p {
  position: relative;
  margin: 0;
  color: var(--pk-muted);
  line-height: 1.62;
}
.pk-trust-band {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(28px, 4.5vw, 52px);
  align-items: start;
}
.pk-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.pk-trust-item {
  border-left: 2px solid rgba(14, 184, 255, .72);
  padding: 4px 0 4px 20px;
}
.pk-trust-item b {
  display: block;
  color: #f4f8ff;
  font-size: 18px;
  margin-bottom: 8px;
}
.pk-trust-item p {
  margin: 0;
  color: var(--pk-muted);
  line-height: 1.58;
}
.pk-company-contact-strip {
  margin-top: 0;
}
@media (max-width: 980px) {
  .pk-company-intro-panel,
  .pk-company-work-grid,
  .pk-trust-band {
    grid-template-columns: 1fr;
  }
  .pk-company-card { min-height: auto; }
}
@media (max-width: 620px) {
  .pk-workflow-cards,
  .pk-trust-grid {
    grid-template-columns: 1fr;
  }
  .pk-company-intro-panel,
  .pk-company-work-grid,
  .pk-trust-band {
    padding: 24px;
  }
  .pk-workflow-card { min-height: auto; }
}


/* V18: finale Mobile-/Tablet-Stabilisierung ueber alle Seiten */
html, body { width: 100%; max-width: 100%; overflow-x: clip; }
.pk-site * { min-width: 0; }
.pk-title,
.pk-section-title,
.pk-lead,
.pk-card h3,
.pk-resource-card h3,
.pk-detail-panel h2,
.pk-info-card h3,
.pk-insight-card h3,
.pk-faq-item h3,
.pk-company-card h3,
.pk-trust-item b {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.pk-page-hero-grid,
.pk-hero-grid,
.pk-module-map,
.pk-company-intro-panel,
.pk-company-work-grid,
.pk-trust-band,
.pk-resource-panels,
.pk-contact-strip,
.pk-benefit-bar,
.pk-card-grid,
.pk-resource-grid,
.pk-insight-grid,
.pk-guide-grid,
.pk-focus-grid,
.pk-audience-grid,
.pk-detail-grid,
.pk-card-grid-related {
  max-width: 100%;
}
.pk-dashboard,
.pk-app,
.pk-detail-panel,
.pk-resource-card,
.pk-card,
.pk-info-card,
.pk-insight-card,
.pk-resource-panel,
.pk-notice-panel,
.pk-company-intro-panel,
.pk-company-work-grid,
.pk-trust-band {
  max-width: 100%;
}
.pk-menu {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.pk-menu::-webkit-scrollbar { height: 4px; }
.pk-menu::-webkit-scrollbar-thumb { background: rgba(84,168,255,.28); border-radius: 999px; }
@media (min-width: 1261px) and (max-width: 1560px) {
  :root { --pk-container: min(1220px, calc(100vw - 48px)); }
  .pk-title { font-size: clamp(44px, 4.2vw, 72px); }
  .pk-page-hero .pk-title { font-size: clamp(40px, 3.65vw, 62px); }
  .pk-hero-grid,
  .pk-page-hero-grid { gap: clamp(28px, 3.2vw, 54px); }
  .pk-dashboard { width: min(100%, 660px); }
  .pk-card-grid { gap: 18px; }
  .pk-card { padding: 26px 22px; }
}
@media (max-width: 1260px) {
  .pk-header { position: sticky; }
  .pk-nav { justify-content: flex-start; }
  .pk-menu { margin-left: auto; }
  .pk-page-hero-grid,
  .pk-hero-grid,
  .pk-resources-hero-grid,
  .pk-module-detail-hero .pk-page-hero-grid { grid-template-columns: 1fr !important; }
  .pk-page-hero-grid > div:first-child,
  .pk-hero-grid > div:first-child { max-width: 100%; }
  .pk-dashboard,
  .pk-detail-panel,
  .pk-resource-grid { justify-self: stretch !important; width: 100% !important; }
  .pk-page-hero { padding-top: 64px; }
  .pk-page-hero .pk-title { max-width: 100%; }
}
@media (max-width: 980px) {
  :root { --pk-container: min(100% - 34px, 860px); }
  .pk-nav { gap: 18px; }
  .pk-logo-lockup { white-space: nowrap; }
  .pk-menu { gap: 22px; font-size: 14px; }
  .pk-title { letter-spacing: -.048em; }
  .pk-lead { font-size: 17px; }
  .pk-card-grid,
  .pk-resource-grid,
  .pk-insight-grid,
  .pk-focus-grid,
  .pk-audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pk-benefit-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pk-module-dots { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pk-app { grid-template-columns: 1fr; }
  .pk-app-sidebar { display: none; }
  .pk-app-main { padding: 18px; }
  .pk-metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pk-resource-panels,
  .pk-company-intro-panel,
  .pk-company-work-grid,
  .pk-trust-band,
  .pk-legal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  :root { --pk-container: min(100% - 24px, 680px); }
  .pk-header { position: sticky; }
  .pk-nav {
    min-height: 0;
    height: auto;
    padding: 12px 0 10px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }
  .pk-logo {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    min-width: 0 !important;
  }
  .pk-logo-lockup {
    gap: 8px;
    font-size: clamp(20px, 6vw, 25px);
    max-width: 100%;
  }
  .pk-logo-mark { width: 38px; height: 48px; flex: 0 0 auto; }
  .pk-logo-word { line-height: 1; }
  .pk-logo img.custom-logo { width: min(178px, 56vw); }
  .pk-menu {
    order: initial;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding: 0 0 6px;
    font-size: 13px;
  }
  .pk-menu a { padding: 8px 0 10px; flex: 0 0 auto; }
  .pk-menu a::after { bottom: 2px; }
  .pk-hero { padding-top: 44px; }
  .pk-page-hero { padding-top: 44px; }
  .pk-kicker { font-size: 11px; letter-spacing: .24em; margin-bottom: 16px; }
  .pk-title,
  .pk-hero .pk-title,
  .pk-page-hero .pk-title,
  .pk-resources-hero .pk-title,
  .pk-module-detail-hero .pk-title {
    font-size: clamp(30px, 10.4vw, 48px) !important;
    line-height: 1.07 !important;
    letter-spacing: -.043em !important;
    max-width: 100% !important;
  }
  .pk-lead,
  .pk-hero .pk-lead,
  .pk-page-hero .pk-lead,
  .pk-resources-hero .pk-lead {
    font-size: 16px;
    line-height: 1.56;
    max-width: 100% !important;
  }
  .pk-section-title { font-size: clamp(25px, 8vw, 38px); line-height: 1.12; }
  .pk-card-grid,
  .pk-resource-grid,
  .pk-insight-grid,
  .pk-focus-grid,
  .pk-audience-grid,
  .pk-info-grid,
  .pk-detail-grid,
  .pk-card-grid-related,
  .pk-guide-grid,
  .pk-resource-actions,
  .pk-workflow-cards,
  .pk-trust-grid,
  .pk-benefit-bar,
  .pk-contact-strip { grid-template-columns: 1fr !important; }
  .pk-card,
  .pk-resource-card,
  .pk-insight-card,
  .pk-info-card,
  .pk-detail-panel,
  .pk-resource-panel,
  .pk-notice-panel,
  .pk-company-intro-panel,
  .pk-company-work-grid,
  .pk-trust-band,
  .pk-legal-card { padding: 22px !important; border-radius: 18px; }
  .pk-card,
  .pk-resource-card,
  .pk-insight-card,
  .pk-detail-panel { min-height: auto !important; }
  .pk-dashboard { padding: 10px; border-radius: 20px; transform: none !important; }
  .pk-app-main { padding: 15px; }
  .pk-app-top { justify-content: flex-start; flex-wrap: wrap; }
  .pk-search { width: min(100%, 220px); }
  .pk-metric-grid { grid-template-columns: 1fr !important; gap: 10px; }
  .pk-metric { min-height: 0; padding: 14px; }
  .pk-module-map { grid-template-columns: 1fr !important; padding: 22px !important; margin-bottom: 48px; }
  .pk-module-dots { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 14px; }
  .pk-module-dots::before { display: none; }
  .pk-module-dot.pk-core { transform: none; }
  .pk-module-dot .pk-dot-icon { width: 62px; height: 62px; }
  .pk-process-strip { grid-template-columns: 1fr !important; padding: 22px; }
  .pk-process-step:not(:last-child)::after { display: none; }
  .pk-benefit { border-right: 0; border-bottom: 1px solid rgba(84,168,255,.14); }
  .pk-benefit:last-child { border-bottom: 0; }
  .pk-list-row { grid-template-columns: 1fr !important; gap: 6px; }
  .pk-footer-inner { display: grid; gap: 14px; }
  .pk-footer-links { gap: 14px; }
  .pk-intro { padding: 16px 12px; }
  .pk-intro-brand { display: grid; justify-items: center; text-align: center; max-width: min(94vw, 330px); gap: 12px; }
  .pk-intro-brand img { width: clamp(70px, 21vw, 92px); }
  .pk-intro-copy strong { font-size: clamp(28px, 9.8vw, 42px); text-align: center; }
  .pk-intro-copy span { font-size: 14px; line-height: 1.35; padding-top: 9px; }
  .pk-intro-word { font-size: 12px; padding: 6px 9px; border-radius: 999px; }
  .pk-word-dms { left: 5vw; top: 14vh; }
  .pk-word-time { right: 5vw; top: 14vh; }
  .pk-word-diktate { right: 4vw; top: 28vh; }
  .pk-word-erp { left: 5vw; bottom: 30vh; }
  .pk-word-fertigung { left: 5vw; bottom: 13vh; }
  .pk-word-workflows { right: 4vw; bottom: 13vh; }
}
@media (max-width: 380px) {
  :root { --pk-container: min(100% - 20px, 360px); }
  .pk-logo-lockup { font-size: 19px; gap: 6px; }
  .pk-logo-mark { width: 34px; height: 43px; }
  .pk-menu { gap: 15px; font-size: 12.5px; }
  .pk-title,
  .pk-hero .pk-title,
  .pk-page-hero .pk-title,
  .pk-resources-hero .pk-title,
  .pk-module-detail-hero .pk-title { font-size: 29px !important; }
  .pk-card,
  .pk-resource-card,
  .pk-insight-card,
  .pk-info-card,
  .pk-detail-panel,
  .pk-resource-panel,
  .pk-notice-panel,
  .pk-company-intro-panel,
  .pk-company-work-grid,
  .pk-trust-band,
  .pk-legal-card { padding: 18px !important; }
}


/* V20: SEO/Feinschliff, Fokus- und Lade-/Layout-Details */
.pk-skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: #0a8dff;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .36);
  transition: transform .18s ease;
}
.pk-skip-link:focus { transform: translateY(0); outline: 2px solid #0de5ff; outline-offset: 3px; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--pk-cyan);
  outline-offset: 4px;
  border-radius: 8px;
}
.pk-card,
.pk-resource-card,
.pk-info-card,
.pk-detail-panel,
.pk-benefit-bar,
.pk-module-map,
.pk-resource-panel,
.pk-company-strip {
  contain: layout paint;
}
.pk-title,
.pk-section-title,
.pk-card h3,
.pk-resource-card h3,
.pk-info-card h3 {
  text-wrap: balance;
}
.pk-lead,
.pk-section-copy,
.pk-card p,
.pk-resource-card p,
.pk-info-card p {
  text-wrap: pretty;
}
.pk-footer a:hover,
.pk-link:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 820px) {
  .pk-page { overflow-x: clip; }
  .pk-header { position: sticky; }
  .pk-footer-inner { align-items: start; }
}
@media print {
  .pk-header,
  .pk-intro,
  .pk-footer,
  .pk-dashboard,
  .pk-company-visual { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .pk-page, .pk-container { width: auto !important; max-width: none !important; }
  a { color: #000 !important; text-decoration: underline; }
}


/* V21: Nummern-Badges in Ablauf-/Guide-Karten sauber zentrieren */
.pk-workflow-step,
.pk-guide-number {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  padding: 0 !important;
  border-radius: 999px;
  text-align: center;
  line-height: 1 !important;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0 !important;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  overflow: hidden;
}
.pk-workflow-step {
  margin: 0 0 16px;
}
.pk-guide-number {
  margin: 0 0 14px;
}
@media (max-width: 620px) {
  .pk-workflow-step,
  .pk-guide-number {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    font-size: 14px;
  }
}


/* V23: PDF-Handouts im Ressourcenbereich */
.pk-resource-action > .pk-icon { width: 34px; height: 34px; margin: 0 0 14px; color: var(--pk-blue); }
.pk-resource-card .pk-link, .pk-resource-action .pk-link { margin-top: 6px; }
@media (min-width: 821px) { .pk-resource-actions { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 820px) { .pk-resource-action > .pk-icon { width: 30px; height: 30px; } }


/* V25: PDF-Download-Verhalten behalten + Produkt-Einblicke neutralisieren */
.pk-download-link::before {
  content: "↓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  margin-right: 4px;
  background: rgba(0, 141, 255, .16);
  border: 1px solid rgba(0, 188, 255, .28);
  color: #8ee8ff;
  font-size: 13px;
  line-height: 1;
}
.pk-screenshot-panel {
  border: 1px solid rgba(84,168,255,.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(8, 24, 48, .82), rgba(3, 12, 27, .94));
  box-shadow: var(--pk-shadow);
  padding: clamp(24px, 4vw, 38px);
  margin-bottom: 38px;
}
.pk-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 28px;
}
.pk-shot-card {
  border: 1px solid rgba(84,168,255,.20);
  border-radius: 22px;
  background: rgba(5, 18, 38, .72);
  padding: 22px;
  overflow: hidden;
  box-shadow: 0 24px 58px rgba(0,0,0,.22);
}
.pk-shot-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  letter-spacing: -.035em;
}
.pk-shot-card p { color: var(--pk-muted); line-height: 1.6; margin: 0; }
.pk-shot-visual {
  min-height: 248px;
  border-radius: 18px;
  border: 1px solid rgba(84,168,255,.22);
  background:
    radial-gradient(circle at 78% 18%, rgba(0,141,255,.24), transparent 36%),
    linear-gradient(145deg, rgba(4, 16, 34, .98), rgba(1, 8, 20, .98));
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02), 0 0 38px rgba(0, 141, 255, .12);
}
.pk-shot-topbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(84,168,255,.13);
  background: rgba(7, 20, 40, .74);
}
.pk-shot-dot { width: 8px; height: 8px; border-radius: 99px; background: rgba(0, 168, 255, .62); box-shadow: 0 0 14px rgba(0,168,255,.5); }
.pk-shot-search { margin-left: auto; width: 38%; height: 18px; border-radius: 99px; background: rgba(130, 178, 232, .12); border: 1px solid rgba(130,178,232,.12); }
.pk-shot-body {
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 206px;
}
.pk-shot-side {
  border-right: 1px solid rgba(84,168,255,.12);
  padding: 16px 12px;
  display: grid;
  gap: 10px;
  align-content: start;
  background: rgba(2, 11, 25, .46);
}
.pk-shot-navline { height: 12px; border-radius: 99px; background: rgba(130,178,232,.17); }
.pk-shot-navline:nth-child(1) { width: 86%; background: rgba(0,141,255,.26); }
.pk-shot-navline:nth-child(2) { width: 72%; }
.pk-shot-navline:nth-child(3) { width: 78%; }
.pk-shot-navline:nth-child(4) { width: 62%; }
.pk-shot-main { padding: 16px; display: grid; gap: 14px; }
.pk-shot-titleline { width: 46%; height: 18px; border-radius: 99px; background: rgba(245, 248, 255, .78); opacity: .92; }
.pk-shot-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.pk-shot-tile {
  min-height: 70px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(16,43,80,.74), rgba(4,12,26,.88));
  border: 1px solid rgba(84,168,255,.16);
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.pk-shot-tile::before { content:""; display:block; width: 46%; height: 9px; border-radius: 99px; background: rgba(166, 206, 255, .24); margin-bottom: 14px; }
.pk-shot-tile::after { content:""; display:block; width: 34px; height: 18px; border-radius: 6px; background: rgba(0, 141, 255, .72); box-shadow: 0 0 18px rgba(0,141,255,.35); }
.pk-shot-wide { min-height: 54px; border-radius: 14px; background: rgba(0,141,255,.10); border: 1px solid rgba(84,168,255,.14); }
.pk-shot-list { display: grid; gap: 10px; }
.pk-shot-list span { display: block; height: 12px; border-radius: 99px; background: rgba(166, 206, 255, .16); }
.pk-shot-list span:nth-child(2) { width: 86%; }
.pk-shot-list span:nth-child(3) { width: 68%; }
.pk-shot-mode-dms .pk-shot-cards { grid-template-columns: 1.25fr .75fr; }
.pk-shot-mode-dms .pk-shot-tile { min-height: 154px; }
.pk-shot-mode-time .pk-shot-wide { min-height: 122px; background: linear-gradient(90deg, rgba(0,141,255,.18), rgba(0,229,255,.08)); }
.pk-shot-mode-production .pk-shot-main { grid-template-columns: 1.2fr .8fr; }
.pk-shot-mode-production .pk-shot-wide { min-height: 150px; }
.pk-shot-labels {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.pk-shot-labels span {
  border-radius: 999px;
  border: 1px solid rgba(84,168,255,.18);
  background: rgba(0,141,255,.08);
  color: #bfe8ff;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 750;
}
.pk-replace-note {
  border-left: 3px solid rgba(0, 188, 255, .78);
  background: rgba(0, 141, 255, .08);
  border-radius: 14px;
  padding: 18px 20px;
  color: var(--pk-muted);
  line-height: 1.65;
}
@media (max-width: 980px) {
  .pk-shot-grid { grid-template-columns: 1fr; }
  .pk-shot-body { grid-template-columns: 1fr; }
  .pk-shot-side { display: none; }
  .pk-shot-visual { min-height: 230px; }
  .pk-shot-mode-production .pk-shot-main { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pk-shot-cards { grid-template-columns: 1fr; }
  .pk-shot-card { padding: 18px; }
  .pk-shot-visual { min-height: 210px; }
}


/* V25: Livegang-Vorbereitung und neutrale Produkt-Einblicke */
.pk-notice-panel .pk-guide-grid { margin-top: 26px; }
.pk-insights-hero .pk-lead { max-width: 720px; }
.pk-replace-note {
  border: 1px solid rgba(84,168,255,.18);
  border-radius: 18px;
  background: rgba(4, 16, 34, .72);
  color: var(--pk-muted);
  line-height: 1.72;
  padding: clamp(22px, 3vw, 32px);
}
@media (max-width: 820px) {
  .pk-shot-grid { grid-template-columns: 1fr; }
  .pk-shot-visual { min-height: 210px; }
  .pk-shot-body { grid-template-columns: 86px 1fr; }
}
