/* ══════════════════════════════════════════════════════════
   officia-3d-v12.css
   – Korrektes Auto/Dark-Mode (verwendet --theme-* Vars)
   – Tiefes 3D mit Parallax-Layering
   – Modul-Landingpage Styles
══════════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────────── */
.pro-hero {
  position: relative;
  padding: 128px 0 100px;
  background: var(--theme-bg, #f8fafc);
  overflow: hidden;
  min-height: 96vh;
  display: flex;
  align-items: center;
}
/* Light-mode gradient */
.pro-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 72% 28%, rgba(0,209,255,.08), transparent 58%),
    radial-gradient(ellipse 45% 45% at 12% 78%, rgba(10,25,47,.04), transparent 58%),
    linear-gradient(170deg, var(--slate-50,#f8fafc) 0%, var(--white,#fff) 100%);
  pointer-events: none;
}
/* Dark-mode override */
html[data-theme="dark"] .pro-hero::before,
@media (prefers-color-scheme: dark) { html:not([data-theme="light"]) .pro-hero::before { display:none; } }
html[data-theme="dark"] .pro-hero,
html[data-theme="dark"] .pro-hero::before { background: none; }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .pro-hero {
    background: var(--theme-bg, #07111f);
  }
  html:not([data-theme="light"]) .pro-hero::before { display: none; }
}
html[data-theme="dark"] .pro-hero { background: var(--theme-bg, #07111f); }

/* Feines Raster – beide Modi */
.pro-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,209,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,209,255,.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 72% 72% at 64% 36%, #000, transparent 68%);
  pointer-events: none;
}

.pro-hero-layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(460px, 1.14fr);
  gap: clamp(28px, 5.5vw, 76px);
  align-items: center;
}

/* ── HERO TEXT ── */
.pro-h1 {
  font-size: clamp(2.7rem, 5vw, 5.2rem) !important;
  line-height: 1.07 !important;
  letter-spacing: -.058em !important;
  max-width: none !important;
  margin-bottom: 22px !important;
  text-align: left !important;
  color: var(--theme-heading, var(--navy)) !important;
}
.pro-h1-accent { color: var(--cyan) !important; }
.pro-hero-text {
  color: var(--theme-muted, var(--slate-500));
  font-size: clamp(.96rem, 1.3vw, 1.08rem);
  line-height: 1.72; max-width: 500px; margin-bottom: 32px;
}
.pro-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.pro-trust-row { display: flex; gap: 18px; flex-wrap: wrap; }
.pro-trust-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .79rem; font-weight: 700;
  color: var(--theme-soft, var(--slate-400));
}
.pro-trust-item svg { color: var(--cyan); flex-shrink: 0; }

/* ── TRUST BAR ── */
.pro-trust-bar {
  border-top: 1px solid var(--theme-border-soft, var(--slate-100));
  border-bottom: 1px solid var(--theme-border-soft, var(--slate-100));
  background: var(--theme-surface-muted, var(--slate-50));
  padding: 12px 0;
}
.pro-trust-bar-inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: .79rem; }
.pro-trust-bar-label { color: var(--theme-soft, var(--slate-400)); }
.pro-trust-bar-brand { color: var(--theme-heading, var(--navy)); font-weight: 780; }
.pro-trust-bar-sep { color: var(--theme-border, var(--slate-300)); }
.pro-trust-bar-item { color: var(--theme-muted, var(--slate-500)); font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   3D HERO MOCKUP SYSTEM
   Drei Tiefenebenen: Hintergrund (slow) · Mockup (mid) · Float-Cards (fast)
══════════════════════════════════════════════════════════ */

.pro-hero-visual {
  perspective: 1800px;
  perspective-origin: 48% 42%;
  position: relative;
}

.pro-mockup-scene {
  position: relative;
  height: min(72vh, 640px);
  min-height: 480px;
  transform-style: preserve-3d;
}

/* Hintergrund-Glow – tiefste Schicht */
.mock-depth-glow {
  position: absolute;
  inset: -8% -12%;
  background: radial-gradient(ellipse 60% 50% at 55% 52%, rgba(0,209,255,.09), transparent 66%);
  border-radius: 50%;
  pointer-events: none;
  transform: translateZ(-40px) scale(1.1);
  filter: blur(18px);
}

/* Haupt-App-Fenster – mittlere Schicht */
.pro-mockup-window {
  position: absolute;
  inset: 28px 0 0 12px;
  background: #f8fafc;
  border: 1px solid rgba(226,232,240,.92);
  border-radius: 18px;
  overflow: hidden;
  /* Tiefe, mehrschichtige Schatten – erzeugen echte Tiefenwirkung */
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 2px 4px rgba(15,23,42,.04),
    0 8px 16px rgba(15,23,42,.06),
    0 24px 48px rgba(15,23,42,.10),
    0 60px 120px rgba(15,23,42,.13),
    0 0 0 1px rgba(255,255,255,.3);
  transform: perspective(1800px) rotateX(5deg) rotateY(-13deg) rotateZ(1.5deg);
  transform-origin: 60% 50%;
  transition: transform .9s cubic-bezier(.16,1,.3,1), box-shadow .9s ease;
  will-change: transform;
}
html[data-theme="dark"] .pro-mockup-window,
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .pro-mockup-window {
    background: #0d1a2c;
    border-color: rgba(148,163,184,.18);
    box-shadow:
      0 2px 4px rgba(0,0,0,.3),
      0 24px 60px rgba(0,0,0,.4),
      0 80px 160px rgba(0,0,0,.35),
      0 0 60px rgba(0,209,255,.06);
  }
}
html[data-theme="dark"] .pro-mockup-window {
  background: #0d1a2c;
  border-color: rgba(148,163,184,.18);
  box-shadow:
    0 2px 4px rgba(0,0,0,.3),
    0 24px 60px rgba(0,0,0,.4),
    0 80px 160px rgba(0,0,0,.35),
    0 0 60px rgba(0,209,255,.06);
}

/* ── TOPBAR ── */
.mock-topbar {
  height: 50px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  flex-shrink: 0;
}
html[data-theme="dark"] .mock-topbar { background: rgba(8,17,31,.9); border-bottom-color: rgba(148,163,184,.16); }
@media (prefers-color-scheme: dark) { html:not([data-theme="light"]) .mock-topbar { background: rgba(8,17,31,.9); border-bottom-color: rgba(148,163,184,.16); } }

.mock-brand { display: flex; align-items: center; gap: 7px; }
.mock-brand-logo {
  width: 20px; height: 20px; border-radius: 5px;
  background: linear-gradient(135deg, var(--navy), #1e3a5f);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mock-brand-logo::after {
  content: ""; width: 9px; height: 9px;
  border: 1.5px solid var(--cyan); border-radius: 2px;
}
.mock-brand-text { font-size: .78rem; font-weight: 780; letter-spacing: -.04em; color: var(--navy); }
.mock-brand-text span { color: var(--cyan); }
html[data-theme="dark"] .mock-brand-text { color: #f8fafc; }
.mock-pipe { width: 1px; height: 18px; background: var(--slate-200); margin: 0 2px; }
html[data-theme="dark"] .mock-pipe { background: rgba(148,163,184,.3); }
.mock-module-name { font-size: .78rem; font-weight: 650; color: var(--navy); }
html[data-theme="dark"] .mock-module-name { color: #f8fafc; }
.mock-topbar-right { display: flex; align-items: center; gap: 7px; }
.mock-lang-sw {
  display: flex; gap: 2px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--slate-200);
  border-radius: 999px; padding: 3px;
}
html[data-theme="dark"] .mock-lang-sw { background: rgba(15,23,42,.8); border-color: rgba(148,163,184,.2); }
.mock-lang-sw span { padding: 3px 6px; border-radius: 999px; font-size: .6rem; font-weight: 800; color: var(--slate-400); line-height: 1; }
.mock-lang-sw span.active { background: var(--navy); color: #fff; }
.mock-theme-btn { display: flex; align-items: center; gap: 5px; border: 1px solid var(--slate-200); border-radius: 999px; background: rgba(255,255,255,.8); padding: 4px 8px; font-size: .6rem; font-weight: 760; color: var(--slate-500); }
html[data-theme="dark"] .mock-theme-btn { background: rgba(15,23,42,.8); border-color: rgba(148,163,184,.2); color: #94a3b8; }
.mock-theme-dot { width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(135deg, var(--navy) 0 50%, var(--cyan) 50% 100%); }
.mock-avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), #1e3a5f); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .58rem; font-weight: 800; }

/* ── APP SHELL ── */
.mock-app-shell {
  display: grid;
  grid-template-columns: 152px minmax(0,1fr);
  gap: 12px;
  padding: 12px;
  height: calc(100% - 50px);
  overflow: hidden;
}

/* Sidebar */
.mock-sidebar {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 14px;
  padding: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
html[data-theme="dark"] .mock-sidebar { background: rgba(10,20,36,.88); border-color: rgba(148,163,184,.15); }
@media (prefers-color-scheme: dark) { html:not([data-theme="light"]) .mock-sidebar { background: rgba(10,20,36,.88); border-color: rgba(148,163,184,.15); } }
.mock-sidebar-label { font-size: .57rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--slate-400); margin: 2px 6px 8px; }
.mock-nav-item { display: flex; align-items: center; gap: 7px; padding: 7px 9px; border-radius: 9px; font-size: .65rem; font-weight: 700; color: var(--slate-500); margin-bottom: 2px; }
.mock-nav-item svg { width: 12px; height: 12px; flex-shrink: 0; opacity: .7; }
.mock-nav-item.active { background: var(--navy); color: #fff; box-shadow: 0 8px 20px rgba(10,25,47,.16); }
.mock-nav-item.active svg { opacity: 1; }
html[data-theme="dark"] .mock-nav-item.active { background: linear-gradient(135deg, rgba(0,209,255,.22), rgba(59,130,246,.18)); border: 1px solid rgba(0,209,255,.45); box-shadow: 0 10px 28px rgba(0,209,255,.1); }

/* Content */
.mock-content { overflow: hidden; display: flex; flex-direction: column; gap: 9px; }
.mock-h1 { font-size: 1.28rem; font-weight: 780; letter-spacing: -.04em; color: var(--navy); line-height: 1.1; margin: 0 0 2px; }
html[data-theme="dark"] .mock-h1 { color: #f8fafc; }
.mock-subtitle { font-size: .64rem; color: var(--slate-400); line-height: 1.5; }
.mock-card {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 13px;
  padding: 11px 12px;
  box-shadow: 0 1px 2px rgba(15,23,42,.03), 0 10px 28px rgba(15,23,42,.04);
}
html[data-theme="dark"] .mock-card { background: rgba(10,20,36,.88); border-color: rgba(148,163,184,.15); }
@media (prefers-color-scheme: dark) { html:not([data-theme="light"]) .mock-card { background: rgba(10,20,36,.88); border-color: rgba(148,163,184,.15); } }
.mock-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; }
.mock-stat { padding: 9px 10px; border: 1px solid rgba(226,232,240,.9); border-radius: 11px; background: rgba(255,255,255,.94); }
html[data-theme="dark"] .mock-stat { background: rgba(13,26,44,.88); border-color: rgba(148,163,184,.15); }
.mock-stat-label { font-size: .54rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--slate-400); margin-bottom: 5px; }
.mock-stat-value { font-size: 1.15rem; font-weight: 780; color: var(--navy); letter-spacing: -.04em; line-height: 1; }
html[data-theme="dark"] .mock-stat-value { color: #f8fafc; }
.mock-stat-sub { font-size: .56rem; color: var(--slate-400); margin-top: 2px; }
.mock-section-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.mock-section-title { font-size: .75rem; font-weight: 780; color: var(--navy); }
html[data-theme="dark"] .mock-section-title { color: #f8fafc; }
.mock-section-link { font-size: .62rem; font-weight: 700; color: var(--slate-400); }
.mock-table-head { display: grid; grid-template-columns: 1.6fr .6fr .8fr; font-size: .56rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--slate-400); padding: 0 3px 6px; border-bottom: 1px solid rgba(226,232,240,.9); margin-bottom: 3px; }
html[data-theme="dark"] .mock-table-head { border-bottom-color: rgba(148,163,184,.15); }
.mock-row { display: grid; grid-template-columns: 1.6fr .6fr .8fr; align-items: center; padding: 6px 3px; border-radius: 7px; border-bottom: 1px solid rgba(226,232,240,.5); }
html[data-theme="dark"] .mock-row { border-bottom-color: rgba(148,163,184,.1); }
.mock-row-name { display: flex; align-items: center; gap: 7px; font-weight: 700; font-size: .64rem; color: var(--navy); }
html[data-theme="dark"] .mock-row-name { color: #e2e8f0; }
.mock-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.mock-dot-blue { background: var(--cyan); } .mock-dot-green { background: #22c55e; } .mock-dot-amber { background: #f59e0b; }
.mock-tag { display: inline-flex; padding: 3px 7px; border-radius: 999px; font-size: .58rem; font-weight: 700; background: rgba(241,245,249,.9); border: 1px solid rgba(226,232,240,.9); color: var(--slate-500); font-style: normal; }
.mock-tag-active { background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.25); color: #16a34a; }
.mock-tag-draft { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.22); color: #b45309; }
.mock-agents { color: var(--slate-500); font-weight: 700; font-size: .62rem; text-align: right; }

/* Hub-spezifische Mock-Elemente */
.mock-company-row { display: grid; grid-template-columns: 1.8fr .7fr .6fr .7fr; align-items: center; padding: 7px 3px; border-radius: 7px; border-bottom: 1px solid rgba(226,232,240,.5); font-size: .64rem; gap: 4px; }
html[data-theme="dark"] .mock-company-row { border-bottom-color: rgba(148,163,184,.1); }
.mock-company-head { display: grid; grid-template-columns: 1.8fr .7fr .6fr .7fr; font-size: .55rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--slate-400); padding: 0 3px 6px; border-bottom: 1px solid rgba(226,232,240,.9); margin-bottom: 3px; }
html[data-theme="dark"] .mock-company-head { border-bottom-color: rgba(148,163,184,.15); }
.mock-co-avatar { width: 20px; height: 20px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: .55rem; font-weight: 800; color: rgba(255,255,255,.85); flex-shrink: 0; border: 1px solid rgba(255,255,255,.12); }
.mock-co-name { display: flex; align-items: center; gap: 6px; font-weight: 700; color: var(--navy); }
html[data-theme="dark"] .mock-co-name { color: #e2e8f0; }
.mock-score-bar { height: 5px; background: var(--slate-100); border-radius: 99px; overflow: hidden; width: 70%; }
html[data-theme="dark"] .mock-score-bar { background: rgba(148,163,184,.15); }
.mock-score-bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--cyan), #2563eb); }
.mock-source { font-size: .62rem; color: var(--slate-400); font-weight: 600; }

/* ── FLOATING MINI CARDS ── */
.pro-mockup-float {
  position: absolute;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 13px;
  padding: 12px 14px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 2px 4px rgba(15,23,42,.04),
    0 12px 32px rgba(15,23,42,.12),
    0 28px 60px rgba(15,23,42,.09);
  will-change: transform;
  z-index: 2;
}
html[data-theme="dark"] .pro-mockup-float { background: rgba(13,26,44,.95); border-color: rgba(148,163,184,.18); box-shadow: 0 4px 12px rgba(0,0,0,.3), 0 24px 60px rgba(0,0,0,.35), 0 0 30px rgba(0,209,255,.06); }
@media (prefers-color-scheme: dark) { html:not([data-theme="light"]) .pro-mockup-float { background: rgba(13,26,44,.95); border-color: rgba(148,163,184,.18); box-shadow: 0 4px 12px rgba(0,0,0,.3), 0 24px 60px rgba(0,0,0,.35); } }

.float-tl { top: 2px; left: -14px; width: 152px; animation: fl-a 5s ease-in-out infinite; }
.float-br { bottom: 18px; right: -18px; width: 170px; animation: fl-b 6s ease-in-out infinite; animation-delay: 1.4s; }
.float-tr { top: 48%; right: -20px; transform: translateY(-50%); width: 158px; animation: fl-c 5.5s ease-in-out infinite; animation-delay: 2.8s; }
@keyframes fl-a { 0%,100%{transform:translateY(0) rotate(-.5deg)} 50%{transform:translateY(-10px) rotate(.3deg)} }
@keyframes fl-b { 0%,100%{transform:translateY(0) rotate(.4deg)} 50%{transform:translateY(-8px) rotate(-.3deg)} }
@keyframes fl-c { 0%,100%{transform:translateY(-50%) rotate(-.3deg)} 50%{transform:translateY(calc(-50% - 9px)) rotate(.4deg)} }

.mini-label { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--slate-400); margin-bottom: 5px; }
.mini-value { font-size: 1.4rem; font-weight: 780; color: var(--navy); letter-spacing: -.045em; line-height: 1; margin-bottom: 4px; }
html[data-theme="dark"] .mini-value { color: #f8fafc; }
.mini-value span { font-size: .7rem; color: var(--slate-400); font-weight: 600; }
.mini-cyan { color: var(--cyan) !important; }
.mini-sub { font-size: .62rem; color: var(--slate-400); font-weight: 700; }
.mini-bar { height: 5px; background: var(--slate-100); border-radius: 99px; overflow: hidden; margin: 5px 0 3px; }
html[data-theme="dark"] .mini-bar { background: rgba(148,163,184,.15); }
.mini-bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--cyan), #2563eb); }
.mini-status-row { display: flex; align-items: center; gap: 6px; font-size: .66rem; font-weight: 700; color: #16a34a; margin-bottom: 7px; }
.mini-status-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.2); animation: status-pulse 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes status-pulse { 0%,100%{box-shadow:0 0 0 3px rgba(34,197,94,.2)}50%{box-shadow:0 0 0 6px rgba(34,197,94,.06)} }
.mini-wave { display: flex; align-items: center; gap: 3px; height: 22px; margin-top: 3px; }
.mini-wave span { flex: 1; border-radius: 99px; background: linear-gradient(180deg, var(--cyan), #2563eb); animation: w 1.4s ease-in-out infinite; }
.mini-wave span:nth-child(1){height:32%;animation-delay:0s} .mini-wave span:nth-child(2){height:62%;animation-delay:.12s} .mini-wave span:nth-child(3){height:90%;animation-delay:.24s} .mini-wave span:nth-child(4){height:54%;animation-delay:.36s} .mini-wave span:nth-child(5){height:76%;animation-delay:.24s} .mini-wave span:nth-child(6){height:40%;animation-delay:.12s} .mini-wave span:nth-child(7){height:26%;animation-delay:0s}
@keyframes w { 0%,100%{transform:scaleY(1)} 50%{transform:scaleY(1.5)} }
.mini-stat-row { display: flex; gap: 7px; margin-top: 7px; }
.mini-stat-cell { flex:1; padding:5px 7px; border-radius:7px; background: var(--slate-50); border:1px solid rgba(226,232,240,.9); }
html[data-theme="dark"] .mini-stat-cell { background: rgba(148,163,184,.08); border-color: rgba(148,163,184,.15); }
.mini-stat-cell-label { font-size:.53rem; font-weight:800; color:var(--slate-400); text-transform:uppercase; letter-spacing:.05em; }
.mini-stat-cell-val { font-size:.88rem; font-weight:780; color:var(--navy); margin-top:2px; }
html[data-theme="dark"] .mini-stat-cell-val { color: #f8fafc; }

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL & 3D DEPTH SYSTEM
══════════════════════════════════════════════════════════ */
[data-reveal] { perspective: 1600px; perspective-origin: 50% 0%; }
.rv-inner { transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.rv-inner.rv-hidden { opacity: 0; transform: translateY(52px) rotateX(7deg) translateZ(-90px); }
.rv-inner.rv-visible { opacity: 1; transform: none; }

[data-card] { opacity: 0; transform: translateY(26px) scale(.99); transition: opacity .65s ease, transform .65s cubic-bezier(.16,1,.3,1); }
[data-card].entered { opacity: 1; transform: none; }

/* Karten 3D Hover */
.card, .product-module-card, .feature, .faq-item, .pro-connect-card, .pro-story-card {
  transition: transform .28s cubic-bezier(.2,.8,.3,1), box-shadow .28s ease, border-color .28s ease !important;
  will-change: transform;
}

/* ── VERBINDUNGS-GRID ── */
.pro-connect-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.pro-connect-card { padding: 22px; border: 1px solid var(--slate-200); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-card); }
.pro-connect-from { font-size: .7rem; font-weight: 780; color: var(--cyan); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 5px; }
.pro-connect-arrow { width: 32px; height: 9px; color: var(--slate-300); margin-bottom: 5px; display: block; }
.pro-connect-to { font-size: .78rem; font-weight: 720; color: var(--navy); margin-bottom: 9px; }
.pro-connect-desc { font-size: .84rem; color: var(--slate-500); line-height: 1.58; margin: 0; }

/* ── STORY GRID ── */
.pro-story-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; margin-top: 44px; }
.pro-story-card { padding: 28px; border-radius: 18px; background: var(--white); border: 1px solid var(--slate-200); box-shadow: var(--shadow-card); }
.pro-story-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--cyan-soft); display: flex; align-items: center; justify-content: center; color: var(--navy); margin-bottom: 16px; transition: background .2s, color .2s; }
.pro-story-card:hover .pro-story-icon { background: var(--cyan); color: #fff; }
.pro-story-icon svg { width: 20px; height: 20px; }
.pro-story-card h3 { font-size: 1.04rem; font-weight: 720; color: var(--navy); margin-bottom: 9px; }
.pro-story-card p { font-size: .88rem; color: var(--slate-500); line-height: 1.65; margin: 0; }

/* ══════════════════════════════════════════════════════════
   MODUL-LANDINGPAGE STYLES
══════════════════════════════════════════════════════════ */

/* Modul-Hero */
.mod-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--theme-bg, var(--white));
}
.mod-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 68% 30%, rgba(0,209,255,.08), transparent 58%),
    linear-gradient(170deg, var(--slate-50) 0%, var(--white) 100%);
  pointer-events: none;
}
html[data-theme="dark"] .mod-hero { background: var(--theme-bg, #07111f); }
html[data-theme="dark"] .mod-hero::before { display: none; }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .mod-hero { background: var(--theme-bg, #07111f); }
  html:not([data-theme="light"]) .mod-hero::before { display: none; }
}
.mod-hero-layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.mod-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 700;
  color: var(--slate-400);
  margin-bottom: 20px;
}
.mod-breadcrumb a { color: var(--slate-500); }
.mod-breadcrumb a:hover { color: var(--navy); }
.mod-breadcrumb-sep { color: var(--slate-300); }
.mod-breadcrumb-current { color: var(--cyan); }
.mod-h1 {
  font-size: clamp(2.2rem, 4.2vw, 4.2rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -.052em !important;
  color: var(--theme-heading, var(--navy)) !important;
  margin-bottom: 18px !important;
  text-align: left !important;
  max-width: none !important;
}
.mod-lead { font-size: clamp(.96rem, 1.3vw, 1.08rem); color: var(--theme-muted, var(--slate-500)); line-height: 1.7; max-width: 520px; margin-bottom: 30px; }
.mod-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.mod-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.mod-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 999px;
  background: var(--cyan-soft); border: 1px solid rgba(0,209,255,.2);
  color: var(--navy); font-size: .76rem; font-weight: 760;
}
html[data-theme="dark"] .mod-badge { color: #f8fafc; border-color: rgba(0,209,255,.3); }

/* Features Grid für Modul */
.mod-features { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; margin-top: 60px; }
.mod-feature {
  padding: 26px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-card);
  transition: transform .25s cubic-bezier(.2,.8,.3,1), border-color .25s ease;
}
.mod-feature:hover { transform: perspective(800px) translateY(-5px) rotateX(2deg); border-color: rgba(0,209,255,.4); }
.mod-feature-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--cyan-soft); display: flex; align-items: center; justify-content: center; color: var(--navy); margin-bottom: 14px; }
.mod-feature-icon svg { width: 20px; height: 20px; }
.mod-feature:hover .mod-feature-icon { background: var(--cyan); color: #fff; }
.mod-feature h3 { font-size: 1rem; font-weight: 720; color: var(--navy); margin-bottom: 8px; }
.mod-feature p { font-size: .88rem; color: var(--slate-500); line-height: 1.62; margin: 0; }

/* Connections section auf Modul-Seite */
.mod-connections { padding: 80px 0; background: var(--slate-50); }
html[data-theme="dark"] .mod-connections { background: var(--theme-surface-muted, #0a1626); }
.mod-conn-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 44px; }
.mod-conn-card { padding: 20px; border-radius: 16px; background: var(--white); border: 1px solid var(--slate-200); box-shadow: var(--shadow-card); transition: transform .25s, border-color .25s; }
.mod-conn-card:hover { transform: perspective(800px) translateY(-4px); border-color: rgba(0,209,255,.38); }
.mod-conn-direction { font-size: .68rem; font-weight: 780; color: var(--cyan); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.mod-conn-product { font-size: .86rem; font-weight: 720; color: var(--navy); margin-bottom: 7px; }
.mod-conn-desc { font-size: .82rem; color: var(--slate-500); line-height: 1.55; margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .pro-hero-layout { grid-template-columns: 1fr; }
  .pro-h1 { font-size: clamp(2.4rem, 8vw, 3.8rem) !important; }
  .pro-hero-visual { display: none; }
  .pro-connect-grid { grid-template-columns: repeat(2,1fr); }
  .pro-story-grid { grid-template-columns: 1fr; }
  .mod-hero-layout { grid-template-columns: 1fr; }
  .mod-features { grid-template-columns: repeat(2,1fr); }
  .mod-conn-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .pro-hero { padding: 108px 0 56px; min-height: auto; }
  .pro-connect-grid { grid-template-columns: 1fr; }
  .pro-hero-actions { flex-direction: column; }
  .pro-hero-actions .btn-large { width: 100%; text-align: center; }
  .mod-features { grid-template-columns: 1fr; }
  .mod-conn-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .pro-mockup-float, [data-card], .rv-inner { animation: none !important; transition: none !important; }
  .mini-wave span, .mini-status-dot { animation: none !important; }
}
