/* ================================================================
   immorise · Prototyp · Styles
   Farben aus Logo:
   --orange #FB923C · --magenta #EC4899 · --cyan #22D3DC
   --cyan-deep #06B6D4 · --lime #BEF264
   ================================================================ */

:root {
  /* Logo-Markenfarben */
  --orange: #FB923C;
  --magenta: #EC4899;
  --cyan: #22D3DC;
  --cyan-deep: #06B6D4;
  --lime: #BEF264;

  /* Brand-Akzente aus Design-Referenz (passend zu Logo-Lime) */
  --brand-green-light: #e8fbc6;
  --brand-green: #c6f56f;

  /* Sekundär & Akzent */
  --ink: #1a1a1c;        /* secondary aus Referenz */
  --ink-soft: #334155;
  --muted: #64748B;
  --accent: #fcfcfc;

  /* Background-Palette (Light) – aus Design-Referenz */
  --bg-1: #fcfcfd;
  --bg-2: #f9fafb;
  --bg-3: #f4f5f8;
  --bg-4: #f0f2f6;
  /* Aliases für Bestandskompatibilität */
  --bg: #FFFFFF;
  --bg-soft: var(--bg-2);

  /* Background-Palette (Dark) – aus Design-Referenz */
  --bg-dark-1: #13171e;
  --bg-dark-2: #0f1217;
  --bg-dark-3: #181d26;
  --bg-dark-4: #070b10;

  /* Strokes / Lines (Light) */
  --line: #dfe4eb;
  --line-soft: #eceff4;

  /* Schatten */
  --shadow-card: 0 30px 60px -20px rgba(15, 23, 42, 0.18), 0 8px 20px -10px rgba(15, 23, 42, 0.08);
  --shadow-nav: 0 10px 30px -10px rgba(15, 23, 42, 0.12);

  /* Border-Radius-Skala aus Design-Referenz */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-4xl: 2rem;
  --radius-pill: 9999px;
  /* Aliases */
  --radius-card: var(--radius-3xl);
  --radius-btn: var(--radius-xl);

  --font-display: 'Cabin', 'Inter', system-ui, sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --container: 1290px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Mobile: kein horizontales Scrollen, ABER overflow-x: clip statt hidden,
     damit position: sticky (Navbar) weiterhin funktioniert.
     `clip` ist die moderne Property die overflow verhindert ohne sticky zu brechen. */
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}
/* Sections und Wrapper dürfen nicht horizontal überlaufen (clip statt hidden, damit sticky funktioniert) */
section, footer, main, .section, .section-inner {
  max-width: 100vw;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

/* ================================================================
   NAVBAR – Pill, schwebend
   ================================================================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 24px 0;
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-nav);
  padding: 10px 14px 10px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.logo-full {
  display: inline-block;
  height: 42px;
  width: auto;
}

.logo-text { color: var(--ink); }

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 14.5px;
  padding: 6px 4px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }

.nav-links li { position: relative; }
.nav-has-sub > a { cursor: pointer; }
/* Hover-Bridge: unsichtbare Brücke zwischen Trigger und Submenu, damit der Mauszeiger
   beim Wandern nach unten nicht im "Gap" verloren geht. */
.nav-has-sub::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 320px;
  height: 18px;
  transform: translateX(-50%);
  pointer-events: none;
}
.nav-has-sub:hover::after,
.nav-has-sub:focus-within::after { pointer-events: auto; }

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  min-width: 340px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 64px -16px rgba(15, 23, 42, 0.24), 0 4px 16px -4px rgba(15, 23, 42, 0.08);
  z-index: 100;
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.18s;
  pointer-events: none;
}
.nav-has-sub:hover > .nav-submenu,
.nav-has-sub:focus-within > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-submenu a {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  white-space: nowrap;
  font-size: 14px;
  color: var(--ink-soft);
  transition: background 0.15s, color 0.15s;
}
.nav-submenu a::before {
  content: '';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sub-c, linear-gradient(135deg, var(--orange), var(--magenta)));
  flex-shrink: 0;
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 4px rgba(15, 23, 42, 0.06);
}
.nav-submenu a:nth-child(1)::before { background: linear-gradient(135deg, var(--cyan), var(--cyan-deep)); }
.nav-submenu a:nth-child(2)::before { background: linear-gradient(135deg, var(--orange), var(--magenta)); }
.nav-submenu a:nth-child(3)::before { background: linear-gradient(135deg, var(--lime), var(--cyan)); }
.nav-submenu a:nth-child(4)::before { background: linear-gradient(135deg, var(--magenta), var(--orange)); }
.nav-submenu a:hover {
  background: rgba(251, 146, 60, 0.06);
  color: var(--ink);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
}
.lang-btn {
  font-weight: 600;
  padding: 4px 6px;
  color: var(--muted);
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.lang-btn.is-active { color: var(--ink); }
.lang-btn:hover { color: var(--ink); }
.lang-sep { color: var(--line); }

.nav-login {
  font-size: 13.5px;
  color: var(--cyan-deep);
  font-weight: 600;
  padding: 7px 14px;
  border: 1.5px solid color-mix(in srgb, var(--cyan-deep) 32%, transparent);
  border-radius: 999px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  letter-spacing: 0.01em;
}
.nav-login:hover {
  background: color-mix(in srgb, var(--cyan-deep) 8%, transparent);
  border-color: var(--cyan-deep);
  color: var(--cyan-deep);
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 20px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: #1e293b;
  box-shadow: 0 14px 28px -10px rgba(15, 23, 42, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border-color: rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 16px;
  padding: 14px 26px;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 24px 56px;
}

/* Hero: animierter, immersiver Hintergrund */
.hero {
  background: var(--bg-3);
  padding-top: 96px;
  padding-bottom: 96px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-v2 {
  background: linear-gradient(180deg, #FAFBFD 0%, #F0F2F6 100%);
}

/* Hero V3: echtes Plattform-Bild im Hintergrund + Live-Cards */
.hero-bg-v3 {
  background: linear-gradient(180deg, #FAFBFD 0%, #F0F2F6 100%);
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.85;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.05) 85%, transparent 100%),
    linear-gradient(180deg, rgba(247, 249, 252, 0.4) 0%, rgba(247, 249, 252, 0.65) 100%);
  pointer-events: none;
}

/* Verortete Marker-Pins im Panorama */
.hero-markers {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hm {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
  animation: hmFloat 6s ease-in-out infinite;
}
.hm-orange { --hmc: #FB923C; }
.hm-magenta { --hmc: #EC4899; animation-delay: -1.5s; }
.hm-cyan { --hmc: #06B6D4; animation-delay: -3s; }
.hm-lime { --hmc: #65a30d; animation-delay: -4.5s; }
@keyframes hmFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 6px)); }
}
.hm-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--hmc);
  border: 3px solid #fff;
  box-shadow: 0 6px 18px -4px rgba(15, 23, 42, 0.35), 0 0 0 0 color-mix(in srgb, var(--hmc) 60%, transparent);
  animation: hmPulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes hmPulse {
  0%, 100% { box-shadow: 0 6px 18px -4px rgba(15, 23, 42, 0.35), 0 0 0 0 color-mix(in srgb, var(--hmc) 60%, transparent); }
  50% { box-shadow: 0 6px 18px -4px rgba(15, 23, 42, 0.35), 0 0 0 10px color-mix(in srgb, var(--hmc) 0%, transparent); }
}
.hm-label {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.3;
  padding: 6px 10px;
  border-radius: 10px;
  white-space: nowrap;
  border: 1px solid color-mix(in srgb, var(--hmc) 30%, transparent);
}
.hm-label em {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 10.5px;
  opacity: 0.75;
  margin-top: 1px;
}

/* Live-Dashboard rechts oben */
.hero-dashboard {
  position: absolute;
  top: 88px;
  right: 32px;
  width: 340px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius-3xl);
  padding: 18px 18px 14px;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.2), 0 8px 20px -10px rgba(15, 23, 42, 0.08);
  z-index: 4;
  animation: heroFloatDash 8s ease-in-out infinite;
}
@keyframes heroFloatDash {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-dashboard .hd-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--font-display);
}
.hero-dashboard .hd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(190, 242, 100, 0.7);
  animation: pulse 2s infinite;
}
.hero-dashboard .hd-head strong {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  flex: 1;
}
.hero-dashboard .hd-count {
  font-size: 11px;
  font-weight: 700;
  background: var(--ink);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.hero-dashboard .hd-list {
  display: grid;
  gap: 8px;
}
.hero-dashboard .hd-list li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  background: var(--bg-2);
  transition: background 0.2s;
}
.hero-dashboard .hd-list li:hover { background: var(--bg-3); }
.hero-dashboard .hd-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.hero-dashboard .hd-icon-orange { background: rgba(251, 146, 60, 0.15); }
.hero-dashboard .hd-icon-magenta { background: rgba(236, 72, 153, 0.13); }
.hero-dashboard .hd-icon-cyan { background: rgba(6, 182, 212, 0.13); }
.hero-dashboard .hd-icon-lime { background: rgba(190, 242, 100, 0.25); }
.hero-dashboard .hd-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.hero-dashboard .hd-list > li > div > span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
  margin-top: 2px;
}
.hero-dashboard .hd-date {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* Floating Notification links oben */
.hero-notif {
  position: absolute;
  top: 110px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 18px 10px 12px;
  box-shadow: 0 18px 40px -15px rgba(15, 23, 42, 0.18);
  z-index: 4;
  max-width: 280px;
  animation: heroFloatNotif 7s ease-in-out infinite;
}
@keyframes heroFloatNotif {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-notif .hn-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.7);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}
.hero-notif strong {
  display: block;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.hero-notif > div > span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* Floating KPI-Pin links unten */
.hero-kpi-pin {
  position: absolute;
  bottom: 80px;
  left: 48px;
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius-3xl);
  box-shadow: 0 24px 50px -20px rgba(236, 72, 153, 0.5);
  z-index: 4;
  text-align: left;
  animation: heroFloatKpi 9s ease-in-out infinite;
}
@keyframes heroFloatKpi {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-kpi-pin strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.hero-kpi-pin span {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .hero-dashboard { width: 280px; right: 16px; top: 80px; }
  .hero-notif { display: none; }
  .hero-kpi-pin { display: none; }
}
@media (max-width: 760px) {
  .hero-dashboard { display: none; }
  .hero-photo { opacity: 0.35; }
}
.hero-mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: heroMeshFloat 24s ease-in-out infinite;
}
.hero-mesh-1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.55), transparent 65%);
  top: -120px; left: -120px;
}
.hero-mesh-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.45), transparent 65%);
  top: 20%; right: -80px;
  animation-delay: -6s;
}
.hero-mesh-3 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34, 211, 220, 0.45), transparent 65%);
  bottom: -200px; left: 30%;
  animation-delay: -12s;
}
.hero-mesh-4 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(190, 242, 100, 0.5), transparent 65%);
  bottom: 10%; right: 25%;
  animation-delay: -18s;
}
@keyframes heroMeshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.08); }
  50% { transform: translate(-20px, 40px) scale(0.95); }
  75% { transform: translate(30px, 20px) scale(1.04); }
}
.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Großes isometrisches Gebäude im Hero */
.hero-building {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.95;
  pointer-events: none;
}
.hero-building .hb-building {
  transform-origin: 665px 380px;
  animation: heroBuildingFloat 18s ease-in-out infinite;
}
@keyframes heroBuildingFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-building .hb-pin {
  animation: heroPinFloat 9s ease-in-out infinite;
}
.hero-building .hb-pin-1 { animation-delay: -0s; }
.hero-building .hb-pin-2 { animation-delay: -2.2s; }
.hero-building .hb-pin-3 { animation-delay: -4.4s; }
.hero-building .hb-pin-4 { animation-delay: -6.6s; }
@keyframes heroPinFloat {
  0%, 100% { transform: translateY(0); opacity: 0.95; }
  50% { transform: translateY(-6px); opacity: 1; }
}
@media (max-width: 900px) {
  .hero-building { opacity: 0.18; }
}

/* ===== Hero V3: 2-Spalten – Text links, Visual rechts ===== */
.hero-bg-v4 {
  background: linear-gradient(180deg, #FAFBFD 0%, #F0F2F6 100%);
}
.hero-inner.hero-inner-v3 {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  min-height: 560px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-content.hero-content-v3 {
  text-align: left !important;
  padding: 0 16px;
}
.hero-content-v3 .eyebrow,
.hero-content-v3 .hero-cta { justify-content: flex-start; }
.hero-content-v3 .hero-cta { display: inline-flex; flex-wrap: wrap; }
.hero-content-v3 .hero-trust { text-align: left; }

.hero-headline-v3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  text-align: left;
}
.hero-headline-v3 .hl-line {
  display: block;
  white-space: nowrap;
  overflow: visible;
  padding: 0.04em 0.04em 0.16em;
}
.hero-headline-v3 .hl-line.grad-text {
  background: linear-gradient(95deg, var(--orange) 0%, var(--magenta) 35%, var(--cyan-deep) 70%, var(--lime) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradShift 10s ease-in-out infinite;
}

/* Visual-Card rechts (Panorama-Frame mit Tabs) */
.hero-visual {
  position: relative;
  padding: 0 16px;
}
.hv-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(15, 23, 42, 0.28), 0 12px 30px -12px rgba(15, 23, 42, 0.08);
  transform: rotate(-0.5deg);
  transition: transform 0.4s ease;
}
.hv-frame:hover { transform: rotate(0deg) translateY(-4px); }
.hv-frame-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
}
.hv-frame-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  cursor: pointer;
}
.hv-frame-tab.is-active {
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 2px 6px -2px rgba(15, 23, 42, 0.1);
}
.hv-tab-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.hv-frame-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(190, 242, 100, 0.25);
  color: #4d7c0f;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hv-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #65a30d;
  box-shadow: 0 0 0 0 rgba(101, 163, 13, 0.7);
  animation: pulse 2s infinite;
}
.hv-frame-body {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-2);
}
.hv-frame-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hv-frame-body .hm {
  /* Marker erben Styles aus .hm-*, brauchen aber pointer-events */
  pointer-events: none;
}
.hv-frame-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #fff;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 12.5px;
}
.hv-foot-key { color: var(--ink-soft); font-weight: 500; }
.hv-foot-count { font-weight: 700; color: var(--orange); }

.hv-notif {
  position: absolute;
  top: -20px;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 9px 16px 9px 10px;
  box-shadow: 0 18px 36px -14px rgba(15, 23, 42, 0.2);
  z-index: 4;
  animation: heroFloatNotif 7s ease-in-out infinite;
}
.hv-notif-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.7);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}
.hv-notif strong {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.hv-notif > div > span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}

@media (max-width: 1000px) {
  .hero-inner.hero-inner-v3 {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-content.hero-content-v3 {
    text-align: center !important;
  }
  .hero-content-v3 .eyebrow,
  .hero-content-v3 .hero-cta { justify-content: center; }
  .hero-headline-v3 { text-align: center; }
  .hero-headline-v3 .hl-line { white-space: normal; }
  .hv-frame { transform: rotate(0); }
}
@media (max-width: 600px) {
  .hv-frame-tab:nth-child(n+3) { display: none; }
  .hv-notif { display: none; }
}

/* ===== Hero V2 Layout – alt, wird nicht mehr verwendet ===== */
.hero-inner.hero-inner-v2 {
  display: flex !important;
  align-items: center;
  justify-content: center;
  grid-template-columns: none;
  min-height: 540px;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-content.hero-content-v2 {
  text-align: center !important;
  align-self: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 24px;
  overflow: visible;
  position: relative;
  z-index: 3;
}
.hero-content.hero-content-v2::before {
  content: '';
  position: absolute;
  inset: -40px -60px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 80%);
  z-index: -1;
  pointer-events: none;
}
.hero-content-v2 .eyebrow,
.hero-content-v2 .hero-cta { justify-content: center; }
.hero-content-v2 .hero-cta { display: inline-flex; }
.hero-content-v2 .hero-trust { text-align: center; }

.hero-headline-v2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 1.28;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  overflow: visible;
}
.hero-headline-v2 .hl-line {
  display: block;
  white-space: nowrap;
  overflow: visible;
  /* Padding gibt dem Gradient-Text Atemraum, damit Unterlängen nicht clippen */
  padding: 0.06em 0.05em 0.18em;
  margin: 0;
}
.hero-headline-v2 .hl-line.grad-text {
  background: linear-gradient(95deg, var(--orange) 0%, var(--magenta) 35%, var(--cyan-deep) 70%, var(--lime) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradShift 10s ease-in-out infinite;
}
@media (max-width: 900px) {
  .hero-headline-v2 {
    font-size: clamp(28px, 7vw, 56px);
  }
}
@media (max-width: 600px) {
  .hero-headline-v2 {
    font-size: clamp(26px, 8vw, 40px);
  }
  .hero-headline-v2 .hl-line {
    white-space: normal;
  }
}
.hero-bg-mark {
  position: absolute;
  opacity: 0.07;
  pointer-events: none;
}
.hero-bg-mark img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-bg-mark-tr {
  top: -60px;
  right: -40px;
  width: 280px;
  height: 640px;
  transform: rotate(15deg);
}
.hero-bg-mark-bl {
  bottom: -120px;
  left: -60px;
  width: 240px;
  height: 550px;
  transform: rotate(-15deg);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  min-height: 580px;
}
.hero-content {
  align-self: center;
}
.float-card {
  display: flex;
  flex-direction: column;
  align-self: center;
  height: auto;
  min-height: 440px;
}
.float-card .card-foot { margin-top: auto; }

/* Hero Mitte – linksbündig */
.hero-content {
  text-align: left;
  padding: 24px 8px;
}
.hero-cta {
  justify-content: flex-start;
}
.hero-sub {
  margin-left: 0;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-green-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 22px;
}
.dot-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(190, 242, 100, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(190, 242, 100, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(190, 242, 100, 0); }
  100% { box-shadow: 0 0 0 0 rgba(190, 242, 100, 0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: var(--ink);
}

.grad-text {
  background: linear-gradient(95deg, var(--orange) 0%, var(--magenta) 35%, var(--cyan-deep) 70%, var(--lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: gradShift 10s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
}

.hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-trust {
  font-size: 13px;
  color: var(--muted);
  margin: 6px 0 18px;
}

/* Trust-Badges unter den CTAs */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.htb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 9px 14px 9px 10px;
  box-shadow: 0 6px 18px -10px rgba(15, 23, 42, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.htb:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(15, 23, 42, 0.18);
}
.htb-flag {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.htb > span:not(.htb-flag) {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.2;
}
.htb strong {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}
.htb > span > span {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}
@media (max-width: 600px) {
  .hero-trust-badges { justify-content: center; }
}

/* Floating Cards */
.float-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 16px;
  animation: cardFloat 9s ease-in-out infinite;
}
.float-card-left { animation-delay: -1s; }
.float-card-right { animation-delay: -5s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.card-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}
.card-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: rgba(190, 242, 100, 0.25);
  color: #4d7c0f;
}
.dot-live {
  width: 6px; height: 6px; border-radius: 50%;
  background: #65a30d;
  animation: pulse 2s infinite;
}
.card-link {
  font-size: 11px;
  color: var(--cyan-deep);
  font-weight: 600;
}

.card-3d {
  width: 100%;
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.6), rgba(247, 249, 252, 0));
  border-radius: 14px;
  padding: 8px 4px;
  margin-bottom: 10px;
}
.card-3d svg { width: 100%; height: auto; display: block; }

.card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--bg-2);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mab-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.card-meta {
  display: grid;
  gap: 6px;
  font-size: 12.5px;
}
.card-meta li {
  display: flex;
  justify-content: space-between;
  padding: 5px 4px;
  border-top: 1px dashed var(--line);
}
.card-meta li:first-child { border-top: 0; }
.meta-key { color: var(--muted); }
.meta-val { color: var(--ink); font-weight: 600; }
.pill-num {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: var(--radius-pill);
}
.pill-num-lime { background: #4d7c0f; }

/* Aktivitäten-Liste (rechte Karte) */
.activity-list {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.activity-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 8px;
  border-radius: 12px;
  background: rgba(247, 249, 252, 0.65);
  transition: background 0.2s;
}
.activity-list li:hover { background: rgba(247, 249, 252, 1); }
.act-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.act-orange { background: var(--orange); }
.act-cyan { background: var(--cyan-deep); }
.act-lime { background: var(--lime); color: #1a2e05; }
.act-magenta { background: var(--magenta); }

.activity-list strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}
.act-meta {
  font-size: 11.5px;
  color: var(--muted);
}

.card-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.card-foot-key {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}
.lifecycle-track {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.lc {
  height: 6px;
  border-radius: 3px;
  background: var(--line);
}
.lc-done { background: var(--cyan-deep); }
.lc-now {
  background: linear-gradient(90deg, var(--orange), var(--magenta));
  box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.6);
  animation: pulse 2s infinite;
}

/* ================================================================
   BRAND STRIP
   ================================================================ */
.brand-strip {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.brand-strip-track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  padding: 8px 0;
}
.brand-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   GENERIC SECTION
   ================================================================ */
.section {
  padding: 96px 24px;
  position: relative;
}
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 16px;
  padding: 5px 14px;
  background: var(--brand-green-light);
  border-radius: var(--radius-pill);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.022em;
  margin: 0 0 16px;
  color: var(--ink);
}
.section-sub {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0;
}

/* ================================================================
   TRUST STATS – helle Section, dunkle Kacheln, riesige Zahlen
   ================================================================ */
.section-trust-stats {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-top: 96px;
  padding-bottom: 96px;
}
.trust-stats-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.trust-stats-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
}
.trust-stat {
  background: #0A0A0A;
  color: #fff;
  border-radius: var(--radius-3xl);
  padding: 40px 36px 36px;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: block;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 14px 36px -20px rgba(10, 10, 10, 0.35);
}
.trust-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(251, 146, 60, 0.2), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(6, 182, 212, 0.16), transparent 60%);
  pointer-events: none;
}
.trust-stat:nth-child(2)::before {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(236, 72, 153, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(190, 242, 100, 0.14), transparent 60%);
}
.trust-stat:nth-child(3)::before {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(34, 211, 220, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(251, 146, 60, 0.14), transparent 60%);
}
.trust-stat:nth-child(4)::before {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(190, 242, 100, 0.24), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(236, 72, 153, 0.14), transparent 60%);
}
.trust-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -20px rgba(10, 10, 10, 0.5);
}
.trust-stat-num,
.trust-stat strong,
.trust-stat span {
  position: relative;
  z-index: 1;
}
/* SOLIDE FARBEN pro Karte – kein Gradient, kein negatives letter-spacing */
.trust-stat-num {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: clamp(48px, 5vw, 76px) !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  font-variant-numeric: tabular-nums;
  margin: 0 0 20px !important;
  padding: 0 !important;
  display: block !important;
  color: #FB923C;
  white-space: nowrap !important;
  overflow: visible;
}
.trust-stats-grid .trust-stat:nth-child(1) .trust-stat-num { color: #FB923C !important; }
.trust-stats-grid .trust-stat:nth-child(2) .trust-stat-num { color: #EC4899 !important; }
.trust-stats-grid .trust-stat:nth-child(3) .trust-stat-num { color: #22D3DC !important; }

.trust-stat-num .ts-count,
.trust-stat-num .trust-stat-unit {
  display: inline !important;
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
  letter-spacing: 0 !important;
  line-height: inherit !important;
}
.trust-stat-num .ts-count {
  font-size: inherit !important; /* erbt 104px vom parent .trust-stat-num, nicht 13.5px von .trust-stat span */
  font-weight: 700 !important;
}
.trust-stat-num .trust-stat-unit {
  font-size: 0.4em !important;
  font-weight: 600 !important;
  margin-left: 0.1em;
}
.trust-stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.trust-stat span {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .trust-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-stats-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-stat { padding: 32px 28px; }
  .trust-stat-num { font-size: clamp(56px, 9vw, 88px); }
}
@media (max-width: 600px) {
  .trust-stats-grid, .trust-stats-grid-3 { grid-template-columns: 1fr; }
  .trust-stat-num { font-size: clamp(56px, 14vw, 84px); }
}

/* ================================================================
   KPI ZAHLEN
   ================================================================ */
.section-kpis {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 88px 24px;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.kpi-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
}
.kpi {
  text-align: center;
  padding: 16px 24px;
}
.kpi-num {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: clamp(56px, 6.5vw, 96px) !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  font-variant-numeric: tabular-nums;
  margin-bottom: 18px !important;
  display: block !important;
  color: #FB923C;
  white-space: nowrap !important;
}
.kpi-grid .kpi:nth-child(1) .kpi-num { color: #FB923C !important; }
.kpi-grid .kpi:nth-child(2) .kpi-num { color: #EC4899 !important; }
.kpi-grid .kpi:nth-child(3) .kpi-num { color: #22D3DC !important; }
.kpi-num .kpi-val,
.kpi-num .kpi-unit {
  display: inline !important;
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
  letter-spacing: 0 !important;
  line-height: inherit !important;
}
.kpi-num .kpi-val {
  font-size: inherit !important; /* gleiche Größe wie parent .kpi-num */
  font-weight: 700 !important;
}
.kpi-num .kpi-unit {
  font-size: 0.42em !important;
  font-weight: 600 !important;
  margin-left: 0.06em;
}
.kpi strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.kpi span {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .kpi-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   WORKFLOW VISUALISIERUNG
   ================================================================ */
.section-workflow {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}

.wf-diagram {
  display: grid;
  grid-template-columns: 220px 1fr 220px 1fr 220px;
  align-items: stretch;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto 48px;
  min-height: 480px;
}

/* ===== Workflow V2: Overlay-Lines mit exakt platzierten Boxen ===== */
.wf-diagram-v2 {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  grid-template-rows: 1fr;
  max-width: 1280px;
  margin: 0 auto 48px;
  min-height: 640px;
  padding: 0 16px;
  gap: 48px;
}
.wf-diagram-v2 .wf-col {
  position: relative;
  z-index: 2;
}
.wf-diagram-v2 .wf-col-inputs {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 0;
  padding: 60px 0;
}
.wf-diagram-v2 .wf-col-outputs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  padding: 24px 0;
}
.wf-diagram-v2 .wf-col-core {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG-Linien als Overlay über das ganze Grid */
.wf-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

/* Input-Boxen (links) – schmaler, einheitliche Breite */
.wf-box-in {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  box-shadow: 0 12px 28px -16px rgba(15, 23, 42, 0.12);
  padding: 12px 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 200px;
  color: var(--c);
  position: relative;
}
/* Schlanker Gradient-Akzent oben in der Kachel-Farbe (Pille, eingerückt) */
.wf-box-in::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(135deg, var(--c) 0%, var(--c2, var(--c)) 100%);
  opacity: 0.95;
}
.wf-box-in:hover {
  transform: translateX(2px);
  box-shadow: 0 16px 36px -16px rgba(15, 23, 42, 0.2);
}
/* Category-Icon mit zwei-Farben-Gradient */
.wf-box-in[style*="--c2"] .wf-box-cat-icon {
  background: linear-gradient(135deg, color-mix(in srgb, var(--c) 14%, white), color-mix(in srgb, var(--c2) 14%, white));
}
.wf-box-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c);
  font-weight: 700;
  margin-bottom: 10px;
}
.wf-box-head > span[data-i18n] { flex: 1 1 auto; min-width: 0; }
.wf-box-cat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--c) 12%, white);
  color: var(--c);
  flex-shrink: 0;
}
.wf-box-cat-icon svg { width: 13px; height: 13px; }

/* Action-Buttons im Header rechts */
.wf-box-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.wf-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--c, var(--orange)) 0%, var(--c2, var(--c, var(--orange))) 100%);
  border: 0;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -4px color-mix(in srgb, var(--c, var(--orange)) 50%, transparent);
}
.wf-icon-btn svg { width: 13px; height: 13px; }
.wf-icon-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 6px 14px -4px color-mix(in srgb, var(--c, var(--orange)) 60%, transparent);
}

/* Body ohne Actions-Spalte: nur die Liste */
.wf-box-body-list {
  padding-top: 2px;
}
.wf-box-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wf-box-text strong {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.wf-box-text span {
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.35;
}

/* Inputs als 3-Punkt-Liste – Begriff oben, Format als neue Zeile */
.wf-box-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.wf-box-list li {
  position: relative;
  padding-left: 14px;
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.25;
}
.wf-box-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c, var(--orange));
}
.wf-box-list li strong {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 12.5px;
}
.wf-box-list li span {
  display: block;
  margin-top: 1px;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 10.5px;
  letter-spacing: 0.01em;
}

/* (alte action-btn-styles entfernt – durch .wf-icon-btn ersetzt) */

/* Output-Boxen (rechts) – kompakter */
.wf-box-out {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 9px 16px 9px 10px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  width: 220px;
  box-shadow: 0 8px 20px -12px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wf-box-out:hover {
  transform: translateX(-2px);
  box-shadow: 0 14px 28px -14px rgba(15, 23, 42, 0.2);
}
.wf-box-out-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c) 14%, white);
  color: var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wf-box-out-icon svg { width: 16px; height: 16px; }

/* Zentrum V2: Logo + Pills */
.wf-core-v2 {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.wf-core-v2 .wf-core-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(15, 23, 42, 0.14);
  animation: wfSpin 30s linear infinite;
}
.wf-core-v2 .wf-core-ring-2 {
  inset: 30px;
  border-color: rgba(15, 23, 42, 0.09);
  animation: wfSpin 22s linear infinite reverse;
}
.wf-core-glow {
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.18), rgba(236, 72, 153, 0.12) 40%, transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

/* V7 Core: 3 rotierende Ringe – KI → Mapping → 3D-Twin, alle Bubbles über dem Logo */
.wf-core.wf-core-v7 {
  position: relative !important;
  width: 540px !important;
  height: 540px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
}
.wf-core-v7 .wf-core-glow {
  position: absolute;
  inset: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.22), rgba(236, 72, 153, 0.14) 40%, transparent 70%);
  filter: blur(16px);
  z-index: 0;
}
.wf-core-v7 .wf-core-logo {
  position: relative;
  z-index: 2;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.22);
}
.wf-core-v7 .wf-core-logo img {
  width: 86px;
  height: auto;
  display: block;
  position: relative;
  z-index: 3;
}
/* "Plattform"-Schriftring direkt um den Logo-Kreis */
.wf-core-v7 .wf-core-logo::before {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background: #F4F5F8;
  z-index: 1;
}
.wf-core-v7 .wf-core-logo::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
}
.wf-core-v7 .wf-platform-label-ring {
  position: absolute;
  inset: -22px;
  z-index: 4;
  pointer-events: none;
  animation: wfPlatformLabelSpin 90s linear infinite;
}
.wf-core-v7 .wf-platform-label-ring svg { width: 100%; height: 100%; }
.wf-core-v7 .wf-platform-label-ring text {
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 700;
  fill: #1a1a1c;
  letter-spacing: 0.46em;
  text-transform: uppercase;
}
@keyframes wfPlatformLabelSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.wf-core-v7 .wf-orbit-dots {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  z-index: 1;
  pointer-events: none;
}

/* Drei rotierende Ringe: außen → mitte → innen, klar getrennt */
.wf-core-v7 .wf-rotor {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(15, 23, 42, 0.16) !important;
  background: transparent !important;
  z-index: 5;
}
.wf-core-v7 .wf-rotor-1 {
  inset: 10px;
  animation: wfRotorCW1 32s linear infinite;
}
.wf-core-v7 .wf-rotor-2 {
  inset: 80px;
  border-color: rgba(15, 23, 42, 0.14) !important;
  animation: wfRotorCCW2 24s linear infinite;
}
.wf-core-v7 .wf-rotor-3 {
  inset: 150px;
  border-color: rgba(15, 23, 42, 0.12) !important;
  animation: wfRotorCW3 18s linear infinite;
}

/* Drei separate Keyframes, damit Start-Positionen versetzt sind (0° / 120° / 240°) */
@keyframes wfRotorCW1 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes wfRotorCCW2 {
  from { transform: rotate(-120deg); }
  to   { transform: rotate(-480deg); }
}
@keyframes wfRotorCW3 {
  from { transform: rotate(240deg); }
  to   { transform: rotate(600deg); }
}

/* Bubble sitzt am oberen Rand des jeweiligen Rings */
.wf-core-v7 .wf-rotor-bubble {
  position: absolute !important;
  top: -20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 6 !important; /* immer über dem Logo */
  background: transparent !important;
}

/* Inhalt der Bubble: counter-rotate damit Text aufrecht bleibt */
.wf-core-v7 .wf-rotor-bubble-inner {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 9px 16px 9px 12px !important;
  border-radius: 9999px !important;
  border: none !important;
  font-family: var(--font-display) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.32), 0 0 0 3px rgba(255, 255, 255, 0.9) !important;
  white-space: nowrap !important;
  width: auto !important;
  height: auto !important;
}

/* Gradient-Hintergründe pro Ring/Bubble – mit !important damit V6-Default überschrieben wird */
.wf-core-v7 .wf-rotor-1 .wf-rotor-bubble-inner {
  background: linear-gradient(135deg, #FB923C 0%, #DC2626 100%) !important;
  animation: wfBubbleCCW1 32s linear infinite;
}
.wf-core-v7 .wf-rotor-2 .wf-rotor-bubble-inner {
  background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%) !important;
  animation: wfBubbleCW2 24s linear infinite;
}
.wf-core-v7 .wf-rotor-3 .wf-rotor-bubble-inner {
  background: linear-gradient(135deg, #06B6D4 0%, #65a30d 100%) !important;
  animation: wfBubbleCCW3 18s linear infinite;
}

/* Counter-Rotation für jede Bubble: gleicher Start-Offset, aber gegenläufig */
@keyframes wfBubbleCCW1 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes wfBubbleCW2 {
  from { transform: rotate(120deg); }
  to   { transform: rotate(480deg); }
}
@keyframes wfBubbleCCW3 {
  from { transform: rotate(-240deg); }
  to   { transform: rotate(-600deg); }
}

.wf-core-v7 .wf-rotor-bubble-inner svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
  color: #fff;
}
.wf-core-v7 .wf-rotor-bubble-inner strong {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: -0.005em;
  white-space: nowrap;
  line-height: 1;
}

/* Gestapelter Text für Mapping-Bubble: "2D → 3D" klein oben + "Mapping" unten */
.wf-core-v7 .wf-rb-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 2px;
}
.wf-core-v7 .wf-rb-stack em {
  font-style: normal;
  font-size: 9px !important;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.wf-core-v7 .wf-rb-stack strong {
  font-size: 13px !important;
  line-height: 1;
}

/* Bubbles einheitlich groß – kompakter, weniger Überlappung */
.wf-core-v7 .wf-rotor-bubble-inner {
  min-width: 0 !important;
  padding: 7px 13px 7px 10px !important;
  gap: 7px !important;
  justify-content: flex-start !important;
}
.wf-core-v7 .wf-rotor-bubble-inner svg {
  width: 14px !important;
  height: 14px !important;
}
.wf-core-v7 .wf-rb-stack { align-items: flex-start; text-align: left; gap: 0; line-height: 1; }
.wf-core-v7 .wf-rb-stack strong { font-size: 11px !important; line-height: 1.1 !important; font-weight: 700; letter-spacing: -0.005em; }
.wf-core-v7 .wf-rb-stack em {
  font-size: 7.5px !important;
  letter-spacing: 0.08em;
  opacity: 0.92;
  text-transform: uppercase;
  font-style: normal;
  white-space: nowrap;
}

/* KI-Sparkle: sanftes Pulsieren statt Drehung */
.wf-core-v7 .wf-sparkle {
  animation: wfSparklePulse 2.4s ease-in-out infinite;
  transform-origin: 50% 50%;
}
@keyframes wfSparklePulse {
  0%, 100% { transform: scale(0.92); opacity: 0.85; }
  50%      { transform: scale(1.08); opacity: 1; }
}

/* Plattform-Hintergrund-Disc (dezenter farbiger Glow als Plattform-Indikator) */
.wf-platform-disc {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(251, 146, 60, 0.16), transparent 55%),
    radial-gradient(circle at 75% 35%, rgba(236, 72, 153, 0.13), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(6, 182, 212, 0.14), transparent 60%),
    radial-gradient(circle at 25% 75%, rgba(190, 242, 100, 0.16), transparent 55%);
  pointer-events: none;
  z-index: 0;
  filter: blur(6px);
  animation: wfPlatformSpin 60s linear infinite;
}
@keyframes wfPlatformSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .wf-core-v7 { width: 440px; height: 440px; }
  .wf-core-v7 .wf-rotor-1 { inset: 10px; }
  .wf-core-v7 .wf-rotor-2 { inset: 70px; }
  .wf-core-v7 .wf-rotor-3 { inset: 130px; }
}
/* ================================================================
   MOBILE-FLOW: lineare Karte komplett deaktiviert – Original-Animation bleibt
   ================================================================ */
.wf-mobile-flow { display: none !important; }

@media (max-width: 720px) {
  /* Force-Center-Container */
  .wf-col-core {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }
  .wf-col-core::before,
  .wf-col-core::after { display: none !important; }

  /* Original-Animation auf Mobile stark verkleinern, sodass sie in den Viewport passt */
  .wf-core.wf-core-v2.wf-core-v7 {
    width: min(300px, calc(100vw - 32px)) !important;
    height: min(300px, calc(100vw - 32px)) !important;
    margin: 0 auto !important;
  }
  /* Logo-Kreis kleiner */
  .wf-core-v7 .wf-core-logo {
    width: 96px !important;
    height: 96px !important;
  }
  .wf-core-v7 .wf-core-logo img { width: 64px !important; }
  .wf-core-v7 .wf-core-logo::before,
  .wf-core-v7 .wf-core-logo::after { inset: -14px !important; }
  .wf-core-v7 .wf-platform-label-ring {
    inset: -14px !important;
  }
  .wf-core-v7 .wf-platform-label-ring text {
    font-size: 7px !important;
    letter-spacing: 0.45em !important;
  }
  /* Platform-Disc enger */
  .wf-core-v7 .wf-platform-disc { inset: 14% !important; filter: blur(12px) !important; }
  /* Orbit-Dots aus für Performance */
  .wf-core-v7 .wf-orbit-dots { display: none !important; }
  /* Rotoren enger an Logo */
  .wf-core-v7 .wf-rotor-1 { inset: 10px !important; }
  .wf-core-v7 .wf-rotor-2 { inset: 46px !important; }
  .wf-core-v7 .wf-rotor-3 { inset: 82px !important; }
  /* Bubbles kompakter */
  .wf-core-v7 .wf-rotor-bubble-inner {
    padding: 5px 10px 5px 7px !important;
    gap: 5px !important;
    box-shadow: 0 8px 18px -4px rgba(15, 23, 42, 0.25), 0 0 0 2px rgba(255, 255, 255, 0.9) !important;
  }
  .wf-core-v7 .wf-rotor-bubble-inner svg {
    width: 12px !important;
    height: 12px !important;
  }
  .wf-core-v7 .wf-rb-stack strong { font-size: 9.5px !important; }
  .wf-core-v7 .wf-rb-stack em { font-size: 6.5px !important; letter-spacing: 0.06em !important; }
  .wf-mobile-platform {
    position: relative;
    padding: 24px 22px 26px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 18px 40px -20px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.05);
    overflow: hidden;
  }
  /* Brand-Mesh-Glow im Hintergrund */
  .wf-mobile-platform::before {
    content: '';
    position: absolute;
    inset: -30%;
    background:
      radial-gradient(circle at 20% 20%, rgba(251, 146, 60, 0.18), transparent 50%),
      radial-gradient(circle at 80% 30%, rgba(236, 72, 153, 0.16), transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.18), transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(190, 242, 100, 0.18), transparent 50%);
    filter: blur(20px);
    z-index: 0;
    animation: wfMobileGlowSpin 60s linear infinite;
    pointer-events: none;
  }
  @keyframes wfMobileGlowSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  .wf-mobile-platform-head,
  .wf-mobile-features,
  .wf-mobile-pulse-dot {
    position: relative;
    z-index: 1;
  }
  .wf-mobile-platform-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.10);
    margin-bottom: 18px;
  }
  .wf-mobile-logo {
    width: 64px;
    height: auto;
    flex-shrink: 0;
  }
  .wf-mobile-eyebrow {
    display: block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 4px;
  }
  .wf-mobile-title {
    display: block;
    font-family: var(--font-display);
    font-size: 14.5px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .wf-mobile-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
  }
  .wf-mobile-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 16px -8px rgba(15, 23, 42, 0.12);
    animation: wfMobileFeatureFloat 4.5s ease-in-out infinite;
  }
  .wf-mobile-feature-ki      { animation-delay: 0s; }
  .wf-mobile-feature-mapping { animation-delay: -1.5s; }
  .wf-mobile-feature-twin    { animation-delay: -3s; }
  @keyframes wfMobileFeatureFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
  }
  .wf-mobile-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
  }
  .wf-mobile-feature-icon svg { width: 17px; height: 17px; }
  .wf-mobile-feature-ki .wf-mobile-feature-icon {
    background: linear-gradient(135deg, #FB923C, #DC2626);
    animation: wfMobileKiPulse 2.4s ease-in-out infinite;
  }
  .wf-mobile-feature-mapping .wf-mobile-feature-icon {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
  }
  .wf-mobile-feature-twin .wf-mobile-feature-icon {
    background: linear-gradient(135deg, #06B6D4, #65a30d);
  }
  @keyframes wfMobileKiPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.5); }
    50%      { box-shadow: 0 0 0 8px rgba(251, 146, 60, 0); }
  }
  .wf-mobile-feature > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
    min-width: 0;
  }
  .wf-mobile-feature strong {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .wf-mobile-feature span {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.35;
  }
  /* Pulse-Dot unten an der Karte */
  .wf-mobile-pulse-dot {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--magenta));
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.5);
    animation: wfMobilePulseDot 2s ease-out infinite;
  }
  @keyframes wfMobilePulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.55); }
    100% { box-shadow: 0 0 0 14px rgba(236, 72, 153, 0); }
  }

  /* Inputs/Outputs auf Mobile auf 100% breite begrenzen */
  .wf-col-inputs, .wf-col-outputs, .wf-col-core { width: 100%; box-sizing: border-box; }
  .wf-box-in, .wf-box-out {
    width: 100% !important;
    max-width: calc(100vw - 40px) !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
}

/* ===== Alte V6 – nicht mehr verwendet ===== */
.wf-core-v6 {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wf-core-v6 .wf-core-glow {
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.18), rgba(236, 72, 153, 0.12) 40%, transparent 70%);
  filter: blur(14px);
  z-index: 0;
}
.wf-core-v6 .wf-core-logo {
  position: relative;
  z-index: 3;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 18px 44px -10px rgba(15, 23, 42, 0.22);
}
.wf-core-v6 .wf-core-logo img {
  width: 92px;
  height: auto;
  display: block;
}

/* Rotierende Ringe */
.wf-rotor {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(15, 23, 42, 0.18);
  z-index: 2;
}
.wf-rotor-outer {
  inset: 10px;
  animation: wfRotorCW 28s linear infinite;
}
.wf-rotor-inner {
  inset: 50px;
  border-color: rgba(15, 23, 42, 0.13);
  animation: wfRotorCCW 22s linear infinite;
}
@keyframes wfRotorCW {
  to { transform: rotate(360deg); }
}
@keyframes wfRotorCCW {
  to { transform: rotate(-360deg); }
}

/* Bubble sitzt am oberen Rand des Rings (rotiert mit) */
.wf-rotor-bubble {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}

/* Inhalt der Bubble rotiert gegen den Ring → bleibt aufrecht */
.wf-rotor-bubble-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px -8px rgba(15, 23, 42, 0.18);
  font-family: var(--font-display);
}
.wf-rotor-outer .wf-rotor-bubble-inner {
  animation: wfRotorCCW 28s linear infinite;
}
.wf-rotor-inner .wf-rotor-bubble-inner {
  animation: wfRotorCW 22s linear infinite;
}
.wf-rotor-bubble-inner svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.wf-rotor-bubble-inner strong {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.wf-rotor-ki {
  color: #FB923C;
  border-color: rgba(251, 146, 60, 0.45);
}
.wf-rotor-mapping {
  color: #EC4899;
  border-color: rgba(236, 72, 153, 0.45);
}

@media (max-width: 700px) {
  .wf-core-v6 { width: 280px; height: 280px; }
  .wf-rotor-outer { inset: 8px; }
  .wf-rotor-inner { inset: 40px; }
}

/* ===== Alte V5 (Orbit-Bubbles) – nicht mehr verwendet ===== */
.wf-core-v5 {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wf-core-v5 .wf-core-glow {
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.2), rgba(236, 72, 153, 0.12) 40%, transparent 70%);
  filter: blur(14px);
  z-index: 0;
}
.wf-core-v5 .wf-core-logo {
  position: relative;
  z-index: 3;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 18px 44px -10px rgba(15, 23, 42, 0.22);
}
.wf-core-v5 .wf-core-logo img {
  width: 92px;
  height: auto;
  display: block;
}

/* Gepunkteter Orbit-Ring (visueller Bezugspunkt) */
.wf-orbit-ring {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1.5px dashed rgba(15, 23, 42, 0.14);
  z-index: 1;
}

/* Datenstrom-Punkte am Ring */
.wf-core-v5 .wf-orbit-dots {
  position: absolute;
  inset: 40px;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  z-index: 1;
  pointer-events: none;
}

/* Orbit-Bubbles: rotieren um das Logo, Inhalt bleibt aufrecht */
.wf-bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 4;
  animation: wfBubbleOrbit 18s linear infinite;
}
.wf-bubble-ki {
  animation-delay: 0s;
}
.wf-bubble-mapping {
  animation-delay: -9s; /* gegenüber positioniert */
}
@keyframes wfBubbleOrbit {
  from { transform: rotate(0deg) translateX(130px); }
  to   { transform: rotate(360deg) translateX(130px); }
}

.wf-bubble-inner {
  position: absolute;
  top: -28px;
  left: -52px;
  width: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 28px -10px rgba(15, 23, 42, 0.22);
  font-family: var(--font-display);
  /* Gegenrotation, damit Text aufrecht bleibt */
  animation: wfBubbleCounter 18s linear infinite;
}
.wf-bubble-ki .wf-bubble-inner {
  color: #FB923C;
  border-color: rgba(251, 146, 60, 0.4);
  animation-delay: 0s;
}
.wf-bubble-mapping .wf-bubble-inner {
  color: #EC4899;
  border-color: rgba(236, 72, 153, 0.4);
  animation-delay: -9s;
}
@keyframes wfBubbleCounter {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
.wf-bubble-inner svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.wf-bubble-inner strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}

@media (max-width: 700px) {
  .wf-core-v5 { width: 280px; height: 280px; }
  @keyframes wfBubbleOrbit {
    from { transform: rotate(0deg) translateX(105px); }
    to   { transform: rotate(360deg) translateX(105px); }
  }
}

/* V4 Core: rotierende Ringe sind jetzt SVG mit Text, keine border-divs mehr nötig */
.wf-core-v4 {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wf-core-v4 .wf-core-glow {
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.18), rgba(236, 72, 153, 0.12) 40%, transparent 70%);
  filter: blur(12px);
  z-index: 0;
}
.wf-core-v4 .wf-orbit {
  position: absolute;
  inset: 30px;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  z-index: 1;
  pointer-events: none;
}
.wf-core-v4 .wf-core-logo {
  position: relative;
  z-index: 3;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 40px -10px rgba(15, 23, 42, 0.18);
}
.wf-core-v4 .wf-core-logo img {
  width: 90px;
  height: auto;
  display: block;
}

/* Orbit-Datenströme: fließen am Kreis entlang */
.wf-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.wf-core-logo {
  position: relative;
  z-index: 2;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 40px -10px rgba(15, 23, 42, 0.18);
}
.wf-core-logo img {
  width: 90px;
  height: auto;
  display: block;
}
.wf-core-v2 .wf-core-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  font-weight: 700;
  background: #fff;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
}
.wf-core-v2 .wf-core-label-mapping,
.wf-core-v2 .wf-core-label-ai {
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px -8px rgba(236, 72, 153, 0.4);
}
.wf-core-v2 .wf-core-meta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 6px;
}
.wf-core-v2 .wf-core-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
}
.wf-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

@media (max-width: 920px) {
  .wf-diagram-v2 {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
    gap: 24px;
    padding: 0 16px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  /* Vertikale Mobile-Connectoren statt SVG-Overlay */
  .wf-lines { display: none; }
  .wf-diagram-v2 .wf-col-inputs {
    flex-direction: column;
    gap: 12px;
    padding: 0;
    position: relative;
    width: 100%;
    align-items: stretch;
  }
  .wf-diagram-v2 .wf-col-outputs {
    flex-direction: column;
    gap: 10px;
    padding: 0;
    position: relative;
    width: 100%;
    align-items: stretch;
  }
  .wf-box-in, .wf-box-out {
    width: 100%;
    max-width: min(380px, calc(100vw - 32px));
    margin: 0 auto;
    box-sizing: border-box;
  }
  /* Vertikale Verbinder zwischen Inputs/Core/Outputs */
  .wf-col-inputs::after,
  .wf-col-core::after {
    content: '';
    display: block;
    width: 2px;
    height: 32px;
    margin: 8px auto 0;
    background: linear-gradient(180deg, rgba(251, 146, 60, 0.6), rgba(34, 211, 220, 0.6));
    border-radius: 2px;
    position: relative;
  }
  .wf-col-core::after {
    background: linear-gradient(180deg, rgba(236, 72, 153, 0.6), rgba(190, 242, 100, 0.6));
  }
  /* Pulsierender Animation-Punkt auf den Mobile-Connector */
  .wf-col-inputs::before,
  .wf-col-core::before {
    content: '';
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.7);
    animation: wfMobilePulse 2.4s ease-in-out infinite;
    z-index: 3;
  }
  .wf-col-core::before {
    background: var(--magenta);
    animation-delay: -1s;
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.7);
  }
  @keyframes wfMobilePulse {
    0%, 100% { transform: translate(-50%, 0) scale(1); box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.7); }
    50% { transform: translate(-50%, 0) scale(1.4); box-shadow: 0 0 0 12px rgba(251, 146, 60, 0); }
  }
}

.wf-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.wf-col-head, .wf-group-head {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
.wf-group {
  position: relative;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px dashed var(--line);
  border-radius: var(--radius-2xl);
}
.wf-stack {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.wf-chip {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  color: var(--c);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wf-chip span { color: var(--ink); }
.wf-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(15, 23, 42, 0.15);
}
.wf-chip svg { width: 20px; height: 20px; display: block; }

/* Flow paths zwischen Spalten */
.wf-flow {
  position: relative;
  height: 100%;
  min-height: 280px;
}
.wf-flow svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Core (Mitte) */
.wf-col-core {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.wf-core {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wf-core-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(15, 23, 42, 0.12);
  animation: wfSpin 30s linear infinite;
}
.wf-core-ring-2 {
  inset: 24px;
  border-color: rgba(15, 23, 42, 0.08);
  animation: wfSpin 22s linear infinite reverse;
}
@keyframes wfSpin {
  to { transform: rotate(360deg); }
}
.wf-core-box {
  width: 152px;
  height: 152px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FB923C 0%, #EC4899 35%, #06B6D4 70%, #BEF264 100%);
  background-size: 200% 200%;
  animation: wfGrad 8s ease-in-out infinite;
  box-shadow: 0 24px 60px -20px rgba(236, 72, 153, 0.45), 0 0 0 6px rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}
@keyframes wfGrad {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.wf-core-label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  font-weight: 600;
  opacity: 0.9;
}
.wf-core-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.wf-core-meta {
  display: flex;
  gap: 6px;
}
.wf-core-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Trust Bar unter Diagramm */
.wf-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-3xl);
  box-shadow: 0 16px 40px -20px rgba(15, 23, 42, 0.08);
}
.wf-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.wf-trust-flag {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.wf-trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.wf-trust-item span {
  display: block;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.wf-trust-divider {
  width: 1px;
  height: 44px;
  background: var(--line);
}

/* Responsive */
@media (max-width: 1100px) {
  .wf-diagram {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }
  .wf-col-core { order: 2; }
  .wf-col-inputs { order: 1; }
  .wf-col-outputs { order: 3; }
  .wf-flow { display: none; }
  .wf-stack {
    grid-template-columns: repeat(2, 1fr);
  }
  .wf-trust {
    flex-direction: column;
    gap: 18px;
  }
  .wf-trust-divider {
    width: 60%;
    height: 1px;
  }
}

/* ================================================================
   USE-CASES KARUSSELL/GRID
   ================================================================ */
.section-usecases {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

/* Coverflow Karussell */
.uc-swiper-wrap {
  position: relative;
  margin: 0 -16px;
  padding: 24px 0 56px;
}
.uc-swiper {
  overflow: visible;
  padding: 12px 0 24px;
}
.uc-swiper .swiper-slide {
  width: 480px;
  max-width: 88vw;
  height: auto;
  transition: opacity 0.4s ease, filter 0.4s ease;
  opacity: 0.55;
  filter: saturate(0.85);
}
.uc-swiper .swiper-slide-active {
  opacity: 1;
  filter: saturate(1);
}
.uc-swiper .swiper-slide-prev,
.uc-swiper .swiper-slide-next {
  opacity: 0.85;
}

.uc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 24px 60px -32px rgba(15, 23, 42, 0.18);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.swiper-slide-active .uc-card {
  box-shadow: 0 36px 80px -28px rgba(15, 23, 42, 0.32);
  border-color: rgba(15, 23, 42, 0.12);
}

/* Pagination */
.uc-pagination {
  position: relative !important;
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.uc-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--line);
  opacity: 1;
  border-radius: var(--radius-pill);
  transition: width 0.3s, background 0.3s;
}
.uc-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: linear-gradient(90deg, var(--orange), var(--magenta));
}

/* Navigation */
.uc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 12px 28px -10px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  color: var(--ink);
}
.uc-nav:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 16px 36px -10px rgba(15, 23, 42, 0.28);
}
.uc-nav svg { width: 22px; height: 22px; }
.uc-nav-prev { left: 4%; }
.uc-nav-next { right: 4%; }
.uc-nav.swiper-button-disabled { opacity: 0.4; cursor: default; }

@media (max-width: 600px) {
  .uc-nav { display: none; }
  .uc-swiper .swiper-slide { width: 86vw; }
}

.uc-video {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  overflow: hidden;
}
.uc-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%);
}
.uc-video-img {
  background: var(--bg-3);
}
.uc-video-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.uc-video-img::before {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0) 50%, rgba(15, 23, 42, 0.35) 100%);
  z-index: 1;
}
.uc-video-img .uc-play,
.uc-video-img .uc-badge {
  z-index: 2;
}
.uc-video[data-color="orange"] { background: linear-gradient(135deg, #FB923C 0%, #EC4899 100%); }
.uc-video[data-color="cyan"] { background: linear-gradient(135deg, #22D3DC 0%, #06B6D4 100%); }
.uc-video[data-color="lime"] { background: linear-gradient(135deg, #BEF264 0%, #22D3DC 100%); }
.uc-video[data-color="magenta"] { background: linear-gradient(135deg, #EC4899 0%, #FB923C 100%); }
.uc-video[data-color="cyan-deep"] { background: linear-gradient(135deg, #06B6D4 0%, #0F172A 100%); }

.uc-play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding-left: 4px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
  transition: transform 0.2s;
}
.uc-card:hover .uc-play { transform: scale(1.08); }

.uc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.65);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.uc-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.uc-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.uc-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ================================================================
   MEHR ALS BIM
   ================================================================ */
.section-mab { background: #fff; border-top: 1px solid var(--line); }
.mab-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mab-text .section-eyebrow { display: inline-block; margin-bottom: 14px; }
.mab-text .section-title { text-align: left; margin-bottom: 18px; }
.mab-lead {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 28px;
}
.mab-points {
  display: grid;
  gap: 20px;
}
.mab-points li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}
.mab-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.mab-points strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.mab-points p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

.mab-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}
.mab-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.3s ease;
}
.mab-card svg { width: 100%; height: auto; display: block; }
.mab-card-bim { transform: rotate(-1.5deg); }
.mab-card-pano { transform: rotate(1.5deg); }
.mab-card:hover { transform: rotate(0deg) translateY(-2px); }

.mab-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--line);
}
.mab-card-head-dark {
  background: linear-gradient(180deg, #1E293B, #0F172A);
  border-bottom-color: rgba(255,255,255,0.05);
}
.mab-card-meta {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.mab-card-meta-light {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.mab-card-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: #FAFBFC;
  border-top: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--ink-soft);
}
.mab-foot-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.mab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.mab-tag {
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mab-tag-muted {
  background: #fff;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.mab-tag-live {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
}
.mab-tag-live .dot-live { background: var(--lime); }
.mab-plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(236, 72, 153, 0.5);
  z-index: 2;
}

/* ================================================================
   PERSONAS
   ================================================================ */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.persona-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  appearance: none;
}
.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(15, 23, 42, 0.1);
}
.persona-card {
  padding: 24px;
}
.persona-card h3 {
  font-size: 19px;
  line-height: 1.2;
}
.persona-card p {
  font-size: 14px;
}
.persona-card li {
  font-size: 12.5px;
  padding: 7px 10px;
}
.persona-card-featured {
  background: linear-gradient(180deg, #fff 0%, #FFFAF5 100%);
  border-color: var(--orange);
  box-shadow: 0 20px 50px -20px rgba(251, 146, 60, 0.35);
}
.persona-tag {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.persona-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px;
}
.persona-icon svg { width: 100%; height: 100%; display: block; }
.persona-icon-cyan { background: rgba(34, 211, 220, 0.08); border-color: rgba(6, 182, 212, 0.2); }
.persona-icon-orange { background: rgba(251, 146, 60, 0.08); border-color: rgba(251, 146, 60, 0.25); }
.persona-icon-lime { background: rgba(190, 242, 100, 0.15); border-color: rgba(190, 242, 100, 0.4); }
.persona-icon-magenta { background: rgba(236, 72, 153, 0.07); border-color: rgba(236, 72, 153, 0.25); }
.persona-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 23px;
  margin: 0;
  color: var(--ink);
}
.persona-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.persona-card ul {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.persona-card li {
  padding: 8px 12px;
  background: var(--bg-soft);
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.persona-card-featured li {
  background: #fff;
  border: 1px solid #FFE2C7;
}
.persona-cta {
  margin-top: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--orange);
}
.persona-card[data-color="cyan"] .persona-cta { color: var(--cyan-deep); }
.persona-card[data-color="lime"] .persona-cta { color: #4d7c0f; }

/* ================================================================
   LIFECYCLE TIMELINE
   ================================================================ */
.section-lifecycle { background: var(--bg-soft); border-top: 1px solid var(--line); }

.lifecycle-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: lc;
  position: relative;
  padding: 36px 0 0;
}
.lifecycle-timeline::before {
  content: '';
  position: absolute;
  top: 64px;
  left: 10%;
  right: 10%;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--magenta) 28%, var(--cyan-deep) 55%, var(--cyan) 78%, var(--lime));
  z-index: 0;
  border-radius: 5px;
  box-shadow: 0 6px 18px -6px rgba(251, 146, 60, 0.35);
}
.lifecycle-timeline li {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0 14px 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.lifecycle-timeline-v2 li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s;
}
.lifecycle-timeline-v2 li:hover {
  transform: translateY(-3px);
}
.lifecycle-timeline-v2 li:hover .lc-icon {
  box-shadow: 0 14px 32px -10px rgba(15, 23, 42, 0.25);
}
.lc-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #fff;
  border: 5px solid #fff;
  outline: 2px solid rgba(15, 23, 42, 0.06);
  margin: 0 0 14px;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.25s, transform 0.25s;
}
.lc-icon svg { width: 26px; height: 26px; stroke-width: 1.8; }
.lifecycle-timeline-v2 li:nth-child(1) .lc-icon { background: linear-gradient(135deg, var(--orange), #fb7185); color: #fff; }
.lifecycle-timeline-v2 li:nth-child(2) .lc-icon { background: linear-gradient(135deg, var(--magenta), #a855f7); color: #fff; }
.lifecycle-timeline-v2 li:nth-child(3) .lc-icon { background: linear-gradient(135deg, var(--cyan-deep), var(--cyan)); color: #fff; }
.lifecycle-timeline-v2 li:nth-child(4) .lc-icon { background: linear-gradient(135deg, var(--cyan), var(--lime)); color: #fff; }
.lifecycle-timeline-v2 li:nth-child(5) .lc-icon { background: linear-gradient(135deg, var(--lime), #65a30d); color: #fff; }
.lc-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--bg-2);
  color: var(--ink-soft);
  margin-top: 6px;
}
.lifecycle-timeline-v2 li:nth-child(1) .lc-tag { background: rgba(251, 146, 60, 0.14); color: #c2410c; }
.lifecycle-timeline-v2 li:nth-child(2) .lc-tag { background: rgba(236, 72, 153, 0.10); color: #be185d; }
.lifecycle-timeline-v2 li:nth-child(3) .lc-tag { background: rgba(6, 182, 212, 0.14); color: #0e7490; }
.lifecycle-timeline-v2 li:nth-child(4) .lc-tag { background: rgba(34, 211, 220, 0.16); color: #0e7490; }
.lifecycle-timeline-v2 li:nth-child(5) .lc-tag { background: rgba(190, 242, 100, 0.28); color: #4d7c0f; }
.lc-step {
  display: inline-block;
  align-self: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  background: transparent;
  margin: 0 0 6px;
  padding: 0;
}
.lifecycle-timeline-v2 li:nth-child(1) .lc-step { color: #c2410c; }
.lifecycle-timeline-v2 li:nth-child(2) .lc-step { color: #be185d; }
.lifecycle-timeline-v2 li:nth-child(3) .lc-step { color: #0e7490; }
.lifecycle-timeline-v2 li:nth-child(4) .lc-step { color: #0e7490; }
.lifecycle-timeline-v2 li:nth-child(5) .lc-step { color: #4d7c0f; }
.lifecycle-timeline li:nth-child(2) .lc-step { background: linear-gradient(135deg, var(--magenta), var(--cyan-deep)); }
.lifecycle-timeline li:nth-child(3) .lc-step { background: linear-gradient(135deg, var(--cyan-deep), var(--cyan)); }
.lifecycle-timeline li:nth-child(4) .lc-step { background: linear-gradient(135deg, var(--cyan), var(--lime)); }
.lifecycle-timeline li:nth-child(5) .lc-step { background: linear-gradient(135deg, var(--lime), var(--orange)); }

.lifecycle-timeline h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin: 4px 0 6px;
  color: var(--ink);
}
.lifecycle-timeline p {
  margin: 0 auto;
  max-width: 220px;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.5;
}
.lifecycle-timeline-v2 .lc-tag {
  margin: 12px auto 0;
}

@media (max-width: 900px) {
  .lifecycle-timeline { grid-template-columns: 1fr; padding-top: 8px; }
  .lifecycle-timeline::before {
    top: 0; bottom: 0; left: 50%;
    width: 5px; height: auto; right: auto;
    background: linear-gradient(180deg, var(--orange), var(--magenta) 28%, var(--cyan-deep) 55%, var(--cyan) 78%, var(--lime));
    transform: translateX(-50%);
  }
  .lifecycle-timeline li { padding: 20px 12px; }
  .lifecycle-timeline p { max-width: none; }
}

/* ================================================================
   DIFFERENZIERUNG (Bundle-Karten – 4 farbige Gruppen)
   ================================================================ */
.diff-bundles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.diff-bundle {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-3xl);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.diff-bundle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--dbc, var(--orange));
}
.diff-bundle[data-color="orange"]  { --dbc: #FB923C; }
.diff-bundle[data-color="magenta"] { --dbc: #EC4899; }
.diff-bundle[data-color="cyan"]    { --dbc: #06B6D4; }
.diff-bundle[data-color="lime"]    { --dbc: #65a30d; }
.diff-bundle:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -22px rgba(15, 23, 42, 0.18);
}
.db-head {
  margin-bottom: 18px;
}
.db-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dbc, var(--orange));
  background: color-mix(in srgb, var(--dbc, var(--orange)) 12%, white);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.db-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.db-list {
  display: grid;
  gap: 14px;
}
.db-list li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
.db-x, .db-y {
  font-size: 13px;
  line-height: 1.45;
  padding: 12px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
}
.db-x {
  background: #FAFBFC;
  color: var(--muted);
  border: 1px solid var(--line-soft);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(100, 116, 139, 0.35);
}
.db-y {
  background: color-mix(in srgb, var(--dbc, var(--orange)) 8%, white);
  color: var(--ink);
  font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--dbc, var(--orange)) 25%, transparent);
}

@media (max-width: 900px) {
  .diff-bundles { grid-template-columns: 1fr; }
  .db-list li { grid-template-columns: 1fr; gap: 6px; }
}

/* ================================================================
   DIFFERENZIERUNG V2 – Tabelle mit Gruppen-Headern und immorise-Highlight
   ================================================================ */
.diff-table-v2 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(15, 23, 42, 0.15);
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.diff-table-v2 .diff-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-display);
}
.diff-table-v2 thead th {
  padding: 20px 14px;
  text-align: center;
  font-weight: 600;
  font-size: 12.5px;
  color: var(--ink-soft);
  background: var(--bg-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--line);
}
.diff-table-v2 thead .dt-feature { width: 38%; }
.diff-table-v2 thead .diff-us {
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  color: #fff;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 0;
}
.diff-table-v2 .diff-us-inner {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.diff-table-v2 tbody td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
}
.diff-table-v2 tbody td:first-child {
  text-align: left;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  padding-left: 28px;
  font-family: var(--font-display);
}
.diff-table-v2 tbody .dt-ok {
  color: #16a34a;
  font-weight: 700;
  font-size: 20px;
}
.diff-table-v2 tbody .diff-us {
  background: rgba(251, 146, 60, 0.06);
  color: #16a34a;
  font-weight: 700;
  font-size: 22px;
  border-left: 2px solid rgba(251, 146, 60, 0.3);
  border-right: 2px solid rgba(251, 146, 60, 0.3);
}
.diff-table-v2 tbody tr:hover:not(.dt-group) { background: rgba(247, 249, 252, 0.6); }
.diff-table-v2 tbody tr:hover:not(.dt-group) .diff-us { background: rgba(251, 146, 60, 0.12); }

/* Gruppen-Header-Zeilen */
.diff-table-v2 .dt-group td {
  background: var(--bg-3);
  padding: 14px 28px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 0;
  border-top: 1px solid var(--line);
}
.diff-table-v2 .dt-group:first-child td { border-top: 0; }
.diff-table-v2 .dt-group-orange td { background: rgba(251, 146, 60, 0.08); }
.diff-table-v2 .dt-group-magenta td { background: rgba(236, 72, 153, 0.06); }
.diff-table-v2 .dt-group-cyan td { background: rgba(6, 182, 212, 0.07); }
.dt-group-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-right: 10px;
  vertical-align: middle;
}
.dt-group-orange .dt-group-tag { background: #FB923C; color: #fff; }
.dt-group-magenta .dt-group-tag { background: #EC4899; color: #fff; }
.dt-group-cyan .dt-group-tag { background: #06B6D4; color: #fff; }
.dt-group td > span:last-child {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 14px;
}

.diff-table-v2 tbody tr:last-child td { border-bottom: 0; }
.diff-table-v2 + .diff-legend,
.diff-table-v2 .diff-legend {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin: 18px auto 0;
}

@media (max-width: 820px) {
  .diff-table-v2 { overflow-x: auto; }
  .diff-table-v2 thead th,
  .diff-table-v2 tbody td { padding: 10px 8px; font-size: 12px; }
  .diff-table-v2 tbody td:first-child { padding-left: 14px; font-size: 12.5px; }
  .diff-table-v2 .dt-group td { padding: 10px 14px; font-size: 12.5px; }
}

/* ================================================================
   DIFFERENZIERUNG (alte Bundle-Cards – nicht mehr verwendet)
   ================================================================ */
.diff-table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(15, 23, 42, 0.15);
  max-width: 1100px;
  margin: 0 auto;
}
.diff-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-display);
}
.diff-table th, .diff-table td {
  padding: 16px 14px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.diff-table th:first-child, .diff-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  padding-left: 24px;
  min-width: 240px;
}
.diff-table thead th {
  background: var(--bg-2);
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 22px;
  padding-bottom: 22px;
}
.diff-table thead .diff-us {
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  color: #fff;
  text-transform: none;
  letter-spacing: -0.005em;
  font-size: 16px;
  font-weight: 700;
}
.diff-table tbody td:not(:first-child) {
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}
.diff-table tbody .diff-us {
  background: rgba(251, 146, 60, 0.06);
  color: #16a34a;
  font-weight: 700;
  font-size: 20px;
  border-left: 1px solid rgba(251, 146, 60, 0.2);
  border-right: 1px solid rgba(251, 146, 60, 0.2);
}
.diff-table tbody tr:hover { background: rgba(247, 249, 252, 0.6); }
.diff-table tbody tr:hover .diff-us { background: rgba(251, 146, 60, 0.12); }
.diff-table tbody tr:last-child td { border-bottom: 0; }
.diff-table tbody tr:last-child .diff-us {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.diff-legend {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin: 18px auto 0;
  max-width: 1100px;
}

@media (max-width: 820px) {
  .diff-table-wrap { overflow-x: auto; }
  .diff-table th, .diff-table td { padding: 12px 8px; font-size: 12.5px; }
  .diff-table th:first-child, .diff-table td:first-child { min-width: 180px; padding-left: 14px; }
}

/* ================================================================
   DIFFERENZIERUNG (alt: Problem → Lösung Cards – nicht mehr verwendet)
   ================================================================ */
.diff-grid {
  display: grid;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.diff-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: stretch;
  gap: 16px;
}
.diff-problem, .diff-solution {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.diff-problem {
  background: #FAFBFC;
}
.diff-problem:hover, .diff-solution:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -16px rgba(15, 23, 42, 0.12);
}
.diff-solution {
  background: linear-gradient(180deg, #fff 0%, #FFFAF5 100%);
  border-color: rgba(251, 146, 60, 0.35);
}
.diff-tag-problem, .diff-tag-sol {
  display: inline-block;
  align-self: flex-start;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 4px;
}
.diff-tag-problem {
  background: #F1F5F9;
  color: var(--muted);
}
.diff-tag-sol {
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  color: #fff;
}
.diff-problem strong, .diff-solution strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.diff-problem span:not(.diff-tag-problem),
.diff-solution span:not(.diff-tag-sol) {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.diff-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: var(--orange);
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 820px) {
  .diff-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .diff-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
}

/* ================================================================
   TRUST
   ================================================================ */
.section-trust { background: var(--bg-soft); border-top: 1px solid var(--line); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: center;
}
.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
}
.trust-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--ink);
}
.trust-item p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.ts-placeholder {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.ts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ts-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
  margin: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ts-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.ts-card blockquote {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.ts-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
}
.ts-card figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.ts-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* ================================================================
   FINAL CTA
   ================================================================ */
.section-cta {
  background: var(--ink);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cta-bg .blob-orange {
  width: 500px; height: 500px;
  background: var(--orange);
  opacity: 0.35;
  top: -200px; left: -100px;
}
.cta-bg .blob-cyan {
  width: 600px; height: 600px;
  background: var(--cyan-deep);
  opacity: 0.3;
  bottom: -250px; right: -150px;
}

/* Mehr-als-BIM responsive */
@media (max-width: 900px) {
  .mab-grid { grid-template-columns: 1fr; gap: 36px; }
  .mab-text .section-title, .mab-text .section-eyebrow { text-align: left; }
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.cta-logo {
  display: block;
  height: 56px;
  width: auto;
  margin: 0 auto 28px;
  opacity: 0.95;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: #fff;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 540px;
  margin: 0 auto 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}
.cta-form input {
  flex: 1;
  min-width: 220px;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 12px 18px;
  font-size: 15px;
  font-family: var(--font-sans);
  outline: none;
}
.cta-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.cta-form .btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  color: #fff;
}
.cta-form .btn-primary:hover {
  background: linear-gradient(135deg, #FBA76C, #F472B6);
  box-shadow: 0 14px 28px -10px rgba(251, 146, 60, 0.6);
}
.cta-bullets {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
}
.cta-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  color: #1a2e05;
  font-size: 11px;
  font-weight: 700;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .uc-card { grid-column: span 1; }
  .uc-card-wide { grid-column: span 2; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .lifecycle-timeline { grid-template-columns: repeat(2, 1fr); }
  .lifecycle-timeline::before { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .ts-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 64px 16px; }
  .uc-grid { grid-template-columns: 1fr; }
  .uc-card, .uc-card-wide { grid-column: span 1; }
  .lifecycle-timeline { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .diff-table { font-size: 12.5px; }
  .diff-table th, .diff-table td { padding: 10px 8px; }
}

/* ================================================================
   PERSONA DRAWER (Detail-Modal)
   ================================================================ */
.persona-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.persona-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}
.persona-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.persona-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(640px, 100%);
  background: #fff;
  box-shadow: -20px 0 50px -20px rgba(15, 23, 42, 0.25);
  padding: 56px 56px 56px;
  overflow-y: auto;
  transform: translateX(40px);
  transition: transform 0.3s ease;
}
.persona-drawer.is-open .persona-drawer-panel {
  transform: translateX(0);
}
.persona-drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}
.persona-drawer-close:hover { background: var(--bg-3); }
.persona-drawer-close svg { width: 20px; height: 20px; color: var(--ink); }

.pd-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.pd-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 22px;
}
.pd-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  border-left: 3px solid var(--orange);
  padding: 6px 0 6px 18px;
  margin: 0 0 28px;
}
.pd-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.pd-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 32px 0;
}
.pd-benefit {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pd-benefit strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}
.pd-benefit span {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.pd-cta {
  display: inline-flex;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .persona-drawer-panel {
    padding: 56px 24px 32px;
  }
  .pd-benefits { grid-template-columns: 1fr; }
}

/* ================================================================
   FOOTER (4 Spalten)
   ================================================================ */
.footer {
  padding: 72px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg-3);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
.footer-col ul {
  display: grid;
  gap: 12px;
}
.footer-col a {
  color: var(--ink-soft);
  font-size: 14px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--ink); }

.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer-logo {
  height: 44px;
  width: auto;
  margin: 0 0 4px;
  padding: 0;
  display: block;
}
.footer-claim {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  max-width: 320px;
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.footer-address strong {
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}
.footer-address a {
  color: var(--ink-soft);
}
.footer-address a:hover { color: var(--ink); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover {
  color: var(--ink);
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
}
.footer-bottom-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom a {
  color: var(--ink-soft);
}
.footer-bottom a:hover { color: var(--ink); }
.footer-sep { color: var(--line); }

@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
  .footer-col-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-col-brand { grid-column: span 2; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-col-brand { grid-column: span 1; }
  .footer-bottom { justify-content: flex-start; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .float-card-left, .float-card-right {
    max-width: 380px;
    margin: 0 auto;
  }
  .float-card-left { order: 2; }
  .hero-content { order: 1; }
  .float-card-right { order: 3; }
}

@media (max-width: 820px) {
  .nav {
    grid-template-columns: auto 1fr;
    padding: 10px 14px;
  }
  .nav-links { display: none; }
  .nav-login { display: none; }
  .hero { padding: 40px 16px; }
  .hero-headline { font-size: clamp(28px, 7vw, 40px); }
}

/* ================================================================
   SUBPAGES (Persona, Modul, Pricing, About, Karriere, Kontakt)
   ================================================================ */
.subpage-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}
.subpage-hero .section-inner {
  max-width: 920px;
  text-align: left;
}
.breadcrumb {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: rgba(15, 23, 42, 0.3); }

.subpage-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.12;
  margin: 14px 0 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.subpage-title span { display: block; }
.subpage-title .grad-text {
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0.06em 0.05em 0.18em;
  line-height: 1.28;
}
.subpage-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 0 28px;
}
.subpage-hero .hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .subpage-hero { padding-top: 110px; padding-bottom: 40px; }
  .subpage-title { font-size: clamp(28px, 8vw, 42px); }
}

/* ================================================================
   SUBPAGE-KOMPONENTEN (Cloud-AI-Design-Adaption mit unserer Brand)
   ================================================================ */

/* Sub-Hero mit Stats-Grid rechts */
.sub-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}
.sub-hero .container,
.sub-hero .section-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.sub-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 18px 0 22px;
  color: var(--ink);
}
.sub-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0.06em 0.05em 0.18em;
  line-height: 1.28;
  display: inline-block;
}
.sub-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 0 28px;
}
.sub-hero .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.sub-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.sub-hero-stats {
  display: grid;
  gap: 14px;
}
.sub-hero-stat {
  padding: 22px 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  display: grid;
  gap: 4px;
}
.sub-hero-stat strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.sub-hero-stat span {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .sub-hero .container, .sub-hero .section-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Section-Block Standard */
.sp-block {
  padding: 80px 0;
}
.sp-block-alt { background: var(--bg-soft); }
.sp-block .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.sp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sp-grid-2 .eyebrow,
.sp-block .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.sp-block h2,
.sp-grid-2 h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.t-display-m { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 4vw, 48px); line-height: 1.15; letter-spacing: -0.015em; color: var(--ink); }
.t-h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 2.8vw, 32px); line-height: 1.2; }
.t-h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.3; }
.t-body-l { font-size: 17px; line-height: 1.6; }
.t-soft { color: var(--ink-soft); }
.t-gradient {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 800px) {
  .sp-grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .sp-block { padding: 56px 0; }
}

/* Feature-Grid 3x2 */
.sp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.sp-feature-grid .cell {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  display: grid;
  gap: 12px;
}
.sp-block-alt .sp-feature-grid .cell { background: #fff; }
.cell-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 6px;
}
.cell-icon svg { width: 22px; height: 22px; }
.sp-feature-grid .cell h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.sp-feature-grid .cell p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 900px) {
  .sp-feature-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* Browser-Frame Mockup */
.browser {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px -22px rgba(15, 23, 42, 0.18);
}
.browser-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #F8FAFC;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.browser-dots { display: inline-flex; gap: 6px; }
.browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #E5E7EB;
}
.browser-dots span:nth-child(1) { background: #fecaca; }
.browser-dots span:nth-child(2) { background: #fef3c7; }
.browser-dots span:nth-child(3) { background: #d1fae5; }
.browser-url {
  flex: 1;
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 12px;
  color: var(--ink-soft);
  padding: 4px 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 8px;
  text-align: center;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(190, 242, 100, 0.25);
  color: #4d7c0f;
  letter-spacing: 0.04em;
}
.live-pill .live-dot { width: 6px; height: 6px; background: #65a30d; }
.browser-body {
  position: relative;
  background: #0F172A;
  overflow: hidden;
}
.browser-body img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Quote-Card */
.callout-quote {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 24px;
}
.callout-quote blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.callout-quote figcaption {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.callout-quote .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Benefit-Liste mit Nummern */
.benefits {
  display: grid;
  gap: 14px;
}
.benefit {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 18px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
}
.benefit strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.benefit span { font-size: 16px; line-height: 1.5; color: var(--ink); padding-top: 4px; }
.benefit-magenta strong { color: var(--magenta); }
.benefit-cyan strong { color: var(--cyan-deep); }
.benefit-lime strong { color: #4d7c0f; }

/* FAQ-Akkordeon */
.faq { display: grid; gap: 8px; }
.faq details {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 18px 22px;
  transition: border-color 0.15s;
}
.faq details[open] { border-color: rgba(251, 146, 60, 0.4); }
.faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.faq summary::after {
  content: '+';
  font-weight: 400;
  color: var(--ink-soft);
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Pricing-Stränge */
.pricing-strands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.strand {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 20px;
  display: grid;
  gap: 16px;
}
.strand-dark {
  background: #0F172A;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.10);
}
.strand-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 4px 10px;
  background: rgba(251, 146, 60, 0.10);
  border-radius: 999px;
  width: fit-content;
}
.strand-dark .strand-tag { background: rgba(190, 242, 100, 0.18); color: var(--lime); }
.strand h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}
.strand-dark h3 { color: #fff; }
.strand-price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.strand-price .num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.strand-dark .strand-price .num {
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.strand-price .unit { font-size: 14px; color: var(--ink-soft); line-height: 1.4; }
.strand-dark .strand-price .unit { color: rgba(255,255,255,0.7); }
.strand-features { display: grid; gap: 10px; padding: 0; list-style: none; margin: 8px 0 4px; }
.strand-features li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.5;
}
.strand-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}
.strand-dark .strand-features li::before { color: var(--lime); }
@media (max-width: 800px) {
  .pricing-strands { grid-template-columns: 1fr; }
}

/* On-Dark Button */
.btn-on-dark {
  background: #fff;
  color: #0F172A;
  border: 0;
}
.btn-on-dark:hover { background: rgba(255, 255, 255, 0.92); }

/* Input/Form */
.input, .textarea {
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input:focus, .textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.12);
}
.textarea { min-height: 120px; resize: vertical; }

/* Card */
.card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
}
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; }
.badge-lime { background: rgba(190, 242, 100, 0.25); color: #4d7c0f; }
.badge-orange { background: rgba(251, 146, 60, 0.14); color: #c2410c; }

/* ================================================================
   FINAL-CTA für Subpages (breit, kein Logo, große Headline)
   ================================================================ */
.section-cta-wide {
  background: #0F172A;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.section-cta-wide::before,
.section-cta-wide::after {
  content: '';
  position: absolute;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
}
.section-cta-wide::before {
  width: 480px; height: 480px;
  background: var(--orange);
  top: -120px; left: -80px;
  border-radius: 50%;
}
.section-cta-wide::after {
  width: 520px; height: 520px;
  background: var(--cyan-deep);
  bottom: -160px; right: -80px;
  border-radius: 50%;
}
.section-cta-wide .container,
.section-cta-wide .section-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.cta-headline-wide {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 auto 18px;
  max-width: 18ch;
}
.cta-headline-wide em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0.06em 0.05em 0.18em;
  line-height: 1.22;
  display: inline-block;
}
.section-cta-wide .cta-sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 60ch;
  margin: 0 auto 36px;
}
.cta-trust {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}
.cta-trust span {
  position: relative;
  padding-left: 22px;
}
.cta-trust span::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}

/* ================================================================
   BIG-FOOTER (dunkler Block mit Spalten + farbigem Logo)
   ================================================================ */
.footer-big {
  background: #0A0F1C;
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-big .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-big-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand img {
  width: 220px;
  height: auto;
  margin-bottom: 22px;
}
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 340px;
}
.footer-big .footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 18px;
}
.footer-big .footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-big .footer-col a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.15s;
  text-decoration: none;
}
.footer-big .footer-col a:hover { color: #fff; }
.footer-big .footer-bottom {
  color: rgba(255, 255, 255, 0.45);
}
.footer-big .footer-bottom a { color: rgba(255, 255, 255, 0.6); text-decoration: none; }
.footer-big .footer-bottom a:hover { color: #fff; }
.footer-trust-pills {
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-trust-pills span { position: relative; padding-left: 18px; }
.footer-trust-pills span::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}
@media (max-width: 1000px) {
  .footer-big-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-big-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   HERO – Play-Icon für "Plattform-Tour ansehen" Ghost-Button
   ================================================================ */
.hero-cta-tour {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-cta-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  color: #fff;
  flex-shrink: 0;
}
.hero-cta-play svg { width: 10px; height: 10px; margin-left: 1px; }

/* ================================================================
   TWIN FACTORY CTA – direkt unter der Workflow-Animation
   ================================================================ */
.wf-tf-cta {
  margin: 32px auto 0;
  padding: 0 24px;
  max-width: 1100px;
}
.wf-tf-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(190, 242, 100, 0.10), rgba(6, 182, 212, 0.10));
  border: 1px solid color-mix(in srgb, var(--lime) 28%, transparent);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.wf-tf-cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--lime), var(--cyan-deep));
}
.wf-tf-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.wf-tf-cta-badge {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4d7c0f;
  background: rgba(190, 242, 100, 0.32);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 4px;
}
.wf-tf-cta-text strong {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.wf-tf-cta-text > span:not(.wf-tf-cta-badge) {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.wf-tf-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.wf-tf-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.wf-tf-link:hover { color: var(--ink); border-bottom-color: var(--cyan-deep); }
@media (max-width: 800px) {
  .wf-tf-cta-inner { flex-direction: column; align-items: flex-start; gap: 18px; padding: 20px 22px; }
  .wf-tf-cta-actions { width: 100%; flex-wrap: wrap; }
}

/* ================================================================
   TRUST-STRIP unterhalb der Workflow-Animation (EU-Souveränität)
   ================================================================ */
.wf-trust-strip {
  margin: 24px auto 0;
  padding: 0 24px;
  max-width: 1240px;
}
.wf-trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 18px 28px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  box-shadow: 0 12px 32px -16px rgba(15, 23, 42, 0.12);
}
.wf-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.wf-trust-flag {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 4px 10px -4px rgba(15, 23, 42, 0.2);
}
.wf-trust-item > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.25;
}
.wf-trust-item strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.wf-trust-item span {
  font-size: 12px;
  color: var(--ink-soft);
}
.wf-trust-sep {
  width: 1px;
  height: 28px;
  background: rgba(15, 23, 42, 0.10);
}
@media (max-width: 720px) {
  .wf-trust-strip-inner { flex-direction: column; gap: 18px; padding: 18px 24px; border-radius: 18px; }
  .wf-trust-sep { width: 60%; height: 1px; }
}

/* ================================================================
   HERO TWIN – Foto-Variante (KI-Render + animierte UI-Layer drüber)
   ================================================================ */
.hero-twin-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 560px;
}
.ht-photo-stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;
}

/* Hintergrund-Glow hinter dem Bild */
.ht-photo-glow {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(251, 146, 60, 0.22), transparent 55%),
    radial-gradient(circle at 75% 35%, rgba(236, 72, 153, 0.20), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(6, 182, 212, 0.22), transparent 55%),
    radial-gradient(circle at 25% 75%, rgba(190, 242, 100, 0.22), transparent 55%);
  filter: blur(30px);
  z-index: 0;
  animation: htPhotoGlowSpin 50s linear infinite;
}
@keyframes htPhotoGlowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Gerendertes Gebäude – verschmilzt nahtlos mit dem Hintergrund */
.ht-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  /* Sehr weicher Fade an allen Kanten – Mitte voll, Rand komplett transparent.
     Kein mix-blend-mode (verfärbt sonst die echten Bauteilfarben). */
  -webkit-mask-image: radial-gradient(ellipse 68% 78% at 50% 50%, #000 18%, rgba(0,0,0,0.7) 50%, transparent 92%);
          mask-image: radial-gradient(ellipse 68% 78% at 50% 50%, #000 18%, rgba(0,0,0,0.7) 50%, transparent 92%);
  animation: htPhotoFloat 6s ease-in-out infinite;
}
@keyframes htPhotoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Connection-Lines */
.ht-photo-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.ht-photo-lines path {
  animation: htDashFlow 14s linear infinite;
}

/* Floating Stat-Cards (überdecken die KI-Text-Artefakte) */
.ht-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 36px -14px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(15, 23, 42, 0.04);
  z-index: 5;
  font-family: var(--font-display);
  white-space: nowrap;
  animation: htCardFloat 7s ease-in-out infinite;
}
.ht-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.ht-card-icon svg { width: 17px; height: 17px; }
.ht-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}
.ht-card-body strong {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.ht-card-body span {
  font-size: 11px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 500;
}
.ht-card-orange  .ht-card-icon { background: linear-gradient(135deg, #FB923C, #f97316); }
.ht-card-magenta .ht-card-icon { background: linear-gradient(135deg, #EC4899, #db2777); }
.ht-card-cyan    .ht-card-icon { background: linear-gradient(135deg, #06B6D4, #0891b2); }
.ht-card-lime    .ht-card-icon { background: linear-gradient(135deg, #BEF264, #65a30d); }
.ht-card-orange  { animation-delay: 0s; }
.ht-card-magenta { animation-delay: 1.4s; }
.ht-card-cyan    { animation-delay: 2.8s; }
.ht-card-lime    { animation-delay: 4.2s; }
@keyframes htCardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Live-Pill (oben rechts, deckt Pollo.ai-Wasserzeichen) */
.ht-live-pill {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: #0F172A;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  box-shadow: 0 12px 24px -10px rgba(15, 23, 42, 0.4);
}
.ht-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #BEF264;
  box-shadow: 0 0 0 0 rgba(190, 242, 100, 0.8);
  animation: htLivePulse 1.6s ease-out infinite;
}
@keyframes htLivePulse {
  0%   { box-shadow: 0 0 0 0 rgba(190, 242, 100, 0.7); }
  100% { box-shadow: 0 0 0 8px rgba(190, 242, 100, 0); }
}

/* KI-Sparkle-Pille zentral unten */
.ht-ki-pill {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px 12px 18px;
  background: linear-gradient(135deg, #FB923C 0%, #EC4899 60%, #06B6D4 100%);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  z-index: 7;
  box-shadow: 0 20px 44px -10px rgba(236, 72, 153, 0.5), 0 0 0 4px rgba(255, 255, 255, 0.95);
  animation: htKiPillPulse 3.2s ease-in-out infinite;
}
.ht-ki-pill svg {
  width: 20px;
  height: 20px;
  animation: htKiSparkle 2.4s ease-in-out infinite;
}
@keyframes htKiPillPulse {
  0%, 100% { box-shadow: 0 20px 44px -10px rgba(236, 72, 153, 0.5), 0 0 0 4px rgba(255, 255, 255, 0.95); }
  50%      { box-shadow: 0 24px 56px -10px rgba(236, 72, 153, 0.7), 0 0 0 4px rgba(255, 255, 255, 0.95); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ht-photo-glow, .ht-photo-img, .ht-photo-lines path,
  .ht-card, .ht-live-dot, .ht-ki-pill, .ht-ki-pill svg { animation: none !important; }
}

/* Mobile */
@media (max-width: 900px) {
  .hero-twin-photo { min-height: 460px; }
  .ht-card { padding: 7px 11px 7px 7px; gap: 7px; border-radius: 10px; }
  .ht-card-icon { width: 26px; height: 26px; border-radius: 7px; }
  .ht-card-icon svg { width: 14px; height: 14px; }
  .ht-card-body strong { font-size: 11.5px; }
  .ht-card-body span { font-size: 9.5px; }
  .ht-ki-pill { font-size: 12px; padding: 9px 16px 9px 13px; }
  .ht-ki-pill svg { width: 16px; height: 16px; }
}
@media (max-width: 600px) {
  .hero-twin-photo { min-height: 380px; }
}

/* ================================================================
   HERO TWIN – Isometrisches Twin-Gebäude (V1 – nicht mehr verwendet)
   ================================================================ */
.hero-twin {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 540px;
}
.ht-stage {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1;
}

/* Hintergrund-Glow (sanfter Mehrfarb-Disc) */
.ht-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(251, 146, 60, 0.18), transparent 60%),
    radial-gradient(circle at 75% 35%, rgba(236, 72, 153, 0.16), transparent 60%),
    radial-gradient(circle at 70% 75%, rgba(6, 182, 212, 0.18), transparent 60%),
    radial-gradient(circle at 25% 75%, rgba(190, 242, 100, 0.18), transparent 60%);
  filter: blur(20px);
  z-index: 0;
  animation: htGlowSpin 80s linear infinite;
}
@keyframes htGlowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Orbit-Bahnen */
.ht-orbits {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.ht-orbit-outer { animation: htOrbitRotate 80s linear infinite; transform-origin: 300px 300px; }
.ht-orbit-inner { animation: htOrbitRotate 60s linear infinite reverse; transform-origin: 300px 300px; }
@keyframes htOrbitRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Zentrales Twin-Gebäude */
.ht-building {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  filter: drop-shadow(0 14px 32px rgba(15, 23, 42, 0.18));
  animation: htBuildingBreathe 6s ease-in-out infinite;
}
.ht-floor { transform-origin: 160px 240px; }
.ht-floor-1 { animation: htFloorPulse 5s ease-in-out infinite 0s; }
.ht-floor-2 { animation: htFloorPulse 5s ease-in-out infinite 1s; }
.ht-floor-3 { animation: htFloorPulse 5s ease-in-out infinite 2s; }
.ht-floor-roof { animation: htFloorPulse 5s ease-in-out infinite 3s; }
@keyframes htFloorPulse {
  0%, 100% { opacity: 0.95; }
  50%      { opacity: 1; }
}
@keyframes htBuildingBreathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-3px) scale(1.008); }
}

/* Verbindungslinien Gebäude ↔ Atoms */
.ht-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.ht-links path {
  stroke-dashoffset: 0;
  animation: htDashFlow 16s linear infinite;
}
@keyframes htDashFlow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -180; }
}

/* Floating Data-Atoms (Pillen mit Icon + Label) */
.ht-atom {
  position: absolute;
  left: var(--ax);
  top: var(--ay);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px 8px 10px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 14px 28px -10px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(15, 23, 42, 0.04);
  z-index: 4;
  color: var(--c);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  animation: htAtomFloat 6s ease-in-out infinite;
}
.ht-atom svg { width: 16px; height: 16px; flex-shrink: 0; }
.ht-atom span { color: var(--ink); }
.ht-atom-1 { animation-delay: 0s; }
.ht-atom-2 { animation-delay: 1.2s; }
.ht-atom-3 { animation-delay: 2.4s; }
.ht-atom-4 { animation-delay: 3.6s; }
@keyframes htAtomFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* KI-Atom: spezieller Gradient-Look, prominentere Pille */
.ht-atom-ki {
  position: absolute;
  left: var(--ax);
  top: var(--ay);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 10px 14px;
  background: linear-gradient(135deg, #FB923C 0%, #EC4899 100%);
  border-radius: 999px;
  box-shadow: 0 16px 32px -8px rgba(236, 72, 153, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.9);
  z-index: 5;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  animation: htKiPulse 3s ease-in-out infinite;
}
.ht-atom-ki svg { width: 18px; height: 18px; color: #fff; animation: htKiSparkle 2.4s ease-in-out infinite; }
@keyframes htKiPulse {
  0%, 100% { box-shadow: 0 16px 32px -8px rgba(236, 72, 153, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.9); }
  50%      { box-shadow: 0 20px 44px -8px rgba(236, 72, 153, 0.6), 0 0 0 4px rgba(255, 255, 255, 0.9); }
}
@keyframes htKiSparkle {
  0%, 100% { transform: scale(0.92) rotate(0deg); }
  50%      { transform: scale(1.1) rotate(8deg); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ht-glow, .ht-orbit-outer, .ht-orbit-inner, .ht-building, .ht-floor,
  .ht-links path, .ht-atom, .ht-atom-ki, .ht-atom-ki svg { animation: none !important; }
}

/* Mobile: Hero-Twin kleiner */
@media (max-width: 900px) {
  .hero-twin { min-height: 420px; }
  .ht-atom { font-size: 11px; padding: 6px 11px 6px 8px; }
  .ht-atom svg { width: 13px; height: 13px; }
  .ht-atom-ki { font-size: 12px; padding: 8px 14px 8px 11px; }
  .ht-atom-ki svg { width: 14px; height: 14px; }
}
@media (max-width: 600px) {
  .hero-twin { min-height: 360px; }
}

/* ================================================================
   MOBILE-PERFORMANCE & SCROLL-FIX
   ================================================================ */
@media (max-width: 900px) {
  /* Connection-Lines im Hero auf Mobile aus (teuer + überfrachtet) */
  .ht-photo-lines { display: none; }
  /* Glow-Rotation langsamer / leichter Blur */
  .ht-photo-glow { filter: blur(18px); animation-duration: 120s; }
  /* Hero-Card-Float reduzieren (weniger frame-work) */
  .ht-card { animation-duration: 9s; }
  /* Final-CTA Wide: Blur-Glows ausblenden (sehr teuer) */
  .section-cta-wide::before, .section-cta-wide::after { display: none; }
  /* Footer-Bottom: untereinander, damit nichts rauslaüft */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 600px) {
  /* Workflow-Pulse-Punkte auf den Orbits ausblenden (zu teuer auf alten Smartphones) */
  .wf-orbit-dots { display: none; }
  /* Hero-Photo-Float ausblenden */
  .ht-photo-img { animation: none; }
  /* Brand-Strip (Scroll-Banner) Geschwindigkeit reduzieren */
  .brand-strip-track { animation-duration: 60s !important; }
}

/* Generelle horizontale Overflow-Sicherheit für problematische Elemente */
.swiper, .uc-carousel, .brand-strip { max-width: 100vw; overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; }
img.logo-full, svg.logo-full { height: 32px; width: auto; max-width: none; }

/* ================================================================
   HAMBURGER + MOBILE-DRAWER-MENÜ
   ================================================================ */
.nav-burger { display: none; }

@media (max-width: 900px) {
  /* Auf Mobile: Nav-Links und Demo-Button raus; DE/EN + Login + Hamburger bleiben */
  .nav-links { display: none !important; }
  .nav-cta-desktop { display: none !important; }
  /* Kompakte Mobile-Versionen */
  .nav-actions { gap: 8px !important; }
  .lang-switch { font-size: 12px; padding: 4px 8px; }
  .nav-login {
    font-size: 12.5px !important;
    padding: 6px 12px !important;
  }
  /* Hamburger sichtbar */
  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    cursor: pointer;
    transition: background 0.15s;
  }
  .nav-burger:hover { background: rgba(15, 23, 42, 0.08); }
  .nav-burger span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  box-shadow: -16px 0 40px -8px rgba(15, 23, 42, 0.24);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}
.mobile-menu-logo { height: 26px; width: auto; }
.mobile-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 0;
  background: rgba(15, 23, 42, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
}
.mobile-menu-close svg { width: 18px; height: 18px; }
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 12px;
  gap: 2px;
  flex: 1;
}
.mobile-menu-nav a {
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s;
}
.mobile-menu-nav a:hover { background: rgba(251, 146, 60, 0.06); color: var(--orange); }
.mobile-menu-sublabel {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 16px 14px 6px;
}
.mobile-menu-foot {
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}
.mobile-menu-foot .btn { width: 100%; justify-content: center; text-align: center; }

/* ================================================================
   EINSTIEGS-SECTION: 3 Cards (3D-Scan, BIM, Pläne)
   ================================================================ */
.section-entry {
  padding: 96px 0 64px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 56px auto 0;
  padding: 0 24px;
}
.entry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 26px 24px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 40px -22px rgba(15, 23, 42, 0.14);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.entry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -22px rgba(15, 23, 42, 0.22);
  border-color: color-mix(in srgb, var(--ec-c) 30%, transparent);
}
/* Gradient-Strip oben in Karten-Farbe */
.entry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(135deg, var(--ec-c) 0%, var(--ec-c2, var(--ec-c)) 100%);
}
/* Empfohlen-Badge */
.entry-badge {
  position: absolute;
  top: -10px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--ec-c) 0%, var(--ec-c2, var(--ec-c)) 100%);
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px -4px color-mix(in srgb, var(--ec-c) 50%, transparent);
}
.entry-card-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.entry-card-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ec-c);
}
.entry-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
/* Visual */
.entry-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-soft);
}
.entry-visual svg { width: 100%; height: 100%; display: block; }
/* Photo-Variante (echte Plattform-Screenshots) */
.entry-visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.entry-card:hover .entry-visual-photo img { transform: scale(1.04); }
.entry-photo-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  max-width: calc(100% - 16px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Plan-Variante (SVG-Grundriss + 3D) */
.entry-visual-plan {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
}
/* Tagline */
.entry-tagline {
  margin: 4px 0 0;
  line-height: 1.4;
}
.entry-tagline strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.entry-tagline span {
  display: block;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}
/* Notes-Liste */
.entry-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.entry-notes li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.entry-notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ec-c);
  opacity: 0.5;
}
/* Action-Buttons */
.entry-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
}
.entry-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--ec-c) 0%, var(--ec-c2, var(--ec-c)) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  box-shadow: 0 8px 20px -6px color-mix(in srgb, var(--ec-c) 50%, transparent);
}
.entry-btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 26px -6px color-mix(in srgb, var(--ec-c) 60%, transparent);
}
.entry-btn-primary .arrow { font-size: 15px; }
.entry-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s;
}
.entry-btn-secondary:hover { color: var(--ec-c); }
.entry-btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ec-c);
  background: color-mix(in srgb, var(--ec-c) 8%, transparent);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.15s;
}
.entry-btn-tertiary:hover { background: color-mix(in srgb, var(--ec-c) 16%, transparent); }

/* ================================================================
   ENTRY: 4-Card-Layout mit Frame 1 (3 Cards) + Plus + Frame 2 (1 Card)
   ================================================================ */
.entry-grid-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 3fr) auto minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1480px;
  margin: 56px auto 0;
  padding: 0 24px;
}
.entry-frame-main { grid-column: 1; }
.entry-grid-wrapper > .entry-plus-sign { grid-column: 2; }
.entry-frame-data { grid-column: 3; }

/* Frame um die Cards mit Label */
.entry-frame {
  position: relative;
  padding: 30px 22px 24px;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px dashed rgba(15, 23, 42, 0.14);
  border-radius: 28px;
}
.entry-frame-main {
  /* Akzent-Hintergrund subtil */
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(248, 250, 252, 0.7));
}
.entry-frame-data {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.9));
  border-color: rgba(100, 116, 139, 0.22);
}
.entry-frame-label {
  position: absolute;
  top: -11px;
  left: 28px;
  background: var(--bg);
  padding: 0 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.entry-frame-data .entry-frame-label { color: #475569; }

/* Frame-internes Grid: 3 Cards in Frame 1 */
.entry-frame-main .entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  max-width: none;
}
/* Cards in Frame 1 etwas kompakter (weil schmaler) */
.entry-frame-main .entry-card {
  padding: 22px 18px 18px;
  gap: 14px;
}
.entry-frame-main .entry-card h3 { font-size: 22px; }
.entry-frame-main .entry-tagline strong { font-size: 15px; }
.entry-frame-main .entry-tagline span { font-size: 13px; }
.entry-frame-main .entry-notes li { font-size: 12.5px; padding-left: 16px; }
.entry-frame-main .entry-btn-primary { padding: 10px 14px; font-size: 13.5px; }

/* Frame 2 hat nur 1 Card, kein Grid nötig */
.entry-frame-data .entry-card {
  width: 100%;
  height: 100%;
  padding: 22px 18px 18px;
}
.entry-frame-data .entry-card h3 { font-size: 22px; }
.entry-frame-data .entry-tagline strong { font-size: 15px; }
.entry-frame-data .entry-tagline span { font-size: 13px; }
.entry-frame-data .entry-notes li { font-size: 12.5px; padding-left: 16px; }

/* Plus-Symbol */
.entry-plus-sign {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  text-align: center;
  padding: 0 4px;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card D: Daten-Variante (Slate-neutral, signalisiert "ergänzend") */
.entry-card-data {
  border-color: rgba(100, 116, 139, 0.18);
}
.entry-card-data::before {
  background: linear-gradient(135deg, #64748B, #94A3B8);
}
.entry-card-data:hover {
  border-color: rgba(71, 85, 105, 0.4);
}
.entry-visual-data {
  background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
}

/* Responsive: ab kleinerem Viewport untereinander */
@media (max-width: 1200px) {
  .entry-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .entry-frame-main, .entry-grid-wrapper > .entry-plus-sign, .entry-frame-data {
    grid-column: 1;
  }
  .entry-plus-sign { font-size: 56px; padding: 8px 0; }
}
@media (max-width: 800px) {
  .entry-frame-main .entry-grid { grid-template-columns: 1fr; gap: 16px; }
  .entry-frame { padding: 26px 18px 20px; }
  .entry-plus-sign { font-size: 48px; }
}

/* Alter Plus-Block (jetzt unused) – kann weg, hier aber erstmal verstecken */
.entry-plus { display: none !important; }
.entry-plus-x-old {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 28px auto 0;
  max-width: 1100px;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  box-shadow: 0 12px 28px -16px rgba(15, 23, 42, 0.12);
  position: relative;
}
/* dezenter Slate-Akzent links statt Brand-Farbe (signalisiert: ergänzend, nicht 4. Card) */
.entry-plus::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(180deg, #64748B 0%, #94A3B8 100%);
}
.entry-plus-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #F1F5F9, #E2E8F0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  flex-shrink: 0;
}
.entry-plus-icon svg { width: 26px; height: 26px; }
.entry-plus-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.entry-plus-text strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.entry-plus-text span {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.entry-plus-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.entry-plus-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform 0.15s, background 0.15s;
}
.entry-plus-btn:hover { transform: translateY(-1px); background: #0f172a; }
.entry-plus-link {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.entry-plus-link:hover { color: var(--ink); }
@media (max-width: 720px) {
  .entry-plus {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    gap: 14px 16px;
    padding: 18px 20px;
  }
  .entry-plus-icon { width: 48px; height: 48px; border-radius: 12px; }
  .entry-plus-icon svg { width: 22px; height: 22px; }
  .entry-plus-actions { grid-column: 1 / -1; flex-wrap: wrap; gap: 12px; }
  .entry-plus-btn { width: 100%; justify-content: center; }
}

/* ================================================================
   WORKFLOW: reduzierte Label-Pillen (ersetzen die alten Upload-Kacheln)
   ================================================================ */
.wf-box-in-label {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px !important;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px !important;
  box-shadow: 0 8px 18px -12px rgba(15, 23, 42, 0.14);
  width: auto !important;
  position: relative;
}
.wf-box-in-label::before { display: none !important; }
.wf-box-in-label .wf-box-cat-icon {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--c), var(--c2, var(--c))) !important;
  color: #fff !important;
  flex-shrink: 0;
}
.wf-box-in-label .wf-box-cat-icon svg { width: 14px; height: 14px; }
.wf-box-label-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}
.wf-box-label-text strong {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.wf-box-label-text span {
  font-size: 10.5px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
/* Footer (Twin-Factory-Hinweis) */
.entry-footer {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 11.5px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.entry-footer svg {
  width: 13px;
  height: 13px;
  color: var(--ec-c);
  flex-shrink: 0;
  animation: entryGearSpin 8s linear infinite;
}
@keyframes entryGearSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1024px) {
  .entry-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .entry-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 16px; }
  .section-entry { padding: 64px 0 48px; }
  .entry-card { padding: 24px 22px 22px; }
  .entry-card h3 { font-size: 22px; }
  .entry-tagline strong { font-size: 16px; }
}
