/* ---------------------------------------------------------------
 * MagmaCube — Landingpage Stylesheet v2 (Neon-Orange / Waben)
 * - Einheitlich dunkler BG aus Problem-Sektion
 * - Subtiles Waben-Overlay mit pulsierender Atmung + Info-Streams
 * - Ghost-Buttons (nur Aktions-Buttons gefüllt)
 * - Neon-Orange Hover-Glow auf allen Boxen
 * v10: roi-info-pop Hintergrund vollständig opak (Fix: Tooltip transparent)
 * v11: roi-info-pop so breit wie Eltern-Box .roi-combo (left/right:0, width:auto)
 * v29: Praxis-Cases mit echten Beispieldaten (Mustermann) + Klick-Lightbox
 *      (Detail-Grossansicht je Case, konsistente Summen/Phasen/KPIs)
 * --------------------------------------------------------------- */

:root {
  /* Petrol — Sektions-BG vereinheitlicht */
  --bg: #051f25;
  --bg-deep: #03171b;
  --bg-card: rgba(255, 255, 255, 0.025);
  --bg-card-strong: rgba(255, 255, 255, 0.05);

  /* Gold (bleibt für Headlines/Akzente) */
  --gold-deep: #8d7233;
  --gold-600: #b89556;
  --gold-500: #c8a96e;
  --gold-400: #dcc188;

  /* NEON-Orange — durchgehend */
  --neon-deep: #cc5500;
  --neon-700: #ff5500;
  --neon-600: #ff6a00;        /* Hauptakzent — knalliges Neon-Orange */
  --neon-500: #ff7a1a;
  --neon-400: #ff8c3a;
  --neon-300: #ffa15a;

  /* Vergleichstabelle — Vorteil/Nachteil */
  --cmp-green:   #2ecc71;        /* Vorteil-Gruen (MagmaCube) */
  --cmp-green-bg: rgba(46, 204, 113, 0.10);
  --cmp-green-border: rgba(46, 204, 113, 0.45);
  --cmp-red:     #ff5a4d;        /* Nachteil-Rot (Wettbewerber) */

  /* Text */
  --text-100: #ecf3f3;
  --text-300: #c8d4d6;
  --text-500: #91a3a6;

  /* Borders */
  --border: rgba(255, 106, 0, 0.16);
  --border-strong: rgba(255, 106, 0, 0.42);

  /* Layout */
  --max-w: 1200px;
  --section-py: clamp(80px, 9vw, 140px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%;
  background: var(--bg);
  color: var(--text-100);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ---------- Scroll-Snap (Mai 2026, korrigiert) ----------
   CSS-mandatory-Snap blockierte das Ende der Seite (Footer war hinter der
   letzten Section nicht erreichbar). Wir verwenden jetzt 'proximity' und
   ueberlassen das harte Einrasten dem JS-Wheel-Handler (Desktop) bzw.
   nativem Touch-Scroll (Mobile). */
html {
  scroll-snap-type: y proximity;
  scroll-padding-top: 64px; /* fixer Header */
}
.stage, .section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; }
}
/* Waehrend programmatischem Scroll (Anchor-Klick, JS-Snap) Snap deaktivieren,
   damit proximity nicht zur falschen Section zieht. JS setzt die Klasse fuer
   die Dauer der Smooth-Scroll-Animation. */
html.is-programmatic-scroll { scroll-snap-type: none; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Honeycomb Background (sehr dezent, kein Pulse) ---------- */
.honeycomb-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='52' viewBox='0 0 90 52'><path d='M0,26 L15,26 M15,26 L30,0 M30,0 L60,0 M60,0 L75,26 M75,26 L90,26 M15,26 L30,52 M30,52 L60,52 M60,52 L75,26' fill='none' stroke='%23ff6a00' stroke-width='0.7' opacity='0.9'/></svg>");
  background-size: 90px 52px;
  background-position: 0 0;
  opacity: 0.11;
}

/* Info-Schlangen + Info-Streams — abgeschaltet (Justierung kommt spaeter) */
.hex-snakes, .info-stream { display: none; }

/* Wrapper für content über BG — Sections transparent, damit Waben/Streams durchscheinen */
.site-header, .stage, .section { position: relative; z-index: 5; }

/* ---------- Sticky Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 12px 0;
  background: linear-gradient(180deg, rgba(3,23,27,0.85) 0%, rgba(3,23,27,0) 100%);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(0px);
}
.site-header.is-scrolled {
  background: rgba(5,31,37,0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,106,0,0.18);
  padding: 8px 0;
}
.header-inner {
  width: 100%;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.header-inner > .brand { justify-self: start; }
.header-inner > .site-nav { justify-self: center; }
.header-inner > .lang-switch { justify-self: end; margin-left: 0; }
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.04em;
  /* Marke bewusst Mixed-Case "MagmaCube" — KEIN uppercase (Rico 2026-06-03) */
}
.brand-mark {
  width: 38px; height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 9px rgba(255,106,0,0.55));
  animation: brandMarkPulse 2.6s ease-in-out infinite;
}
@keyframes brandMarkPulse {
  0%, 100% { filter: drop-shadow(0 0 7px rgba(255,106,0,0.42)); }
  50%      { filter: drop-shadow(0 0 14px rgba(255,106,0,0.78)); }
}
.brand-word {
  color: var(--neon-600);
  font-weight: 500;
  text-shadow: 0 0 3px rgba(255,106,0,0.231), 0 0 8px rgba(255,106,0,0.123);
  animation: brandPulse 2.8s ease-in-out infinite;
}
@keyframes brandPulse {
  0%, 100% {
    color: var(--neon-600);
    text-shadow: 0 0 3px rgba(255,106,0,0.169), 0 0 6px rgba(255,106,0,0.108);
  }
  50% {
    color: #ff7a1a;
    text-shadow: 0 0 5px rgba(255,138,38,0.424), 0 0 12px rgba(255,106,0,0.216);
  }
}

.site-nav {
  display: flex; align-items: center; gap: 26px;
  font-size: 14px; color: var(--text-300);
}
.site-nav a { transition: color 0.15s ease, text-shadow 0.15s ease; }
.site-nav a:hover { color: var(--neon-600); text-shadow: 0 0 6px rgba(255,106,0,0.462); }

/* Header-CTA: Ghost-Style mit Neon-Border */
.site-nav .nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--neon-600);
  color: var(--neon-600);
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 0 14px rgba(255,106,0,0.20), inset 0 0 0 0 rgba(255,106,0,0);
  transition: box-shadow 0.25s ease, color 0.2s ease, background 0.2s ease;
}
.site-nav .nav-cta:hover {
  color: #fff;
  background: rgba(255,106,0,0.10);
  box-shadow: 0 0 22px rgba(255,106,0,0.55), inset 0 0 22px rgba(255,106,0,0.18);
  text-shadow: none;
}
.nav-toggle { display: none; }

/* ---------- Language Switch (DE / EN) — dezent am rechten Rand ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 40px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.lang-switch:hover { opacity: 1; }
.lang-switch a {
  padding: 2px 2px;
  color: var(--text-500);
  font-weight: 500;
  line-height: 1;
  transition: color 0.15s ease, text-shadow 0.15s ease;
}
.lang-switch a.active {
  color: var(--text-100);
  font-weight: 600;
}
.lang-switch a:hover {
  color: var(--neon-600);
  text-shadow: 0 0 6px rgba(255,106,0,0.462);
}
.lang-switch .lang-sep { color: var(--text-500); opacity: 0.4; }
@media (max-width: 720px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-inner > .lang-switch { justify-self: auto; margin-right: 12px; opacity: 0.7; }
}

/* ---------- HERO ---------- */
.stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-deep);
}
.bg-image, .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bg-image { z-index: 1; }
.bg-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease-in;
  pointer-events: none;
}
.bg-video.is-ready { opacity: 1; }
.vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(5,31,37,0.95) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 24px;
  max-width: 760px;
  width: 100%;
}
.badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255,106,0,0.55);
  color: var(--neon-600);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.25);
  text-shadow: 0 0 6px rgba(255,106,0,0.308);
}
h1 {
  font-size: clamp(34px, 7.5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
h1 .accent,
.accent {
  color: var(--neon-600);
  text-shadow: 0 0 10px rgba(255,106,0,0.424), 0 0 21px rgba(255,106,0,0.231);
}
p.lead {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(240, 230, 210, 0.88);
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto;
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
}

/* "Mehr erfahren" — animierter dünner Strich mit Glow */
.scroll-line {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(240, 230, 210, 0.78);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
}
.scroll-line .sl-label {
  display: block;
  color: var(--neon-600);
  text-shadow: 0 0 6px rgba(255,106,0,0.424);
}
.scroll-line .sl-track {
  width: 1.5px;
  height: 64px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,106,0,0.20) 50%, transparent 100%);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.scroll-line .sl-track::after {
  content: '';
  position: absolute;
  left: -1px;
  top: -40%;
  width: 3.5px;
  height: 30px;
  background: linear-gradient(180deg, transparent, var(--neon-600), #fff, var(--neon-600), transparent);
  filter: blur(0.4px);
  box-shadow: 0 0 12px var(--neon-600), 0 0 22px rgba(255,106,0,0.6);
  animation: slBeam 2.2s ease-in-out infinite;
  border-radius: 2px;
}
@keyframes slBeam {
  0%   { top: -40%; opacity: 0.0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 110%; opacity: 0.0; }
}

/* ---------- Section Defaults — transparent, damit Waben durchschauen ---------- */
.section {
  position: relative;
  padding: var(--section-py) 0;
  background: transparent;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-600);
  font-weight: 700;
  margin-bottom: 16px;
  padding: 4px 12px;
  background: rgba(255,106,0,0.08);
  border-radius: 999px;
  border: 1px solid rgba(255,106,0,0.30);
  text-shadow: 0 0 6px rgba(255,106,0,0.27);
}
.section-title {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 880px;
}

/* Akzent-Schriften: alle Neon-Orange */
.accent-gold,
.accent-lava {
  color: var(--neon-600);
  text-shadow: 0 0 9px rgba(255,106,0,0.424), 0 0 18px rgba(255,106,0,0.193);
}
.section-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-300);
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: 56px;
}

/* ---------- Card / Box Base + Neon-Hover ---------- */
.os-cube, .koennen-card, .branche-card, .stat-cube, .step,
.feature-row, .nutzen-item, .check-list li,
.preis-cube, .memo-card {
  position: relative;
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.os-cube::after, .koennen-card::after, .branche-card::after,
.stat-cube::after, .step::after, .feature-row::after,
.nutzen-item::after, .preis-cube::after, .memo-card::after {
  /* Neon-Border-Glow on Hover */
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.os-cube:hover, .koennen-card:hover, .branche-card:hover,
.stat-cube:hover, .step:hover, .preis-cube:hover, .memo-card:hover {
  transform: translateY(-3px);
}
.os-cube:hover::after, .koennen-card:hover::after, .branche-card:hover::after,
.stat-cube:hover::after, .step:hover::after, .feature-row:hover::after,
.nutzen-item:hover::after, .preis-cube:hover::after, .memo-card:hover::after {
  border-color: var(--neon-600);
  box-shadow:
    0 0 0 1px rgba(255,106,0,0.6),
    0 0 22px rgba(255,106,0,0.55),
    inset 0 0 14px rgba(255,106,0,0.10);
  animation: neonBorderPulse 2.4s ease-in-out infinite;
}
@keyframes neonBorderPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,106,0,0.5), 0 0 14px rgba(255,106,0,0.40), inset 0 0 10px rgba(255,106,0,0.08); }
  50%      { box-shadow: 0 0 0 1px rgba(255,106,0,0.8), 0 0 28px rgba(255,106,0,0.75), inset 0 0 18px rgba(255,106,0,0.14); }
}

/* SVG-Icon-Container (Boxen) */
.icon-box {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,106,0,0.08);
  border-radius: 14px;
  border: 1px solid rgba(255,106,0,0.32);
  margin-bottom: 18px;
  color: var(--neon-600);
}
.icon-box svg {
  width: 28px; height: 28px;
  filter: drop-shadow(0 0 6px rgba(255,106,0,0.55));
}

/* ---------- BETRIEBSSYSTEM ---------- */
.os-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 16px;
}
.os-cube {
  padding: 32px 28px;
}
.os-cube h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-100);
}
.os-cube p {
  color: var(--text-300);
  line-height: 1.55;
  font-size: 15px;
}

/* ---------- UNTERSCHIED / KÖNNEN ---------- */
.koennen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 16px;
}
.koennen-card {
  padding: 30px 28px;
  overflow: hidden;
}
.koennen-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--neon-500) 0%, var(--neon-600) 50%, var(--neon-deep) 100%);
  box-shadow: 0 0 14px rgba(255,106,0,0.6);
}
/* Tag: schlanker Ghost-Style */
.koennen-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--neon-600);
  border: 1px solid var(--neon-600);
  font-weight: 700;
  margin-bottom: 14px;
  text-shadow: 0 0 5px rgba(255,106,0,0.308);
}
.koennen-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-100);
}
.koennen-card p {
  color: var(--text-300);
  line-height: 1.6;
  font-size: 15px;
}
.koennen-card strong { color: var(--neon-600); font-weight: 600; }

/* ---------- GEDÄCHTNIS / KONTEXT ---------- */
.memo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 16px;
  align-items: stretch;
}
.memo-card {
  padding: 32px;
}
.memo-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-100);
}
.memo-card p {
  color: var(--text-300);
  line-height: 1.6;
  font-size: 15px;
}
.memo-card strong { color: var(--neon-600); font-weight: 600; }

.memo-example {
  padding: 32px;
  background: rgba(255,106,0,0.04);
  border: 1px dashed rgba(255,106,0,0.45);
  border-radius: 18px;
  font-family: ui-monospace, "SF Mono", Monaco, monospace;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-300);
  position: relative;
}
.memo-example .me-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-600);
  margin-bottom: 14px;
  text-shadow: 0 0 6px rgba(255,106,0,0.347);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.memo-example .me-q {
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
.memo-example .me-q::before { content: '› '; color: var(--neon-600); }
.memo-example .me-a {
  color: var(--text-300);
  display: block;
}
.memo-example .me-meta {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-500);
  font-style: italic;
}

/* ---------- BRANCHEN ---------- */
.branchen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 16px;
}
.branche-card {
  padding: 26px 22px;
}
.branche-card .icon-box {
  width: 52px; height: 52px;
  margin-bottom: 16px;
}
.branche-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-100);
}
.branche-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.branche-card ul li {
  color: var(--text-300);
  font-size: 14px;
  line-height: 1.45;
  padding-left: 14px;
  position: relative;
}
.branche-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon-600);
  box-shadow: 0 0 8px rgba(255,106,0,0.8);
}
.branchen-note {
  margin-top: 36px;
  text-align: center;
  font-size: 15px;
  font-style: italic;
  color: var(--text-500);
}

/* ---------- ANWENDUNGSBEISPIELE (Praxis-Cases) ---------- */
.cases-title {
  margin-top: 70px; text-align: center;
  font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; letter-spacing: -0.01em;
}
.cases-sub {
  margin: 12px auto 32px; max-width: 660px; text-align: center;
  color: var(--text-500); font-size: 15px; line-height: 1.55;
}
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.case-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 18px; padding: 18px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .25s ease, transform .25s ease;
}
.case-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }

/* Chat-Verlauf */
.case-chat { display: flex; flex-direction: column; gap: 9px; }
.chat-bubble {
  font-size: 13.5px; line-height: 1.5; border-radius: 13px; padding: 10px 13px; max-width: 93%;
}
.chat-bubble .chat-who {
  display: block; font-size: 10px; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 3px; opacity: .75;
}
.chat-bubble.user {
  align-self: flex-end; background: var(--bg-card-strong); color: var(--text-300);
  border: 1px solid var(--border); border-bottom-right-radius: 4px;
}
.chat-bubble.user .chat-who { color: var(--text-500); }
.chat-bubble.theo {
  align-self: flex-start; background: rgba(255,106,0,0.08); color: #e9eff0;
  border: 1px solid rgba(255,106,0,0.28); border-bottom-left-radius: 4px;
}
.chat-bubble.theo .chat-who { color: var(--neon-600); }
.chat-bubble .chat-time {
  display: block; margin-top: 5px; font-size: 9.5px; letter-spacing: .03em;
  color: var(--text-500); opacity: .6; font-variant-numeric: tabular-nums;
}
.chat-bubble.user .chat-time { text-align: right; }
.chat-bubble.theo .chat-time { text-align: left; }

/* Ergebnis-Vorschau */
.case-result { margin-top: auto; }
.case-result-label {
  display: block; font-size: 11px; letter-spacing: .07em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: 8px;
}
/* Mock-Container ist klickbar (Lightbox) — als <button> ohne Default-Button-Optik */
.case-mock {
  border: 1px solid var(--border-strong); border-radius: 12px; overflow: hidden;
  background: #0a2026; aspect-ratio: 16 / 10; box-shadow: 0 10px 26px rgba(3,15,18,0.4);
  position: relative; width: 100%; padding: 0; margin: 0; text-align: left;
  font-family: inherit; cursor: pointer; color: inherit;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
button.case-mock { -webkit-appearance: none; appearance: none; }
.case-mock:hover, .case-mock:focus-visible {
  border-color: var(--neon-600); transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(3,15,18,0.5);
}
.case-mock:focus-visible { outline: 2px solid var(--neon-600); outline-offset: 2px; }

/* Hover-Hinweis "Zum Vergroessern klicken" mit Lupe */
.case-zoom-hint {
  position: absolute; top: 8px; right: 8px; z-index: 4;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px 4px 7px; border-radius: 999px;
  background: rgba(0,43,50,0.82); color: #f5f1e8;
  font-size: 9.5px; font-weight: 600; letter-spacing: .01em;
  border: 1px solid rgba(255,106,0,0.5);
  opacity: 0; transform: translateY(-3px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}
.case-zoom-hint svg { width: 12px; height: 12px; flex: none; }
.case-mock:hover .case-zoom-hint, .case-mock:focus-visible .case-zoom-hint { opacity: 1; transform: translateY(0); }

/* Mock 1 — Bericht (CI: Petrol/Gold/Creme) */
.mock-report { background: #f5f1e8; color: #0c2b32; display: flex; flex-direction: column; }
.mr-head { background: #002b32; color: #fff; padding: 9px 12px; display: flex; justify-content: space-between; align-items: baseline; }
.mr-doc { font-size: 12px; font-weight: 600; }
.mr-org { font-size: 9.5px; color: var(--gold-400); }
.mr-kpis { display: flex; gap: 6px; padding: 9px 12px 0; }
.mr-kpis span { flex: 1; background: #fff; border: 1px solid #e3dccb; border-radius: 6px; padding: 5px 4px; font-size: 8px; color: #5a6b6d; text-align: center; }
.mr-kpis b { display: block; font-size: 11.5px; color: #002b32; }
.mr-body { display: flex; gap: 10px; padding: 9px 12px 11px; flex: 1; }
.mr-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; justify-content: center; }
.mr-lines .mr-h { font-size: 8.5px; font-weight: 700; color: #002b32; }
.mr-lines .mr-t { font-size: 7.8px; line-height: 1.4; color: #5a6b6d; }
.mr-chart { width: 40%; display: flex; align-items: flex-end; gap: 5px; }
.mr-chart span { flex: 1; background: #c8a96e; border-radius: 2px 2px 0 0; }

/* Mock 2 — Online-Shop (dunkles UI wie unsere Seite) */
.mock-shop { background: #07181d; display: flex; flex-direction: column; }
.ms-bar { display: flex; align-items: center; gap: 5px; padding: 7px 10px; background: #0c2026; border-bottom: 1px solid rgba(255,255,255,.06); }
.ms-dot { width: 7px; height: 7px; border-radius: 50%; background: #33474c; }
.ms-url { margin-left: 6px; font-size: 9px; color: #7d9296; }
.ms-cart { margin-left: auto; font-size: 9.5px; color: var(--neon-600); }
.ms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 11px; flex: 1; }
.ms-prod { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 7px; padding: 6px; display: flex; flex-direction: column; gap: 4px; }
.ms-img { height: 24px; border-radius: 4px; background: linear-gradient(135deg, #143038, #0c2026); border: 1px solid rgba(255,106,0,.18); }
.ms-name { font-size: 7.6px; line-height: 1.3; color: #c7d4d6; min-height: 20px; }
.ms-price { font-size: 11px; font-weight: 600; color: #fff; margin-top: auto; }

/* Mock 3 — Recherche mit Quellen + Bewertung */
.mock-research { background: #f5f1e8; color: #0c2b32; display: flex; flex-direction: column; }
.mre-head { background: #002b32; color: #fff; padding: 9px 12px; font-size: 12px; font-weight: 600; }
.mre-row { display: flex; align-items: center; gap: 7px; padding: 6px 12px; border-bottom: 1px solid #e6dfce; }
.mre-row:last-child { border-bottom: none; }
.mre-text { flex: 1; font-size: 7.8px; line-height: 1.35; color: #34474a; }
.mre-text b { color: #002b32; }
.mre-src { font-size: 7.5px; font-weight: 700; color: #2f7a4c; background: #e2efe7; border-radius: 4px; padding: 2px 6px; white-space: nowrap; }
.mre-stars { font-size: 7.5px; letter-spacing: 1px; color: #c8a96e; white-space: nowrap; }
.mre-row.is-disputed .mre-src { color: #b4632a; background: #f6e6d6; }

/* Mock 4 — Projektplan (Gantt) */
.mock-plan { background: #07181d; display: flex; flex-direction: column; }
.mp-head { background: #0c2026; color: #fff; padding: 9px 12px; font-size: 12px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.06); }
.mp-rows { display: flex; flex-direction: column; gap: 8px; padding: 12px; flex: 1; justify-content: center; }
.mp-row { display: flex; align-items: center; gap: 8px; }
.mp-label { width: 58px; flex: none; font-size: 8.5px; color: #c4d2d4; }
.mp-track { position: relative; flex: 1; height: 8px; background: rgba(255,255,255,.05); border-radius: 4px; }
.mp-bar { position: absolute; top: 0; height: 8px; border-radius: 4px; background: linear-gradient(90deg, #c8a96e, #ff6a00); }
.mp-bar.is-done { background: linear-gradient(90deg, #8d9a6a, #5f9a4c); }
.mp-bar.is-active { background: linear-gradient(90deg, #c8a96e, #ff6a00); }
.mp-bar.is-planned { background: rgba(200,169,110,.45); }
.mp-milestone { position: absolute; right: -4px; top: 50%; width: 9px; height: 9px; transform: translateY(-50%) rotate(45deg); background: #fff; border: 1px solid var(--neon-600); }

@media (max-width: 820px) { .cases-grid { grid-template-columns: 1fr; } }

/* ---------- LIGHTBOX (Case-Detail-Grossansicht) ---------- */
.case-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.78);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.case-lightbox.is-open { opacity: 1; visibility: visible; }
.clb-dialog {
  position: relative;
  width: 100%; max-width: 720px; max-height: 86vh;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  background: #f5f1e8; color: #0c2b32;
  border: 1px solid var(--border-strong); border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  transform: translateY(14px) scale(.985);
  transition: transform .26s ease;
}
.case-lightbox.is-open .clb-dialog { transform: translateY(0) scale(1); }
.clb-close {
  position: absolute; top: 10px; right: 10px; z-index: 6;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,43,50,0.9); color: #fff; border: 1px solid rgba(255,106,0,.5);
  font-size: 18px; line-height: 1; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.clb-close:hover { background: var(--neon-600); transform: rotate(90deg); }
.clb-close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* Detail-Kopf (Petrol) */
.clb-head { background: #002b32; color: #fff; padding: 18px 22px; border-radius: 16px 16px 0 0; }
.clb-doc { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.clb-org { font-size: 13px; color: var(--gold-400); margin-top: 3px; }
.clb-badge {
  display: inline-block; margin-top: 9px; font-size: 10.5px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: #f5f1e8; background: rgba(255,106,0,.22);
  border: 1px solid rgba(255,106,0,.5); border-radius: 5px; padding: 3px 9px;
}
.clb-body { padding: 18px 22px 22px; }
.clb-section { margin-top: 18px; }
.clb-section:first-child { margin-top: 0; }
.clb-h { font-size: 14px; font-weight: 700; color: #002b32; margin-bottom: 8px; }
.clb-p { font-size: 13px; line-height: 1.6; color: #33474a; margin: 0 0 6px; }

/* KPI-Kacheln */
.clb-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.clb-kpi { background: #fff; border: 1px solid #e3dccb; border-radius: 8px; padding: 10px 9px; text-align: center; }
.clb-kpi .k-label { display: block; font-size: 10px; color: #5a6b6d; }
.clb-kpi .k-val { display: block; font-size: 17px; font-weight: 700; color: #002b32; margin-top: 3px; }
.clb-kpi .k-delta { display: block; font-size: 9.5px; color: #2f7a4c; margin-top: 2px; }

/* Tabelle (Segment / Plan) */
.clb-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.clb-table th, .clb-table td { text-align: left; padding: 7px 8px; border-bottom: 1px solid #e3dccb; }
.clb-table th { font-size: 10.5px; text-transform: uppercase; letter-spacing: .04em; color: #5a6b6d; font-weight: 700; }
.clb-table td.num, .clb-table th.num { text-align: right; font-variant-numeric: tabular-nums; }
.clb-table tr.is-sum td { font-weight: 700; color: #002b32; border-top: 2px solid #c8a96e; border-bottom: none; }
.clb-status-done { color: #2f7a4c; font-weight: 700; }
.clb-status-active { color: var(--neon-deep); font-weight: 700; }
.clb-status-planned { color: #5a6b6d; font-weight: 700; }

/* Detail-Balkendiagramm (5 Quartale) */
.clb-chart { display: flex; align-items: flex-end; gap: 12px; height: 130px; padding: 10px 4px 0; }
.clb-chart .cb-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.clb-chart .cb-bar { width: 70%; background: linear-gradient(180deg, #dcc188, #c8a96e); border-radius: 3px 3px 0 0; }
.clb-chart .cb-col.is-last .cb-bar { background: linear-gradient(180deg, #ff8c3a, #ff6a00); }
.clb-chart .cb-val { font-size: 11px; font-weight: 700; color: #002b32; margin-bottom: 4px; }
.clb-chart .cb-lab { font-size: 10px; color: #5a6b6d; margin-top: 5px; }

/* Empfehlungs-Box */
.clb-rec { background: #fff; border-left: 3px solid var(--neon-600); border-radius: 0 8px 8px 0; padding: 11px 14px; font-size: 12.5px; line-height: 1.55; color: #33474a; }

/* Shop-Detail */
.clb-shop-window { border: 1px solid #d8cfbb; border-radius: 10px; overflow: hidden; background: #fbf8f1; }
.clb-shop-bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: #002b32; color: #fff; }
.clb-shop-bar .s-dot { width: 8px; height: 8px; border-radius: 50%; background: #4a6166; }
.clb-shop-bar .s-url { margin-left: 6px; font-size: 12px; color: #cfe0e2; }
.clb-shop-bar .s-cart { margin-left: auto; font-size: 12px; color: var(--gold-400); font-weight: 700; }
.clb-shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; padding: 14px; }
.clb-pcard { background: #fff; border: 1px solid #e3dccb; border-radius: 9px; padding: 11px; display: flex; flex-direction: column; }
.clb-pcard .p-img { height: 56px; border-radius: 6px; background: linear-gradient(135deg, #0c2b32, #143038); border: 1px solid rgba(255,106,0,.25); margin-bottom: 9px; }
.clb-pcard .p-name { font-size: 12px; font-weight: 600; color: #002b32; line-height: 1.3; }
.clb-pcard .p-price { font-size: 15px; font-weight: 700; color: #002b32; margin: 6px 0 9px; }
.clb-pcard .p-btn { margin-top: auto; font-size: 11px; font-weight: 700; text-align: center; padding: 7px; border-radius: 6px; background: var(--neon-600); color: #fff; }
.clb-cart-drawer { border-top: 1px dashed #c8a96e; padding: 14px; background: #fff; }
.clb-cart-drawer .cd-title { font-size: 13px; font-weight: 700; color: #002b32; margin-bottom: 9px; display: flex; align-items: center; gap: 7px; }
.clb-cart-row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 5px 0; color: #33474a; }
.clb-cart-row.cd-sub { border-top: 1px solid #e3dccb; margin-top: 5px; padding-top: 8px; }
.clb-cart-row.cd-total { border-top: 2px solid #c8a96e; margin-top: 5px; padding-top: 8px; font-size: 14px; font-weight: 700; color: #002b32; }
.clb-cart-checkout { margin-top: 11px; text-align: center; font-size: 12.5px; font-weight: 700; padding: 9px; border-radius: 7px; background: var(--neon-600); color: #fff; }

/* Research-Detail */
.clb-finding { border: 1px solid #e3dccb; border-radius: 9px; padding: 12px 14px; margin-bottom: 10px; background: #fff; }
.clb-finding.is-disputed { border-color: #e0b894; background: #fdf6ee; }
.clb-finding .f-text { font-size: 13px; line-height: 1.5; color: #1c3236; }
.clb-finding .f-text b { color: #002b32; }
.clb-finding .f-meta { display: flex; align-items: center; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.clb-finding .f-src { font-size: 11px; font-weight: 700; color: #2f7a4c; background: #e2efe7; border-radius: 5px; padding: 3px 8px; }
.clb-finding .f-stars { font-size: 11px; letter-spacing: 1.5px; color: #c8a96e; }
.clb-finding .f-flag { font-size: 10.5px; font-weight: 700; color: #b4632a; background: #f6e6d6; border-radius: 5px; padding: 3px 8px; }
.clb-finding.is-disputed .f-src { color: #b4632a; background: #f6e6d6; }
.clb-foot { font-size: 11.5px; color: #5a6b6d; margin-top: 12px; line-height: 1.5; }

/* Gantt-Detail */
.clb-gantt { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.clb-gantt .g-row { display: flex; align-items: center; gap: 10px; }
.clb-gantt .g-label { width: 150px; flex: none; font-size: 12px; color: #33474a; }
.clb-gantt .g-track { position: relative; flex: 1; height: 14px; background: #ece5d5; border-radius: 5px; }
.clb-gantt .g-bar { position: absolute; top: 0; height: 14px; border-radius: 5px; }
.clb-gantt .g-bar.is-done { background: linear-gradient(90deg, #8d9a6a, #5f9a4c); }
.clb-gantt .g-bar.is-active { background: linear-gradient(90deg, #c8a96e, #ff6a00); }
.clb-gantt .g-bar.is-planned { background: rgba(200,169,110,.5); }
.clb-gantt .g-milestone { position: absolute; right: -5px; top: 50%; width: 12px; height: 12px; transform: translateY(-50%) rotate(45deg); background: #fff; border: 1.5px solid var(--neon-600); }
.clb-gantt .g-scale { display: flex; justify-content: space-between; font-size: 10px; color: #8a9a9c; padding-left: 160px; margin-top: -4px; }

@media (prefers-reduced-motion: reduce) {
  .case-lightbox, .clb-dialog, .case-mock, .case-zoom-hint { transition: none; }
  .clb-dialog { transform: none; }
}
@media (max-width: 560px) {
  .case-lightbox { padding: 12px; }
  .clb-dialog { max-width: 94vw; max-height: 90vh; }
  .clb-kpis { grid-template-columns: repeat(2, 1fr); }
  .clb-shop-grid { grid-template-columns: 1fr; }
  .clb-gantt .g-label { width: 96px; font-size: 11px; }
  .clb-gantt .g-scale { padding-left: 106px; }
  .clb-doc { font-size: 16px; }
}

/* Sub-Block "In drei Schritten einsatzbereit" unter Anwendung (v23) */
.branchen-steps-title {
  margin-top: 64px;
  margin-bottom: 28px;
  text-align: center;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ---------- PROBLEM ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.stat-cube {
  padding: 32px 28px;
}
.stat-num {
  font-size: clamp(34px, 4.8vw, 52px);
  font-weight: 400;
  white-space: nowrap;
  color: var(--neon-600);
  text-shadow: 0 0 10px rgba(255,106,0,0.424), 0 0 21px rgba(255,106,0,0.231);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 15px;
  color: var(--text-300);
  line-height: 1.5;
}
/* Stat-Strip — 4 Kennzahlen-Kacheln */
.stat-strip {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  position: relative;
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--neon-600);
  box-shadow: 0 0 22px rgba(255,106,0,0.45), inset 0 0 14px rgba(255,106,0,0.08);
}
.stat-num {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  white-space: nowrap;
  line-height: 1.1;
  color: var(--neon-600);
  text-shadow: 0 0 12px rgba(255,106,0,0.38);
  margin-bottom: 12px;
}
.stat-desc {
  font-size: 15px;
  color: var(--text-300);
  line-height: 1.5;
}
@media (max-width: 860px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stat-strip { grid-template-columns: 1fr; }
}

/* ---------- LÖSUNG ---------- */
.loesung-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  margin-top: 16px;
}
.cube-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 22px 80px rgba(0,0,0,0.45), 0 0 32px rgba(255,106,0,0.25);
}
.cube-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cube-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(5,31,37,0.6) 100%);
  pointer-events: none;
}
.loesung-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.feature-row {
  display: flex; gap: 20px;
  padding: 22px;
}
.feature-row:hover { transform: translateX(4px); }
.feature-row .icon-box { margin-bottom: 0; flex-shrink: 0; }
.feature-text h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-100);
}
.feature-text p {
  color: var(--text-300);
  line-height: 1.55;
  font-size: 15px;
}

/* ---------- FACHARBEITER-NUTZEN ---------- */
.nutzen-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.nutzen-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  overflow: hidden;
}
.nutzen-bar {
  width: 3px;
  flex-shrink: 0;
  align-self: stretch;
  background: linear-gradient(180deg, var(--neon-400) 0%, var(--neon-600) 50%, var(--neon-deep) 100%);
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(255,106,0,0.7);
}
.nutzen-item p {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
  color: var(--text-100);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

/* ---------- DATENSCHUTZ — voller pulsierender Cube ---------- */
.datenschutz-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 16px;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-300);
}
.check-list strong { color: var(--text-100); font-weight: 600; }
.check-list .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--neon-600);
  color: var(--neon-600);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 0 12px rgba(255,106,0,0.45);
  text-shadow: 0 0 5px rgba(255,106,0,0.385);
}

.dz-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}
.dz-cube-large {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 80px rgba(0,0,0,0.5);
  animation: dzCubePulse 3.4s ease-in-out infinite;
}
.dz-cube-large img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.dz-cube-large::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at center, rgba(255,106,0,0.45), transparent 55%);
  filter: blur(20px);
  z-index: -1;
  animation: dzGlowPulse 3.4s ease-in-out infinite;
}
@keyframes dzCubePulse {
  0%, 100% { box-shadow: 0 22px 60px rgba(0,0,0,0.5), 0 0 24px rgba(255,106,0,0.45); transform: scale(1); }
  50%      { box-shadow: 0 28px 90px rgba(0,0,0,0.55), 0 0 70px rgba(255,106,0,0.95); transform: scale(1.018); }
}
@keyframes dzGlowPulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}
.dz-caption {
  position: absolute;
  bottom: -36px;
  left: 0; right: 0;
  text-align: center;
  color: var(--neon-600);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(255,106,0,0.347);
}

/* ---------- DEMO ---------- */
.demo-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}
/* PRIMARY BUTTON — gefüllt (für aktivierende Buttons: Demo, Vormerken) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--neon-500) 0%, var(--neon-600) 100%);
  color: #0a0606;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid var(--neon-600);
  letter-spacing: 0.01em;
  box-shadow: 0 6px 24px rgba(255,106,0,0.40), 0 0 0 1px rgba(255,106,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 12px 36px rgba(255,106,0,0.55), 0 0 0 1px rgba(255,138,38,0.95);
}
.btn-primary svg { stroke: #0a0606; }
.demo-note {
  font-size: 14px;
  color: var(--text-500);
  font-style: italic;
}
.demo-preview {
  margin-top: 56px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 26px 96px rgba(0,0,0,0.50);
  background: var(--bg-deep);
}
.demo-preview-frame {
  background: var(--bg-deep);
}
.demo-preview-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.demo-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
}
.demo-url {
  margin-left: 14px;
  font-size: 13px;
  color: var(--text-500);
  font-family: ui-monospace, "SF Mono", Monaco, monospace;
}
.demo-preview-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 320px;
}
.demo-mock-sidebar {
  padding: 18px 14px;
  background: rgba(0,0,0,0.20);
  border-right: 1px solid var(--border);
}
.demo-mock-logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--neon-500), var(--neon-600));
  margin-bottom: 18px;
  box-shadow: 0 0 12px rgba(255,106,0,0.55);
}
.demo-mock-item {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-300);
  border-radius: 8px;
  margin-bottom: 4px;
}
.demo-mock-item.active {
  background: linear-gradient(90deg, rgba(255,106,0,0.18), transparent);
  color: var(--neon-600);
  border-left: 2px solid var(--neon-600);
  padding-left: 12px;
}
.demo-mock-content {
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.demo-mock-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%), var(--bg-card-strong);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 110px;
  position: relative;
  overflow: hidden;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mc-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-500);
}
.mc-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-100);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 2px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.mc-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-500);
}
.mc-sub {
  margin-top: auto;
  font-size: 11px;
  color: var(--text-300);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 5px;
}
.mc-trend { font-weight: 600; }
.mc-trend.up { color: #4ade80; }
.mc-bar {
  margin-top: 6px;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.mc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6a00, #ffaa3a);
  border-radius: 2px;
}
.mc-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.5);
  animation: mc-pulse 2s infinite;
}
.mc-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}
.mc-file {
  gap: 6px;
  color: var(--text-300);
  min-width: 0;
}
.mc-file-icon {
  flex: 0 0 auto;
  color: var(--neon-400);
  opacity: 0.85;
}
.mc-file-name {
  font-family: ui-monospace, "SF Mono", Monaco, monospace;
  font-size: 10.5px;
  letter-spacing: 0;
  color: var(--text-100);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1 1 auto;
}
@keyframes mc-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ---------- WIE FUNKTIONIERT ---------- */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  margin-top: 24px;
}
.step {
  padding: 36px 28px;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--neon-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-600);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 14px rgba(255,106,0,0.45);
  text-shadow: 0 0 6px rgba(255,106,0,0.385);
}
.step h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-100);
}
.step p {
  color: var(--text-300);
  line-height: 1.55;
  font-size: 15px;
}
.preise-orientierung {
  padding: 40px;
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 22px;
}
.preise-orientierung h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.preise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}
.preise-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.preise-alternativen {
  margin-top: 80px;
}
.preise-intro {
  font-size: 15px;
  color: var(--text-300);
  margin-bottom: 20px;
  line-height: 1.55;
}
.preis-cube {
  padding: 22px 20px;
  background: var(--bg);
  border-radius: 14px;
}
.preis-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-500);
  margin-bottom: 10px;
}
.preis-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--neon-600);
  text-shadow: 0 0 9px rgba(255,106,0,0.385);
  margin-bottom: 6px;
}
.preis-value.preis-value-alt {
  font-size: 17px;
  font-weight: 600;
  opacity: 0.82;
  margin-top: -2px;
  margin-bottom: 8px;
}
.preis-hint {
  font-size: 13px;
  color: var(--text-500);
}
.preise-note {
  font-size: 14px;
  color: var(--text-500);
  font-style: italic;
}

/* ---------- KONTAKT ---------- */
.lead-form {
  max-width: 720px;
  margin-top: 16px;
}
.lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  background: var(--bg-card-strong);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-100);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.lead-form textarea {
  margin-top: 14px;
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}
.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--neon-600);
  background: var(--bg-card-strong);
  box-shadow: 0 0 0 3px rgba(255,106,0,0.18), 0 0 18px rgba(255,106,0,0.25);
}
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: var(--text-500); }
/* Honeypot — fuer Menschen unsichtbar, Bots fuellen es aus */
.lead-form .hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
.lead-actions { margin-top: 14px; }
.lead-form button {
  width: 100%;
  justify-content: center;
}
.lead-msg {
  min-height: 24px;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
}
.lead-msg.ok { color: #6ee7b7; }
.lead-msg.err { color: #fca5a5; }

.site-footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--neon-600);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 0 6px rgba(255,106,0,0.308);
}
/* Marke "MagmaCube" Mixed-Case auch im Footer — kein uppercase (Rico 2026-06-03) */
.footer-brand-word { text-transform: none; }
.footer-brand img {
  width: 32px; height: 32px;
  /* Vollstaendiges Logo ohne abgeschnittene Ecken: kein Crop, kein Eck-Clip */
  object-fit: contain;
}
.footer-meta {
  color: var(--text-500);
  font-size: 13px;
}
.footer-meta a {
  color: var(--text-300);
  transition: color 0.15s ease;
}
.footer-meta a:hover { color: var(--neon-600); }
.footer-emblem {
  display: flex;
  justify-content: center;
  padding: 36px 24px 28px;
}
.footer-emblem img {
  width: 320px;
  max-width: 80%;
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 0 18px rgba(255,106,0,0.22));
}
@media (max-width: 720px) {
  .footer-emblem img { width: 260px; }
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .loesung-grid,
  .datenschutz-grid,
  .memo-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .stat-grid,
  .step-grid,
  .preise-grid,
  .preise-grid-2,
  .os-grid,
  .koennen-grid {
    grid-template-columns: 1fr;
  }
  .branchen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lead-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  /* Header: vom 3-Spalten-Grid auf Flex umstellen, damit nav-toggle + lang-switch sauber rechts sitzen */
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
  }
  .header-inner > .brand,
  .header-inner > .lang-switch { justify-self: auto; }
  .brand { font-size: 16px; gap: 8px; letter-spacing: 0.03em; }
  .brand-mark { width: 32px; height: 32px; }
  .lang-switch { margin-left: auto; margin-right: 10px; }

  .site-nav {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    display: none;
    flex-direction: column;
    background: rgba(3,23,27,0.97);
    backdrop-filter: blur(16px);
    padding: 40px 24px;
    gap: 24px;
    font-size: 18px;
    align-items: stretch;
    text-align: center;
    z-index: 50;
  }
  .site-nav.is-open { display: flex; }
  .site-nav .nav-cta { text-align: center; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: transparent;
    border: 1px solid var(--neon-600);
    border-radius: 10px;
    flex-shrink: 0;
  }
  .nav-toggle span {
    width: 18px; height: 2px;
    background: var(--neon-600);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .feature-row { padding: 18px; }
  .preise-orientierung { padding: 24px; }
  .demo-preview-body { grid-template-columns: 1fr; }
  .demo-mock-sidebar { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-content { padding: 20px; }
  .badge { font-size: 10px; padding: 5px 12px; margin-bottom: 18px; }
  .nutzen-item { padding: 20px; gap: 16px; }
  .stat-cube,
  .os-cube,
  .branche-card { padding: 22px; }
  .koennen-card { padding: 24px 22px; }
  .branchen-grid { grid-template-columns: 1fr; }
  .memo-example { padding: 22px; font-size: 13px; }
}

/* ---------- "Mehr erfahren" am Ende jeder Sektion (Desktop only) ---------- */
.section-scroll-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 72px auto 0;
  width: max-content;
  color: rgba(240, 230, 210, 0.78);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
}
.section-scroll-line .sl-label {
  display: block;
  color: var(--neon-600);
  text-shadow: 0 0 6px rgba(255,106,0,0.424);
}
.section-scroll-line .sl-track {
  width: 1.5px;
  height: 64px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,106,0,0.20) 50%, transparent 100%);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.section-scroll-line .sl-track::after {
  content: '';
  position: absolute;
  left: -1px;
  top: -40%;
  width: 3.5px;
  height: 30px;
  background: linear-gradient(180deg, transparent, var(--neon-600), #fff, var(--neon-600), transparent);
  filter: blur(0.4px);
  box-shadow: 0 0 12px var(--neon-600), 0 0 22px rgba(255,106,0,0.6);
  animation: slBeam 2.2s ease-in-out infinite;
  border-radius: 2px;
}
@media (max-width: 720px) {
  .section-scroll-line { display: none; }
}

/* ===============================================================
 * v2-RELAUNCH — zusaetzliche Funnel-Komponenten (neu.magmacube.ai)
 * Erben das bestehende Design-System (Petrol-BG, Neon-Orange,
 * Box-Radius 18px, Neon-Border-Glow). KEINE neuen Farben.
 * =============================================================== */

/* --- Hero: Box-Claim Sub-Zeile (Datenschutz-Hook) --- */
.hero-sub-claim {
  margin-top: 18px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-300);
  letter-spacing: 0.01em;
}
.hero-cta-row {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border: 1px solid var(--neon-600);
  border-radius: 12px;
  color: var(--neon-600);
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255,106,0,0.05);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.btn-ghost:hover {
  background: rgba(255,106,0,0.12);
  box-shadow: 0 0 18px rgba(255,106,0,0.45);
  transform: translateY(-2px);
}

/* --- Problem: Pain-Cards (Best-of: 5 Pains inkl. US-Cloud-Compliance) --- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.pain-card {
  position: relative;
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pain-card:hover {
  transform: translateY(-3px);
  border-color: var(--neon-600);
  box-shadow: 0 0 22px rgba(255,106,0,0.45), inset 0 0 14px rgba(255,106,0,0.08);
}
.pain-card .pain-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,106,0,0.08);
  border: 1px solid rgba(255,106,0,0.32);
  border-radius: 12px;
  color: var(--neon-600);
  margin-bottom: 16px;
}
.pain-card .pain-icon svg { width: 24px; height: 24px; filter: drop-shadow(0 0 6px rgba(255,106,0,0.5)); }
.pain-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.pain-card p { font-size: 15px; color: var(--text-300); line-height: 1.55; }

/* --- Why-Us: Vergleichstabelle vs. Generic-Chatbot + Freelancer --- v22: zurueck auf schlichten Ur-Stil (v17), Gruppierung bleibt schlicht --- */
.whyus-table-wrap { overflow-x: auto; margin-top: 8px; }
.whyus-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 680px;
}
.whyus-table th, .whyus-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.whyus-table thead th {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-500);
  font-weight: 700;
  border-bottom: 1px solid var(--border-strong);
}
/* MagmaCube-Spalte: KEINE Flaechen-Hervorhebung mehr — Kopf im Grundton */
.whyus-table thead th.col-mc {
  color: var(--text-500);
}
.whyus-table td.feature-name { color: var(--text-100); font-weight: 500; }
.whyus-table td.feature-name .feature-sub { display: block; margin-top: 3px; font-weight: 400; font-size: 12.5px; line-height: 1.4; color: var(--text-300); }
/* MagmaCube-Spalte: einheitlicher Grundton, keine gruene Flaeche/Rahmen */
.whyus-table td.col-mc {
  color: var(--text-300);
}
.whyus-table tbody tr:last-child td { border-bottom: none; }

/* Gruppen-Ueberschriften: schlicht (eyebrow-artig), keine Balken/Sonderlinien */
.whyus-table tr.whyus-group td {
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 26px;
}

/* Schrift einheitlich im Grundton — nur die ERGEBNIS-Symbole sind farbig */
.whyus-table .yes { color: var(--text-300); font-weight: 500; }
.whyus-table .yes::before { content: "✓\00a0"; color: var(--cmp-green); }
.whyus-table .no  { color: var(--text-300); font-weight: 500; }
.whyus-table .no::before  { content: "✗\00a0"; color: var(--cmp-red); }
/* Teilweise/neutral — dezent, ohne Symbol-Wertung */
.whyus-table .partial { color: var(--text-300); }
.whyus-table .partial::before { content: "~\00a0"; color: var(--text-500); }

/* --- ROI / Wirtschaftlichkeit: Balkenvergleich --- */
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
  align-items: end;
}
.roi-bar-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
}
.roi-bar-box .roi-label { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-500); margin-bottom: 6px; }
.roi-bar-box .roi-value { font-size: clamp(26px, 4vw, 38px); font-weight: 700; margin-bottom: 14px; }
.roi-bar-box.is-mc .roi-value { color: var(--neon-600); text-shadow: 0 0 10px rgba(255,106,0,0.4); }
.roi-track { height: 14px; background: rgba(255,255,255,0.05); border-radius: 999px; overflow: hidden; }
.roi-fill { height: 100%; border-radius: 999px; }
.roi-fill.market { width: 100%; background: linear-gradient(90deg, #6b7c7f, #91a3a6); }
.roi-fill.mc { width: 33%; background: linear-gradient(90deg, var(--neon-deep), var(--neon-600)); box-shadow: 0 0 14px rgba(255,106,0,0.5); }
.roi-note { margin-top: 22px; font-size: 15px; color: var(--text-300); line-height: 1.6; }
.roi-note strong { color: var(--neon-600); }

/* --- Wirtschaftlichkeit: Aufschluesselung der 6.000 EUR (gestapelter Balken) --- */
.roi-breakdown {
  margin-top: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 28px;
}
.roi-bd-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.roi-bd-title { font-size: 16px; font-weight: 600; color: var(--text-100); }
.roi-bd-sum { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-500); white-space: nowrap; }
/* Segment-Farben — 5 klar unterscheidbare, markenharmonische Toene */
.roi-bd-seg.seg-an-nebenkosten, .roi-bd-dot.seg-an-nebenkosten { background: #8d7233; }   /* Gold-tief — AG-Nebenkosten */
.roi-bd-seg.seg-netto,          .roi-bd-dot.seg-netto          { background: #ff6a00; }   /* Marken-Orange — Nettogehalt */
.roi-bd-seg.seg-lohnsteuer,     .roi-bd-dot.seg-lohnsteuer     { background: #c8a96e; }   /* Gold — Lohnsteuer */
.roi-bd-seg.seg-kv,             .roi-bd-dot.seg-kv             { background: #5aa9a0; }   /* Teal — Krankenversicherung */
.roi-bd-seg.seg-soz,            .roi-bd-dot.seg-soz            { background: #7d6cc4; }   /* Violett — uebrige Sozialbeitraege */
.roi-bd-bar {
  display: flex;
  width: 100%;
  height: 30px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.roi-bd-seg { height: 100%; display: block; }
.roi-bd-seg + .roi-bd-seg { border-left: 2px solid var(--bg); }
.roi-bd-legend { list-style: none; margin: 18px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }
.roi-bd-legend li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-300); }
.roi-bd-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.roi-bd-l-label { flex: 1; }
.roi-bd-l-val { color: var(--text-100); font-weight: 600; white-space: nowrap; }
.roi-bd-hint { margin: 18px 0 0; font-size: 14px; color: var(--text-300); line-height: 1.6; }
.roi-bd-foot { margin: 14px 0 0; font-size: 12px; color: var(--text-500); line-height: 1.5; }
/* Legende vertikal gestapelt + Nettogehalt als abgesetztes Ergebnis */
.roi-bd-legend { grid-template-columns: 1fr; }
.roi-bd-result {
  display: flex; align-items: center; gap: 10px;
  margin: 14px 0 0; padding: 14px 0 0;
  border-top: 1px solid var(--border-strong);
  font-size: 15px; font-weight: 700; color: var(--text-100);
}
.roi-bd-result-label { flex: 1; color: var(--neon-600); }
.roi-bd-result-val { color: var(--neon-600); white-space: nowrap; }

/* --- Wirtschaftlichkeit: gemeinsamer Vergleichsbalken Vollzeitkraft vs Abo --- */
.accent-orange { color: var(--neon-600); }
.roi-combo-pair {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.roi-combo {
  margin-top: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  /* v11: Positions-Anker fuer .roi-info-pop — Popover so breit wie diese Box */
  position: relative;
}
.roi-combo-sub {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-300);
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.roi-combo-sub strong { color: var(--text-100); font-weight: 600; }
.roi-combo-sub .accent-orange { color: var(--neon-600); font-weight: 700; }
@media (max-width: 720px) {
  .roi-combo-pair { grid-template-columns: 1fr; gap: 18px; }
}
.roi-combo-head { margin-bottom: 16px; }
.roi-combo-title { font-size: 16px; font-weight: 600; color: var(--text-100); }
.roi-combo-bar {
  position: relative;
  width: 100%;
  height: 30px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(90deg, #6b7c7f, #91a3a6);
}
.roi-combo-mc {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  /* Mindestbreite, damit der orange Teil auch bei sehr kleinem Prozentsatz (ca. 0,75 %) sichtbar bleibt */
  min-width: 6px;
  background: linear-gradient(90deg, var(--neon-deep), var(--neon-600));
  box-shadow: 0 0 14px rgba(255,106,0,0.5);
  border-right: 2px solid var(--bg);
  border-radius: 8px 0 0 8px;
}
.roi-combo-legend { list-style: none; margin: 18px 0 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 10px; }
.roi-combo-legend li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-300); }
.roi-combo-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.roi-combo-dot.is-market { background: #91a3a6; }
.roi-combo-dot.is-mc { background: var(--neon-600); }
.roi-combo-l-label { flex: 1; }
.roi-combo-l-val { color: var(--text-100); font-weight: 600; white-space: nowrap; }
.roi-combo-l-val.accent-orange { color: var(--neon-600); }
@media (max-width: 720px) {
  .roi-bd-bar { height: 26px; }
  .roi-combo-bar { height: 26px; }
}

/* --- Wirtschaftlichkeit: Info-Icon + Hover/Tap-Tooltip --- */
.roi-info {
  /* v11: kein eigener Positions-Anker mehr — .roi-info-pop richtet sich an .roi-combo aus */
  position: static;
  margin-top: 14px;
  align-self: flex-end;   /* Icon unten rechts in der Box */
}
.roi-info-icon {
  width: 26px; height: 26px;
  border-radius: 999px;
  border: 1px solid var(--neon-600);
  background: rgba(255,106,0,0.12);
  color: var(--neon-600);
  font-size: 14px; font-weight: 700; font-style: italic;
  line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.roi-info-icon:hover,
.roi-info-icon:focus-visible {
  background: rgba(255,106,0,0.24);
  box-shadow: 0 0 10px rgba(255,106,0,0.4);
  outline: none;
}
.roi-info-pop {
  position: absolute;
  /* v12: untere rechte Ecke am i-Icon verankert (wie frueher) — Popover klappt nach oben/links auf.
     Breite bleibt = Boxbreite (.roi-combo via left:0/right:0). Anker ist .roi-combo (position:relative).
     bottom = padding-bottom(26px) + Icon-Hoehe(26px) + Luecke(12px) -> Unterkante sitzt direkt ueber dem i unten rechts. */
  left: 0;
  right: 0;
  width: auto;
  bottom: calc(26px + 26px + 12px);
  transform-origin: bottom right;
  max-height: min(70vh, 560px);
  overflow-y: auto;
  /* v10 Fix: vollständig opaker Hintergrund — vorher var(--bg-card-strong)=rgba(255,255,255,0.05) → durchsichtig */
  background: #0c2e38;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 18px 64px rgba(0,0,0,0.80), 0 0 0 1px rgba(255,106,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 9999;
}
/* v11: kein Sonder-Breitenfall mehr — beide Popover folgen der Boxbreite (width:auto via .roi-info-pop) */
.roi-info-pop-wide { width: auto; }
/* Hover (Desktop) und aktiver Tap-Zustand (mobil, via JS .is-open) */
.roi-info:hover .roi-info-pop,
.roi-info:focus-within .roi-info-pop,
.roi-info.is-open .roi-info-pop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.roi-info-pop .roi-bd { margin: 0; }
.roi-info-pop .roi-bd-head { margin-bottom: 14px; }
.roi-info-pop .roi-compare { font-size: 14px; }
.roi-info-pop .roi-compare th,
.roi-info-pop .roi-compare td { padding: 9px 12px; }
/* v12: Spaltenausrichtung der Breakdown-Legende EINZEILIG: Punkt | Bezeichnung | Prozent | Betrag.
   Fix: 4 Spalten (vorher 3 -> der Betrag brach in eine 2. Zeile am linken Rand um).
   Dot fliesst natuerlich in Spalte 1 (kein explizites grid-column/grid-row mehr). */
.roi-info-pop .roi-bd-legend li,
.roi-info-pop .roi-bd-result {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0 14px;
}
.roi-info-pop .roi-bd-legend li .roi-bd-dot,
.roi-info-pop .roi-bd-result .roi-bd-dot {
  grid-column: 1; grid-row: 1;
  margin-right: 0;
}
.roi-bd-l-pct { color: var(--text-300); font-weight: 600; white-space: nowrap; text-align: right; min-width: 72px; }
.roi-info-pop .roi-bd-result .roi-bd-l-pct { color: var(--neon-600); }
/* Bezeichnung einzeilig, kein Umbruch -> alles bleibt in einer Grid-Reihe */
.roi-info-pop .roi-bd-legend li .roi-bd-l-label,
.roi-info-pop .roi-bd-result .roi-bd-result-label {
  display: inline-flex; align-items: center; min-width: 0;
}
.roi-info-pop .roi-bd-legend li .roi-bd-l-val,
.roi-info-pop .roi-bd-result .roi-bd-result-val { white-space: nowrap; text-align: right; }
@media (max-width: 720px) {
  /* v12: auch mobil bleibt das Popover an der Eltern-Box ausgerichtet, untere Kante am i (bottom-Wert aus .roi-info-pop greift weiter) */
  .roi-info-pop {
    transform: translateY(6px);
  }
  .roi-info:hover .roi-info-pop,
  .roi-info:focus-within .roi-info-pop,
  .roi-info.is-open .roi-info-pop {
    transform: translateY(0);
  }
}

/* --- Live-Demo: Kunden-Case Block --- */
.case-box {
  background: var(--bg-card-strong);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 32px 30px;
  margin-top: 40px;
  max-width: 820px;
}
.case-box .case-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.case-box .case-tag { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--neon-600); border: 1px solid rgba(255,106,0,0.32); border-radius: 999px; padding: 3px 12px; }
.case-box .case-name { font-size: 18px; font-weight: 600; }
.case-box .case-quote { font-size: 16px; color: var(--text-300); line-height: 1.6; font-style: italic; margin-bottom: 20px; }
.case-metrics { display: flex; gap: 32px; flex-wrap: wrap; }
.case-metric .cm-value { font-size: clamp(24px, 3.5vw, 32px); font-weight: 700; color: var(--neon-600); text-shadow: 0 0 8px rgba(255,106,0,0.35); }
.case-metric .cm-label { font-size: 13px; color: var(--text-500); letter-spacing: 0.04em; }

/* --- Wirtschaftlichkeit: Kostenvergleich pro Stunde --- */
.roi-compare-wrap { margin-top: 40px; overflow-x: auto; }
.roi-compare { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 15px; }
.roi-compare th, .roi-compare td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.roi-compare thead th { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-500); font-weight: 600; }
.roi-compare td.feature-name { color: var(--text-100); font-weight: 500; }
.roi-compare td { color: var(--text-300); }
/* MagmaCube-Spalte: KEINE gruene Flaechen-Hervorhebung — Grundton wie der Rest */
.roi-compare thead th.col-mc {
  color: var(--text-500);
}
.roi-compare td.col-mc {
  color: var(--text-300);
}
.roi-compare tr.roi-compare-highlight td { font-weight: 700; font-size: 16px; }
.roi-compare tr.roi-compare-highlight td.feature-name { color: var(--text-100); }
.roi-compare tr.roi-compare-highlight td.col-mc { color: var(--text-100); }

.roi-goal { margin-top: 34px; font-size: clamp(18px, 2.4vw, 22px); line-height: 1.5; color: var(--text-100); font-weight: 500; max-width: 760px; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .roi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pain-grid { grid-template-columns: 1fr; }
  .case-metrics { gap: 22px; }
  .roi-compare { font-size: 13px; }
  .roi-compare th, .roi-compare td { padding: 10px 12px; }
}

/* ============================================================
   SHOP (v23) — Produktkarten, Add-ons, Warenkorb, Checkout
   ============================================================ */
.shop-main { padding-top: 78px; }
.shop-hero { text-align: center; padding-top: 6px; padding-bottom: 0; }
.shop-hero .section-title { text-align: center; max-width: 880px; margin-left: auto; margin-right: auto; }
.shop-hero-title { line-height: 1.06; margin-bottom: 6px; }
.shop-prelaunch {
  display: inline-block;
  margin: 14px auto 0;
  padding: 7px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  color: var(--neon-600);
  background: rgba(255,106,0,0.06);
  letter-spacing: 0.02em;
}
.shop-section { padding-top: 56px; }
.shop-section > .container > .eyebrow { margin-bottom: 6px; }
.shop-section-sub { color: var(--text-300); max-width: 720px; margin: 0 0 28px; line-height: 1.6; }

/* Hardware-Karten — 2x2-Raster, groessere Karten */
.hw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.hw-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.hw-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 0 24px rgba(255,106,0,0.18);
}
/* Produktbild + Badges */
.hw-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 45%, #0c2a31 0%, #061a1f 75%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hw-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hw-disclaimer {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 5px 12px;
  font-size: 11px; line-height: 1.35; text-align: center;
  color: var(--text-300);
  background: linear-gradient(0deg, rgba(3,18,22,0.86) 0%, rgba(3,18,22,0) 100%);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.hw-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 4px 11px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: #fff; background: rgba(196,60,0,0.92);
  border: 1px solid rgba(255,106,0,0.6);
}
.hw-size {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px;
  border-radius: 11px;
  border: 1px solid var(--border-strong);
  background: rgba(3,18,22,0.66);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  font-size: 17px; font-weight: 600;
  color: var(--neon-600);
  letter-spacing: -0.01em;
}
.hw-body { display: flex; flex-direction: column; flex: 1; padding: 28px 28px 28px; }
.hw-card h3 { font-size: 26px; margin: 0 0 5px; }
.hw-target { font-size: 15px; color: var(--gold-400); margin: 0 0 18px; }
.hw-specs { list-style: none; padding: 0; margin: 0 0 22px; }
.hw-specs li {
  font-size: 15px; color: var(--text-300); line-height: 1.55;
  padding-left: 20px; position: relative; margin-bottom: 8px;
}
.hw-specs li::before { content: "›"; position: absolute; left: 0; color: var(--neon-600); }
.hw-price { margin-top: auto; }
.hw-price .price-buy { font-size: 30px; font-weight: 400; color: #fff; letter-spacing: -0.01em; }
.hw-price .price-rate { font-size: 13.5px; color: var(--text-500); margin-top: 2px; }
.hw-price .price-rate .rate-note { color: var(--text-500); opacity: 0.8; }
.hw-delivery {
  margin: 12px 0 0; font-size: 12.5px; line-height: 1.45;
  color: var(--neon-600); opacity: 0.92;
}
.hw-card .btn-add { margin-top: 14px; width: 100%; }

/* Abo / Add-on Karten */
.abo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.abo-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}
.abo-card h3 { font-size: 18px; margin: 0 0 4px; }
.abo-card .abo-price { font-size: 22px; font-weight: 400; color: #fff; margin: 8px 0 4px; }
.abo-card .abo-price small { font-size: 14px; color: var(--text-500); }
.abo-card .abo-desc { font-size: 13.5px; color: var(--text-300); line-height: 1.5; margin: 0 0 16px; }
.abo-card .btn-add { margin-top: auto; width: 100%; }

/* Bibliotheken — Mehrfachauswahl */
.lib-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
  align-items: stretch;
}
.lib-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  font-size: 14px; color: var(--text-300);
  min-width: 0;
}
.lib-item:hover { border-color: var(--border-strong); }
.lib-item.is-active { border-color: var(--neon-600); background: rgba(255,106,0,0.07); color: #fff; }
.lib-item input { accent-color: var(--neon-600); width: 16px; height: 16px; flex: none; }
.lib-item .lib-name { flex: 1 1 auto; min-width: 0; overflow-wrap: anywhere; line-height: 1.3; }
.lib-item .lib-price { flex: none; margin-left: auto; font-size: 13px; color: var(--gold-400); white-space: nowrap; }
.lib-item .lib-price small { color: var(--text-500); font-size: 11px; font-weight: 400; }

/* Add-Button */
.btn-add {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 11px;
  border: 1px solid var(--neon-600);
  background: transparent;
  color: var(--neon-600);
  font-size: 14.5px; font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  font-family: inherit;
}
.btn-add:hover { background: var(--neon-600); color: #03171b; }
.btn-add.is-added { background: rgba(255,106,0,0.12); }

/* Warenkorb als Icon (FAB) — fixiert oben rechts, dicht unter dem Menue.
   Klick oeffnet die Box, Scrollen klappt sie wieder zum Icon zu. */
.cart-fab {
  position: fixed;
  top: 84px;
  right: max(24px, calc((100vw - var(--max-w)) / 2 + 24px));
  z-index: 95;
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-card-strong);
  border: 1px solid var(--neon-600);
  color: var(--neon-600);
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(3,15,18,0.5);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.cart-fab:hover { transform: translateY(-1px); background: var(--neon-600); color: #03171b; }
.cart-fab.is-open { background: var(--neon-600); color: #03171b; }
.cart-fab-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 19px; height: 19px; padding: 0 5px; box-sizing: border-box;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; line-height: 1;
  background: var(--neon-600); color: #03171b;
  border: 2px solid var(--bg-deep); border-radius: 999px;
}
.cart-fab.is-open .cart-fab-count { border-color: var(--neon-600); }

.cart-panel {
  position: fixed;
  top: 146px;
  right: max(24px, calc((100vw - var(--max-w)) / 2 + 24px));
  z-index: 94;
  width: 300px;
  max-height: calc(100vh - 166px);
  overflow-y: auto;
  background: var(--bg-card-strong);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 44px rgba(3,15,18,0.55);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.cart-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.cart-panel h3 { font-size: 15px; margin: 0 0 10px; display: flex; align-items: center; gap: 8px; }
.cart-close {
  margin-left: auto; background: none; border: none; cursor: pointer;
  color: var(--text-500); font-size: 22px; line-height: 1; padding: 0 2px;
  font-family: inherit;
}
.cart-close:hover { color: var(--neon-600); }
.cart-count {
  font-size: 12px; background: var(--neon-600); color: #03171b;
  border-radius: 999px; padding: 1px 9px; font-weight: 600;
}
.cart-empty { color: var(--text-500); font-size: 14px; padding: 14px 0; }
.cart-items { list-style: none; padding: 0; margin: 0 0 11px; }
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-line .ci-title { font-size: 14px; color: var(--text-300); }
.cart-line .ci-price { font-size: 14px; color: #fff; text-align: right; white-space: nowrap; }
.cart-qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 2px; }
.cart-qty button {
  width: 24px; height: 24px; border-radius: 7px;
  border: 1px solid var(--border-strong); background: transparent;
  color: var(--neon-600); cursor: pointer; font-size: 15px; line-height: 1;
  font-family: inherit;
}
.cart-qty button:hover { background: var(--neon-600); color: #03171b; }
.cart-qty .ci-qty { font-size: 14px; min-width: 18px; text-align: center; color: var(--text-300); }
.ci-remove {
  background: none; border: none; color: var(--text-500); cursor: pointer;
  font-size: 12px; padding: 0; margin-left: 8px; text-decoration: underline;
}
.ci-remove:hover { color: var(--neon-600); }
.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin: 11px 0 4px; font-size: 16px;
}
.cart-total strong { font-size: 22px; font-weight: 500; color: #fff; }
.cart-note-small { font-size: 12px; color: var(--text-500); line-height: 1.5; margin: 8px 0 12px; }
/* Warenkorb-Button bewusst filigran (nicht so prominent wie der Haupt-CTA) */
.cart-panel .btn-primary {
  width: 100%; justify-content: center;
  padding: 9px 16px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: none;
  border-radius: 10px;
}
.cart-panel .btn-primary:hover {
  transform: none;
  filter: brightness(1.06);
  box-shadow: 0 4px 14px rgba(255,106,0,0.28);
}
.cart-panel .btn-primary svg { width: 14px; height: 14px; }

/* Shop-Layout — Hauptspalte voll, Warenkorb-Icon schwebt (out of flow). */
.shop-layout {
  display: block;
  padding-right: 0;
}
.shop-col-main { min-width: 0; }
.shop-col-cart { display: contents; }

/* Checkout (Modal) */
.checkout-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(3,15,18,0.82);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: none; align-items: flex-start; justify-content: center;
  overflow-y: auto; padding: 40px 16px;
}
.checkout-overlay.is-open { display: flex; }
.checkout-box {
  width: 100%; max-width: 560px;
  background: var(--bg-deep);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 30px;
}
.checkout-box h2 { font-size: 24px; margin: 0 0 6px; }
.checkout-box .co-sub { color: var(--text-300); font-size: 14px; margin: 0 0 20px; line-height: 1.5; }
.checkout-summary {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 20px;
  font-size: 13.5px; color: var(--text-300); line-height: 1.7;
}
.checkout-summary .co-sum-total { color: #fff; font-weight: 500; }
.co-field { margin-bottom: 14px; }
.co-field label { display: block; font-size: 13px; color: var(--text-500); margin-bottom: 5px; }
.co-field input, .co-field textarea {
  width: 100%; box-sizing: border-box;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px;
  color: #fff; font-size: 16px; font-family: inherit;
}
.co-field input:focus, .co-field textarea:focus { outline: none; border-color: var(--neon-600); }
.co-field textarea { min-height: 70px; resize: vertical; }
.co-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkout-actions { display: flex; gap: 12px; margin-top: 8px; }
.checkout-actions .btn-primary { flex: 1; justify-content: center; }
.btn-ghost {
  padding: 12px 18px; border-radius: 11px;
  border: 1px solid var(--border-strong); background: transparent;
  color: var(--text-300); cursor: pointer; font-size: 14.5px; font-family: inherit;
}
.btn-ghost:hover { color: #fff; border-color: var(--neon-600); }
.co-msg { font-size: 14px; margin-top: 12px; min-height: 20px; }
.co-msg.is-ok { color: var(--gold-400); }
.co-msg.is-err { color: #ff6a6a; }
.checkout-confirm { text-align: center; padding: 20px 0; }
.checkout-confirm .co-check {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 50%; border: 2px solid var(--neon-600);
  display: flex; align-items: center; justify-content: center;
  color: var(--neon-600); font-size: 28px;
}
.checkout-confirm h2 { margin-bottom: 8px; }
.checkout-confirm .co-orderno { color: var(--gold-400); font-weight: 500; }

/* Hardware-Karten auf Mobile einspaltig */
@media (max-width: 760px) {
  .hw-grid { grid-template-columns: 1fr; }
}

/* Schmale Screens: fixierter Korb faellt in normalen (kompakten) Fluss zurueck,
   damit er keinen Content ueberdeckt. */
@media (max-width: 980px) {
  .shop-layout { display: block; padding-right: 0; }
  .shop-col-cart { display: block; }
  .cart-fab { top: 76px; right: 16px; }
  .cart-panel {
    top: 138px;
    right: 16px; left: 16px;
    width: auto;
    max-height: calc(100vh - 158px);
  }
  .co-row { grid-template-columns: 1fr; }
}

/* v32 — Online-Shop Beispiel: selbst generierte Produktbilder (Nano Banana, rechtlich unkritisch) */
.ms-prod .ms-img.has-img { height: 40px; background-size: cover; background-position: center; background-repeat: no-repeat; }
.ms-img.img-gloves   { background-image: url("shop-prod-gloves.png"); }
.ms-img.img-boots    { background-image: url("shop-prod-boots.png"); }
.ms-img.img-toolcase { background-image: url("shop-prod-toolcase.png"); }
.clb-pcard .p-img.has-img { background-size: cover; background-position: center; background-repeat: no-repeat; }
.clb-pcard .p-img.img-gloves   { background-image: url("shop-prod-gloves.png"); }
.clb-pcard .p-img.img-boots    { background-image: url("shop-prod-boots.png"); }
.clb-pcard .p-img.img-toolcase { background-image: url("shop-prod-toolcase.png"); }
