:root {
  --ink: #0F1419;
  --ink-2: #36404B;
  --ink-3: #6A727D;
  --ink-4: #9CA3AE;
  --line: #E5E7EB;
  --line-2: #F0F2F5;
  --bg: #FFFFFF;
  --bg-2: #FAFAF9;
  --bg-3: #F5F5F4;
  --accent: #B8231C;
  --accent-dark: #8C1A14;
  --accent-tint: #FCEDEC;
  --accent-2: #1F4E79;
  --gold: #B8862C;
  --green: #2D7A4F;
  --orange: #C77A2C;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; color: var(--ink-2); }

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* ─────────────── TOP BAR ─────────────── */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 60;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.95); }
.topbar a:hover { color: #fff; }
.topbar-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-meta span { color: rgba(255,255,255,0.55); }

/* ─────────────── NAV ─────────────── */
.nav {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}
.footer-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 6px;
  transition: background .15s ease, color .15s ease;
}
.nav-menu > li > a:hover { background: var(--bg-3); color: var(--ink); }
.nav-menu > li.has-dropdown > a::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.5;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(15,20,25,0.08);
  padding: 8px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all .15s ease;
  z-index: 60;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.dropdown a:hover { background: var(--bg-3); color: var(--ink); }
.dropdown-section {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-4);
  padding: 8px 12px 4px;
  font-weight: 600;
}

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-login {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  padding: 8px 12px;
}
.nav-login:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
  font-family: inherit;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { background: var(--bg-3); border-color: var(--ink-4); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: #2D3748; }
.btn-light { background: white; color: var(--ink); }
.btn-light:hover { background: var(--bg-2); }
.btn-lg { padding: 13px 24px; font-size: 15px; }

.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px;
  cursor: pointer;
  border-radius: 6px;
}
.nav-burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  margin: 4px 0;
}

/* ════════════════ HERO V3 ════════════════ */
.hero {
  position: relative;
  background: var(--ink);
  color: white;
  padding: 80px 0 64px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: contrast(1.1) brightness(0.95) saturate(1.1);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15,20,25,0.35) 0%,
    rgba(15,20,25,0.55) 50%,
    rgba(15,20,25,0.85) 100%);
}

/* Sparks */
.hero-sparks {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.spark {
  position: absolute;
  bottom: -10px;
  width: 2px;
  height: 2px;
  background: #FFB342;
  border-radius: 50%;
  box-shadow: 0 0 8px 1px rgba(255,179,66,0.7);
  animation: spark-fall var(--d, 5s) ease-in var(--delay, 0s) infinite;
  opacity: 0;
}
.spark:nth-child(1) { left: 6%; --d: 4.5s; --delay: 0s; }
.spark:nth-child(2) { left: 14%; --d: 6.2s; --delay: 1.1s; }
.spark:nth-child(3) { left: 22%; --d: 5.4s; --delay: 2.4s; }
.spark:nth-child(4) { left: 35%; --d: 7s; --delay: 0.6s; }
.spark:nth-child(5) { left: 43%; --d: 4.8s; --delay: 3.2s; }
.spark:nth-child(6) { left: 56%; --d: 6.5s; --delay: 1.7s; background: #FFD980; }
.spark:nth-child(7) { left: 64%; --d: 5.1s; --delay: 0.4s; }
.spark:nth-child(8) { left: 75%; --d: 7.4s; --delay: 2.8s; }
.spark:nth-child(9) { left: 82%; --d: 4.6s; --delay: 1.4s; background: #FFD980; }
.spark:nth-child(10) { left: 92%; --d: 6.8s; --delay: 0.9s; }
@keyframes spark-fall {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.9; }
  100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 6px 14px;
  background: rgba(184,35,28,0.18);
  border: 1px solid rgba(184,35,28,0.45);
  border-radius: 100px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: #FFB342;
  border-radius: 50%;
  box-shadow: 0 0 8px #FFB342;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

h1.hero-title {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.028em;
  margin-bottom: 24px;
  color: white;
}
h1.hero-title em {
  font-style: normal;
  color: #FFB342;
  font-weight: 600;
  display: block;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust-row {
  display: flex;
  gap: 16px 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.hero-trust-row strong {
  color: white;
  display: block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

/* ════════════════ COCKPIT (Hero right) ════════════════ */
.cockpit {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.cockpit-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cockpit-tabs { display: flex; gap: 4px; }
.cockpit-tab {
  font-size: 11px;
  padding: 5px 10px;
  color: rgba(255,255,255,0.5);
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: 'JetBrains Mono', monospace;
}
.cockpit-tab.active {
  background: rgba(255,255,255,0.1);
  color: white;
}
.cockpit-pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  color: #4ADE80;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pulse-dot {
  width: 6px; height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ADE80;
  animation: pulse-dot 1.5s infinite;
}

.big-clock {
  font-family: 'JetBrains Mono', monospace;
  font-size: 56px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 4px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.clock-sep { color: #FFB342; opacity: 0.7; margin: 0 -2px; }
.clock-label {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 8px 0 18px;
  font-family: 'JetBrains Mono', monospace;
}

.meta-pills {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.meta-pill {
  font-size: 10.5px;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.04);
}
.meta-pill.r { color: #FCA5A5; border-color: rgba(252,165,165,0.3); }
.meta-pill.g { color: #86EFAC; border-color: rgba(134,239,172,0.3); }
.meta-pill.o { color: #FFB342; border-color: rgba(255,179,66,0.3); }

.cockpit-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px;
  background: rgba(0,0,0,0.25);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 56px;
  gap: 10px;
  align-items: center;
  font-size: 11px;
}
.bar-lab { color: rgba(255,255,255,0.6); }
.bar-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0;
  animation: bar-grow 1.2s ease-out forwards;
  animation-delay: 0.4s;
}
.bar-fill.orange { background: #FFB342; animation-delay: 0.6s; }
.bar-fill.gold { background: var(--gold); animation-delay: 0.8s; }
@keyframes bar-grow { to { width: var(--w, 80%); } }
.bar-val {
  font-family: 'JetBrains Mono', monospace;
  color: white;
  font-weight: 600;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.cockpit-feed {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 14px;
}
.feed-title {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  align-items: center;
  gap: 6px;
}
.feed-title::before {
  content: '';
  width: 4px; height: 4px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 6px #4ADE80;
}
.feed-item {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
}
.feed-item:first-of-type { border-top: none; padding-top: 0; }
.type-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  margin: 0 auto;
}
.feed-item.type-time .type-dot { background: #FFB342; }
.feed-item.type-calc .type-dot { background: #4ADE80; }
.feed-item.type-doc  .type-dot { background: var(--accent); }
.feed-item.type-ai   .type-dot { background: #A78BFA; }
.feed-text { color: rgba(255,255,255,0.85); }
.feed-text strong { color: white; font-weight: 600; }
.feed-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: rgba(255,255,255,0.4);
}

.year-stamp {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 88px; height: 88px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,20,25,0.85);
  transform: rotate(-8deg);
}
.year-stamp > div {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
}
.year-stamp small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.year-stamp > div {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.hero-foot-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

/* ─────────────── LOGO STRIP ─────────────── */
.logos {
  padding: 48px 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.logos-label {
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
  align-items: center;
}
.logos-grid > div {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  text-align: center;
  letter-spacing: -0.01em;
  padding: 8px 8px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 4px;
  transition: all .2s ease;
}
.logos-grid > div:hover {
  color: var(--ink);
  border-color: var(--ink-4);
}

/* ─────────────── SECTION HEADERS ─────────────── */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-bg-2 { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--ink); color: rgba(255,255,255,0.85); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
.section-dark p { color: rgba(255,255,255,0.7); }

.section-head { margin-bottom: 56px; max-width: 720px; }
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.section-dark .section-eyebrow { color: #F09595; }
.section-head h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.024em;
  margin-bottom: 16px;
}
.section-head p { font-size: 17px; line-height: 1.55; }

.section-head-center {
  margin: 0 auto 56px;
  max-width: 760px;
  text-align: center;
}

/* ─────────────── TOOLS GRID ─────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.tool-cat { background: var(--bg); padding: 32px 28px; }
.tool-cat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tool-cat h3 { font-size: 22px; margin-bottom: 16px; font-weight: 600; }
.tool-cat p { font-size: 14.5px; color: var(--ink-3); margin-bottom: 20px; }
.tool-list { list-style: none; margin: 0; padding: 0; }
.tool-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line-2);
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tool-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─────────────── DEEP DIVE: KERN-MODULE ─────────────── */
.module-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.module-detail.reverse { direction: rtl; }
.module-detail.reverse > * { direction: ltr; }
.module-detail:last-child { border-bottom: none; }
.module-detail-info .section-eyebrow { margin-bottom: 14px; }
.module-detail-info h3 {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin-bottom: 16px;
}
.module-detail-info > p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.module-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid var(--line);
}
.module-features li {
  padding: 14px 0;
  font-size: 14.5px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}
.module-features li svg {
  width: 16px; height: 16px;
  color: var(--accent);
  margin-top: 2px;
}
.module-features li strong {
  color: var(--ink);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  font-size: 14.5px;
}
.module-features li span {
  font-size: 13.5px;
  color: var(--ink-3);
}

.module-visual {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  position: relative;
}
.module-screen {
  background: white;
  border-radius: 6px;
  border: 1px solid var(--line);
  overflow: hidden;
  font-size: 13px;
}
.module-screen-head {
  background: var(--bg-3);
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.module-screen-title {
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
}
.module-screen-meta {
  font-size: 11px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
}
.module-screen-body {
  padding: 16px;
}

/* Kalkulation visual */
.kalk-row {
  display: grid;
  grid-template-columns: 1fr 60px 80px;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 12.5px;
  align-items: center;
}
.kalk-row:last-child { border-bottom: none; }
.kalk-row .num {
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  font-weight: 500;
}
.kalk-cat {
  font-size: 10.5px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.kalk-total {
  background: var(--bg-2);
  border-top: 2px solid var(--ink);
  font-weight: 700;
  color: var(--ink);
  padding: 12px 0 4px;
}
.kalk-total .num { font-size: 18px; }

/* Zeit visual */
.zeit-day {
  display: grid;
  grid-template-columns: 38px 1fr 56px;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 12.5px;
}
.zeit-day:last-child { border-bottom: none; }
.zeit-day-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.zeit-day-bar {
  height: 8px;
  background: var(--bg-3);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
}
.zeit-day-bar > span { display: block; height: 100%; }
.zeit-day-bar .auftrag-1 { background: var(--accent); }
.zeit-day-bar .auftrag-2 { background: #FFB342; }
.zeit-day-bar .auftrag-3 { background: #4ADE80; }
.zeit-day-bar .auftrag-4 { background: var(--accent-2); }
.zeit-day-bar .pause     { background: var(--bg-3); }
.zeit-day-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

/* MEMOIO visual: chat */
.memoio-chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.memoio-msg {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  font-size: 12.5px;
  align-items: start;
}
.memoio-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-2);
  flex-shrink: 0;
}
.memoio-av.you { background: var(--accent); color: white; }
.memoio-bubble {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 6px;
  border-top-left-radius: 2px;
}
.memoio-msg.you .memoio-bubble {
  background: var(--accent-tint);
  border-color: rgba(184,35,28,0.15);
  border-top-left-radius: 6px;
  border-top-right-radius: 2px;
}
.memoio-msg.you { grid-template-columns: 1fr 28px; }
.memoio-name {
  font-size: 10.5px;
  color: var(--ink-3);
  margin-bottom: 2px;
  font-weight: 600;
}
.memoio-msg.you .memoio-name { text-align: right; }
.memoio-text { color: var(--ink); line-height: 1.4; }
.memoio-meta {
  font-size: 10px;
  color: var(--ink-4);
  margin-top: 4px;
  display: flex;
  gap: 6px;
}
.memoio-attach {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 11px;
  margin-top: 6px;
}

/* QoPilot visual: mobile mockup */
.qopilot-phone {
  width: 250px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 22px;
  padding: 8px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
  position: relative;
}
.qopilot-phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 14px;
  background: var(--ink);
  border-radius: 7px;
  z-index: 2;
}
.qopilot-screen {
  background: var(--bg-2);
  border-radius: 16px;
  padding: 30px 14px 14px;
  min-height: 480px;
  font-size: 12px;
}
.qopilot-h {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 4px;
}
.qopilot-sub { font-size: 10.5px; color: var(--ink-3); margin-bottom: 14px; }
.qopilot-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  font-size: 11.5px;
}
.qopilot-card-h {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 4px;
}
.qopilot-meta-line {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--ink-3);
  margin-top: 6px;
}
.qopilot-stamp-btn {
  display: block;
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  margin-top: 8px;
}

/* ─────────────── DREIECK ─────────────── */
.triade {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.triade-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  transition: border-color .15s ease, transform .2s ease;
}
.triade-card:hover { border-color: var(--ink-4); transform: translateY(-2px); }
.triade-card.feat {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.triade-card.feat h3 { color: white; }
.triade-card.feat p { color: rgba(255,255,255,0.75); }
.triade-card.feat .triade-list li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.12); }
.triade-card.feat .triade-cat { color: #F09595; }
.triade-num {
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink-4);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.triade-card.feat .triade-num { color: rgba(255,255,255,0.5); }
.triade-card h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.triade-cat {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
.triade-card p { font-size: 14.5px; line-height: 1.6; }
.triade-list { list-style: none; margin: 20px 0 0; padding: 0; }
.triade-list li {
  padding: 10px 0;
  font-size: 13.5px;
  color: var(--ink-2);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.triade-list li:last-child { border-bottom: 1px solid var(--line); }
.triade-card.feat .triade-list li:last-child { border-bottom-color: rgba(255,255,255,0.12); }
.triade-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 2px;
}
.triade-card.feat .triade-list li::before { color: #F09595; }

/* ─────────────── BRANCHEN-DETAIL ─────────────── */
.branchen-tabs {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
}
.branchen-tab-headers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.branchen-tab-btn {
  padding: 16px 20px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--line);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-3);
  cursor: pointer;
  text-align: left;
  transition: all .15s ease;
}
.branchen-tab-btn:last-child { border-right: none; }
.branchen-tab-btn:hover { background: var(--bg-2); color: var(--ink); }
.branchen-tab-btn.active {
  background: var(--bg);
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
  margin-bottom: -1px;
}

.branchen-content {
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
}
.branchen-pane { display: none; }
.branchen-pane.active { display: grid; grid-column: 1 / -1; grid-template-columns: 1.2fr 1fr; gap: 56px; }
.branchen-info h3 {
  font-size: 28px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.branchen-info > p {
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.branchen-usecases {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.branchen-usecase {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
}
.branchen-usecase strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}
.branchen-usecase span {
  color: var(--ink-3);
  font-size: 13px;
}
.branchen-usecase svg {
  width: 18px; height: 18px;
  color: var(--accent);
  margin-top: 2px;
}

.branchen-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-self: start;
}
.branchen-stat {
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.branchen-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--accent);
}
.branchen-stat small {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
}

/* ─────────────── ROLLEN ─────────────── */
.roles-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 56px;
  align-items: end;
}
.roles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.role-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 24px 20px;
  border-radius: 6px;
  transition: all .15s ease;
}
.role-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.role-icon {
  width: 36px; height: 36px;
  background: var(--bg-3);
  border-radius: 4px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
}
.role-icon svg { width: 18px; height: 18px; }
.role-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.role-card p { font-size: 13px; color: var(--ink-3); line-height: 1.5; margin: 0; }

/* ─────────────── SCHNITTSTELLEN ─────────────── */
.interfaces {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.interfaces-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.iface {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  font-size: 14px;
}
.iface-cat {
  font-size: 11px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  font-weight: 600;
}
.iface-name { font-weight: 600; color: var(--ink); }
.iface-sub { font-size: 13px; color: var(--ink-3); margin-top: 2px; }

/* ─────────────── IMPLEMENTIERUNG (Roadmap) ─────────────── */
.roadmap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.roadmap::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.roadmap-step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 20px 24px;
  position: relative;
  z-index: 1;
  transition: all .15s ease;
}
.roadmap-step:hover { border-color: var(--ink-4); }
.roadmap-num {
  width: 40px; height: 40px;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 13px;
  margin: -45px auto 16px;
  border: 4px solid var(--bg-2);
}
.roadmap-step.active .roadmap-num { background: var(--accent); }
.roadmap-week {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 6px;
}
.roadmap-step h3 {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}
.roadmap-step p {
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* ─────────────── VORTEILE / BENEFITS ─────────────── */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 64px;
}
.benefit {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
}
.benefit-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  padding-top: 4px;
}
.benefit h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.benefit p { font-size: 15px; line-height: 1.6; margin: 0; }

/* ─────────────── REFERENZ-QUOTES ─────────────── */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.quote-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.quote-card.feat {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  grid-column: span 2;
}
.quote-card.feat blockquote { color: white; font-size: 22px; }
.quote-card.feat .quote-info strong { color: white; }
.quote-card.feat .quote-info span { color: rgba(255,255,255,0.6); }
.quote-card.feat .quote-av { background: rgba(255,255,255,0.1); color: white; }
.quote-mark {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.quote-card.feat .quote-mark { color: #FFB342; }
.quote-card blockquote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 24px;
  font-weight: 400;
  letter-spacing: -0.005em;
  flex: 1;
}
.quote-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.quote-card.feat .quote-meta { border-top-color: rgba(255,255,255,0.12); }
.quote-av {
  width: 40px; height: 40px;
  background: var(--bg-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-2);
  flex-shrink: 0;
}
.quote-info strong {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.quote-info span {
  display: block;
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 2px;
}

/* ─────────────── FAKTEN ─────────────── */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.fact {
  padding: 32px 28px;
  background: var(--bg);
}
.fact-num {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.fact-num small {
  font-size: 18px;
  color: var(--accent);
  margin-left: 4px;
}
.fact-lab { font-size: 14px; color: var(--ink-3); font-weight: 500; }

/* ─────────────── SERVICE BLÖCKE ─────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px;
  transition: all .15s ease;
}
.service-card:hover { border-color: var(--ink-4); transform: translateY(-2px); }
.service-icon {
  width: 44px; height: 44px;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 19px; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--ink-3); margin-bottom: 16px; line-height: 1.5; }
.service-card a {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ─────────────── WEBINARE ─────────────── */
.webinare-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.webinar-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.webinar-date {
  background: var(--ink);
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 3px solid var(--accent);
}
.webinar-date-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
}
.webinar-date-stamp strong {
  font-size: 22px;
  font-weight: 600;
}
.webinar-date-stamp span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.webinar-date-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
.webinar-date-meta strong {
  display: block;
  color: white;
  font-size: 13px;
  margin-bottom: 2px;
  font-family: inherit;
  letter-spacing: 0;
  font-weight: 600;
}
.webinar-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.webinar-body h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.3;
}
.webinar-body p {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 16px;
  line-height: 1.5;
  flex: 1;
}
.webinar-meta-line {
  font-size: 12px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.webinar-meta-line span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ─────────────── NEWS ─────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .15s ease;
}
.news-card:hover { border-color: var(--ink-4); transform: translateY(-2px); }
.news-image {
  aspect-ratio: 16/9;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}
.news-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
.news-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
  flex: 1;
}
.news-body p {
  font-size: 13.5px;
  color: var(--ink-3);
  margin: 0 0 16px;
  line-height: 1.5;
}
.news-meta {
  font-size: 12px;
  color: var(--ink-4);
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* ─────────────── ÜBER UNS ─────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  background: var(--ink);
  border-radius: 8px;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15,20,25,0.7) 100%);
}
.about-image-overlay {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  color: white;
  font-family: 'JetBrains Mono', monospace;
  z-index: 1;
}
.about-image-overlay strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.about-image-overlay span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.about-info > p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.timeline {
  margin-top: 32px;
  position: relative;
  padding-left: 24px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 8px; bottom: 8px;
  left: 6px;
  width: 1px;
  background: var(--line);
}
.timeline-entry {
  position: relative;
  margin-bottom: 24px;
}
.timeline-entry::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 13px; height: 13px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  background: var(--bg);
}
.timeline-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.timeline-entry h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.timeline-entry p {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.5;
}

/* ─────────────── FAQ ─────────────── */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--ink-3);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  padding-bottom: 24px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 720px;
}

/* ─────────────── CTA ─────────────── */
.cta-section {
  padding: 80px 0;
  background: var(--ink);
  color: white;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-section h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 16px;
  letter-spacing: -0.022em;
}
.cta-section > .container > .cta-grid > div > p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin: 0;
}
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-actions .btn { justify-content: center; }
.cta-actions .btn-primary { background: white; color: var(--ink); }
.cta-actions .btn-primary:hover { background: var(--bg-2); }
.cta-actions .btn-outline { color: white; border-color: rgba(255,255,255,0.25); }
.cta-actions .btn-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.5); }

/* ─────────────── FOOTER ─────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  font-size: 14px;
  color: var(--ink-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 320px; margin: 16px 0; }
.footer-addr { font-size: 13.5px; line-height: 1.6; }
.footer-addr strong { color: var(--ink); display: block; margin-bottom: 4px; font-weight: 600; }
.footer-addr a { color: var(--ink-2); }
.footer-addr a:hover { color: var(--accent); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--ink-3); font-size: 13.5px; transition: color .15s ease; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }

/* ─────────────── REVEAL ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ─────────────── PRICING / PAKETE ─────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .15s ease;
}
.pricing-card:hover { border-color: var(--ink-4); transform: translateY(-2px); }
.pricing-card.feat {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  box-shadow: 0 12px 32px rgba(15,20,25,0.12);
}
.pricing-card.feat h3 { color: white; }
.pricing-card.feat p { color: rgba(255,255,255,0.75); }
.pricing-card.feat .pricing-features li {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.12);
}
.pricing-card.feat .pricing-features svg { color: #FFB342; }
.pricing-card.feat .pricing-foot { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.12); }

.pricing-flag {
  position: absolute;
  top: 0;
  right: 24px;
  transform: translateY(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-letter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pricing-card.feat .pricing-letter { color: #FFB342; }
.pricing-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.pricing-card > p {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 24px;
  min-height: 42px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.pricing-card.feat .pricing-price { border-bottom-color: rgba(255,255,255,0.12); }
.pricing-price strong {
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.pricing-card.feat .pricing-price strong { color: white; }
.pricing-price span {
  font-size: 14px;
  color: var(--ink-3);
}
.pricing-features {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  flex: 1;
}
.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features svg {
  width: 14px; height: 14px;
  color: var(--accent);
  margin-top: 4px;
}
.pricing-cta {
  margin-top: 16px;
  display: block;
  text-align: center;
}
.pricing-cta.btn-light { background: white; color: var(--ink); }
.pricing-cta.btn-light:hover { background: var(--bg-2); }
.pricing-foot {
  font-size: 12px;
  color: var(--ink-4);
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.bezugsmodelle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.bezugsmodell {
  padding: 24px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.bezugsmodell-icon {
  width: 44px; height: 44px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.bezugsmodell-icon svg { width: 22px; height: 22px; }
.bezugsmodell h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.bezugsmodell p {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  color: var(--ink-3);
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-burger { display: block; }
  body.menu-open .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: white;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 49;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  body.menu-open .nav-menu .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--line);
    border-radius: 0;
    margin: 0 0 8px 12px;
    padding: 0 0 0 8px;
    min-width: 0;
  }
  body.menu-open .nav-menu > li.has-dropdown > a::after {
    float: right;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 56px 0; }
  h1.hero-title { font-size: 42px; }
  .roles-intro { grid-template-columns: 1fr; gap: 24px; }
  .interfaces { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .logos-grid { grid-template-columns: repeat(4, 1fr); }
  .module-detail, .module-detail.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { aspect-ratio: 16/10; }
  .branchen-content, .branchen-pane.active { grid-template-columns: 1fr !important; gap: 32px; padding: 32px; }
  .roadmap { grid-template-columns: repeat(2, 1fr); }
  .roadmap::before { display: none; }
  .quote-card.feat { grid-column: span 1; }
  .quotes-grid, .service-grid, .news-grid, .webinare-list { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .bezugsmodelle { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 20px; }
  .section { padding: 64px 0; }
  h1.hero-title { font-size: 34px; }
  .section-head h2 { font-size: 28px; }
  .module-detail-info h3 { font-size: 26px; }
  .tools-grid { grid-template-columns: 1fr; }
  .triade { grid-template-columns: 1fr; }
  .roles { grid-template-columns: 1fr 1fr; }
  .interfaces-list { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr; gap: 24px; }
  .facts { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .topbar-meta { gap: 12px; font-size: 12px; }
  .topbar-meta span:not(:first-child) { display: none; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-logo img { height: 36px; }
  .roadmap { grid-template-columns: 1fr; }
  .quotes-grid, .service-grid, .news-grid, .webinare-list { grid-template-columns: 1fr; }
  .branchen-tab-headers { grid-template-columns: 1fr 1fr; }
  .branchen-tab-btn { border-bottom: 1px solid var(--line); }
  .branchen-stats { grid-template-columns: 1fr 1fr; }
  .big-clock { font-size: 42px; }
}
/* ═══════════════ DETAILSEITEN (page-detail.php) ═══════════════ */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,35,28,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero-crumb {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
}
.page-hero-crumb a { color: rgba(255,255,255,0.8); }
.page-hero-crumb a:hover { color: #fff; }
.page-hero-crumb span { margin: 0 6px; color: var(--accent); }
.page-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F09595;
  margin-bottom: 16px;
}
.page-hero-title {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 20px;
}
.page-hero-lead {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 0 32px;
  max-width: 560px;
}
.page-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.page-hero-visual { display: flex; justify-content: center; }
.page-hero-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.page-hero-card {
  width: 100%;
  max-width: 380px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.page-hero-card-dot {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent);
  margin-bottom: 24px;
}
.page-hero-card-bar {
  height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 12px;
}
.page-hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.page-hero-card-grid span {
  height: 56px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Feature-Grid */
.page-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.page-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .15s ease, transform .15s ease;
}
.page-feature:hover { border-color: var(--accent); transform: translateY(-2px); }
.page-feature-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.page-feature-icon svg { width: 18px; height: 18px; }
.page-feature-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

/* Inhalt + Aside */
.page-body-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.page-body-main {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}
.page-body-main h2 { font-size: 30px; margin: 40px 0 16px; }
.page-body-main h3 { font-size: 22px; margin: 32px 0 12px; }
.page-body-main p { margin: 0 0 1.2em; }
.page-body-main ul, .page-body-main ol { margin: 0 0 1.2em; padding-left: 1.4em; }
.page-body-main li { margin-bottom: 8px; }
.page-body-main img { border-radius: 10px; margin: 24px 0; }
.page-body-main a { color: var(--accent); font-weight: 500; }

.page-body-aside { position: sticky; top: 100px; }
.page-aside-card {
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 32px;
}
.page-aside-card h3 { color: #fff; font-size: 20px; margin: 0 0 10px; }
.page-aside-card p { color: rgba(255,255,255,0.72); font-size: 14.5px; line-height: 1.55; margin: 0 0 20px; }
.page-aside-contact {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}
.page-aside-contact a { color: rgba(255,255,255,0.85); }
.page-aside-contact a:hover { color: #fff; }

/* Verwandte Module */
.page-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.page-related-item {
  display: block;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .15s ease, transform .15s ease;
}
.page-related-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.page-related-item h4 {
  font-size: 16px;
  margin: 0 0 6px;
  display: flex; align-items: center; gap: 8px;
  color: var(--ink);
}
.page-related-item h4 svg { width: 14px; height: 14px; color: var(--accent); }
.page-related-item p { font-size: 13.5px; color: var(--ink-3); margin: 0; line-height: 1.5; }

/* Responsive Detailseiten */
@media (max-width: 1024px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-title { font-size: 38px; }
  .page-feature-grid { grid-template-columns: 1fr 1fr; }
  .page-body-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-body-aside { position: static; }
  .page-related { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .page-hero { padding: 48px 0 56px; }
  .page-hero-title { font-size: 30px; }
  .page-hero-lead { font-size: 16px; }
  .page-feature-grid { grid-template-columns: 1fr; }
  .page-related { grid-template-columns: 1fr; }
}

/* ═══════════════ PETRA LANDINGPAGE (page-petra.php) ═══════════════ */
.petra-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 80px 0 88px;
  overflow: hidden;
}
.petra-hero-glow {
  position: absolute;
  top: -30%; left: 50%;
  width: 800px; height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(184,35,28,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.petra-hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.petra-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  padding: 7px 14px; border-radius: 100px;
  margin-bottom: 24px;
}
.petra-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
  animation: petraPulse 2s infinite;
}
@keyframes petraPulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.petra-hero-title {
  font-size: 48px; line-height: 1.08; font-weight: 600;
  letter-spacing: -0.025em; color: #fff; margin: 0 0 20px;
}
.petra-hero-title em { color: #F09595; font-style: normal; }
.petra-hero-lead {
  font-size: 19px; line-height: 1.55;
  color: rgba(255,255,255,0.78); margin: 0 0 32px; max-width: 560px;
}
.petra-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.petra-hero-trust { display: flex; gap: 40px; flex-wrap: wrap; }
.petra-hero-trust div { display: flex; flex-direction: column; font-size: 13px; color: rgba(255,255,255,0.6); }
.petra-hero-trust strong { font-size: 22px; color: #fff; font-weight: 600; margin-bottom: 2px; }

/* Phone / Chat-Visual */
.petra-hero-visual { display: flex; justify-content: center; }
.petra-phone {
  width: 100%; max-width: 360px;
  background: #fff; border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  overflow: hidden;
}
.petra-phone-top {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; background: var(--ink); color: #fff;
}
.petra-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
}
.petra-phone-top strong { display: block; font-size: 15px; }
.petra-phone-top span { font-size: 12px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }
.petra-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: petraPulse 2s infinite; }
.petra-chat { padding: 20px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-2); }
.petra-bubble {
  max-width: 80%; padding: 10px 14px; border-radius: 14px;
  font-size: 13.5px; line-height: 1.4;
  opacity: 0; animation: petraIn .5s ease forwards;
}
.petra-bubble.in { background: #fff; border: 1px solid var(--line); color: var(--ink-2); align-self: flex-start; border-bottom-left-radius: 4px; }
.petra-bubble.out { background: var(--accent); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.petra-bubble:nth-child(1) { animation-delay: .3s; }
.petra-bubble:nth-child(2) { animation-delay: 1.1s; }
.petra-bubble:nth-child(3) { animation-delay: 1.9s; }
.petra-bubble:nth-child(4) { animation-delay: 2.7s; }
.petra-bubble:nth-child(5) { animation-delay: 3.3s; }
@keyframes petraIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.petra-typing { display: flex; gap: 4px; align-items: center; }
.petra-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-4); animation: petraBlink 1.4s infinite; }
.petra-typing span:nth-child(2) { animation-delay: .2s; }
.petra-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes petraBlink { 0%,60%,100% { opacity: .3; } 30% { opacity: 1; } }
.petra-phone-foot {
  padding: 14px 20px; background: #fff; border-top: 1px solid var(--line);
  font-size: 13px; color: #16a34a; font-weight: 600;
}

/* Split Problem/Lösung */
.petra-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.petra-split-col { padding: 32px; border-radius: 12px; border: 1px solid var(--line); }
.petra-without { background: var(--bg-2); }
.petra-with { background: var(--ink); color: #fff; border-color: transparent; }
.petra-split-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.petra-without .petra-split-label { color: var(--ink-4); }
.petra-with .petra-split-label { color: #F09595; }
.petra-split-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.petra-split-col li { padding-left: 28px; position: relative; font-size: 15px; line-height: 1.5; }
.petra-without li::before { content: '✕'; position: absolute; left: 0; color: var(--ink-4); font-weight: 700; }
.petra-with li { color: rgba(255,255,255,0.9); }
.petra-with li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; font-weight: 700; }

/* Feature-Grid */
.petra-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.petra-feature {
  padding: 28px; background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  transition: border-color .15s ease, transform .15s ease;
}
.petra-feature:hover { border-color: var(--accent); transform: translateY(-3px); }
.petra-feature-ic {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-tint); display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.petra-feature h3 { font-size: 17px; margin: 0 0 8px; }
.petra-feature p { font-size: 14px; color: var(--ink-3); line-height: 1.55; margin: 0; }

/* Steps */
.petra-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.petra-step { position: relative; padding-top: 8px; }
.petra-step-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; font-family: 'JetBrains Mono', monospace;
  margin-bottom: 18px;
}
.petra-step h3 { font-size: 17px; margin: 0 0 8px; }
.petra-step p { font-size: 14px; color: var(--ink-3); line-height: 1.55; margin: 0; }

/* Trust box */
.petra-trust-box {
  display: flex; gap: 24px; align-items: center;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 36px 40px;
}
.petra-trust-ic { font-size: 40px; flex-shrink: 0; }
.petra-trust-box h3 { font-size: 22px; margin: 0 0 8px; }
.petra-trust-box p { font-size: 15px; color: var(--ink-3); line-height: 1.6; margin: 0; }

/* Bonus */
.petra-bonus { max-width: 760px; }
.petra-bonus h2 { font-size: 30px; margin: 8px 0 14px; }
.petra-bonus p { font-size: 16px; color: var(--ink-3); line-height: 1.65; margin: 0; }

@media (max-width: 1024px) {
  .petra-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .petra-hero-title { font-size: 38px; }
  .petra-features { grid-template-columns: 1fr 1fr; }
  .petra-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .petra-hero { padding: 48px 0 56px; }
  .petra-hero-title { font-size: 30px; }
  .petra-hero-lead { font-size: 16px; }
  .petra-hero-trust { gap: 24px; }
  .petra-split { grid-template-columns: 1fr; }
  .petra-features { grid-template-columns: 1fr; }
  .petra-steps { grid-template-columns: 1fr; }
  .petra-trust-box { flex-direction: column; text-align: center; padding: 28px; }
}

/* ═══════════ PRODUKT-LANDINGPAGES MEMOIO / QoPilot (page-feature-product.php) ═══════════ */
.fp { --fp-accent: var(--accent); }
.fp-hero {
  position: relative; background: var(--ink); color: #fff;
  padding: 80px 0 88px; overflow: hidden;
}
.fp-hero-glow {
  position: absolute; top: -30%; right: -5%;
  width: 760px; height: 760px;
  background: radial-gradient(circle, color-mix(in srgb, var(--fp-accent) 28%, transparent) 0%, transparent 65%);
  pointer-events: none;
}
.fp-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.fp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  color: #fff; padding: 7px 14px; border-radius: 100px; margin-bottom: 22px;
}
.fp-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--fp-accent); }
.fp-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--fp-accent) 60%, #fff); margin-bottom: 14px;
}
.fp-hero-title {
  font-size: 46px; line-height: 1.1; font-weight: 600; letter-spacing: -0.025em;
  color: #fff; margin: 0 0 20px;
}
.fp-hero-title em { color: color-mix(in srgb, var(--fp-accent) 55%, #fff); font-style: normal; }
.fp-hero-lead { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.78); margin: 0 0 32px; max-width: 580px; }
.fp-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.fp-trust { display: flex; gap: 40px; flex-wrap: wrap; }
.fp-trust div { display: flex; flex-direction: column; font-size: 13px; color: rgba(255,255,255,0.6); }
.fp-trust strong { font-size: 22px; color: #fff; font-weight: 600; margin-bottom: 2px; }

.fp-hero-visual { display: flex; justify-content: center; }
.fp-hero-img { width: 100%; border-radius: 14px; box-shadow: 0 30px 70px rgba(0,0,0,0.45); }
.fp-mock {
  width: 100%; max-width: 400px; background: #fff; border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45); overflow: hidden;
}
.fp-mock-bar { display: flex; gap: 7px; padding: 14px 18px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.fp-mock-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.fp-mock-dot:first-child { background: var(--fp-accent); }
.fp-mock-body { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.fp-mock-line { height: 12px; border-radius: 6px; background: var(--bg-3); }
.fp-mock-line:first-child { background: var(--fp-accent); opacity: .85; height: 16px; }
.fp-mock-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 8px 0; }
.fp-mock-tiles span { height: 60px; border-radius: 10px; background: var(--bg-2); border: 1px solid var(--line); }

/* Use cases */
.fp-usecases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fp-usecase {
  padding: 32px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  border-top: 3px solid var(--fp-accent);
}
.fp-usecase-num {
  font-family: 'JetBrains Mono', monospace; font-size: 28px; font-weight: 600;
  color: var(--fp-accent); margin-bottom: 12px;
}
.fp-usecase h3 { font-size: 18px; margin: 0 0 8px; }
.fp-usecase p { font-size: 14.5px; color: var(--ink-3); line-height: 1.6; margin: 0; }

/* Triangle note */
.fp-triangle-note {
  text-align: center; max-width: 720px; margin: 0 auto;
  padding: 48px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px;
}
.fp-triangle-note h2 { font-size: 28px; margin: 8px 0 14px; }
.fp-triangle-note p { font-size: 16px; color: var(--ink-3); line-height: 1.65; margin: 0 0 28px; }
.fp-triangle-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.fp-triangle-links a {
  padding: 10px 22px; border-radius: 100px; font-weight: 600; font-size: 14px;
  background: var(--ink); color: #fff;
}
.fp-triangle-links a:hover { background: var(--fp-accent); }

@media (max-width: 1024px) {
  .fp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .fp-hero-title { font-size: 36px; }
  .fp-usecases { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .fp-hero { padding: 48px 0 56px; }
  .fp-hero-title { font-size: 28px; }
  .fp-trust { gap: 24px; }
}

/* ═══════════ PETRA: Hero-Stage (echtes Bild + Chat-Karte) & Video ═══════════ */
.petra-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.petra-photo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}
.petra-chatcard {
  position: absolute;
  bottom: 18px;
  left: -36px;
  width: 270px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  overflow: hidden;
  animation: petraFloat 5s ease-in-out infinite;
}
@keyframes petraFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.petra-chatcard-top {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; background: var(--ink); color: #fff;
}
.petra-chatcard-top .petra-avatar { width: 32px; height: 32px; font-size: 15px; }
.petra-chatcard-top strong { display: block; font-size: 13px; }
.petra-chatcard-top span { font-size: 10.5px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 5px; }
.petra-chatcard .petra-chat { padding: 12px; gap: 7px; }
.petra-chatcard .petra-bubble { font-size: 11.5px; padding: 7px 10px; max-width: 88%; }
.petra-chatcard-foot {
  padding: 10px 14px; background: #fff; border-top: 1px solid var(--line);
  font-size: 11.5px; color: #16a34a; font-weight: 600;
}

/* Video */
.petra-video {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15,20,25,0.18);
  background: var(--ink);
}
.petra-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .petra-stage { max-width: 360px; }
  .petra-chatcard { left: 0; width: 240px; }
}
@media (max-width: 720px) {
  .petra-chatcard { position: relative; left: 0; bottom: 0; width: 100%; margin-top: 16px; animation: none; }
  .petra-stage { max-width: 300px; }
}
