/*
 * JJO-Labs Business Suite – Landing styles
 * Single token block; responsive overrides only adjust --gutter in @media.
 */
:root {
  /* Core palette — offene Fläche, Blau + Mint als Akzente */
  --bg: #f4f9fc;
  --bg-2: #e8f0f6;
  --surface: #ffffff;
  --surface-solid: #ffffff;
  --surface-soft: #f4f4f5;
  --text: #0f172a;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --line: rgba(15, 23, 42, 0.09);
  --line-strong: rgba(15, 23, 42, 0.14);
  --mint: #00ffb3;
  --mint-2: #00e6a1;
  --mint-3: #2563eb;
  /* helle Flächen: Blau-Off-White (an Kontakt-Section angelehnt) */
  --surface-mint-soft: color-mix(in srgb, #2563eb 4%, #ffffff);
  --surface-mint-soft-2: color-mix(in srgb, #2563eb 3%, #f8fafc);
  --border-mint-soft: color-mix(in srgb, var(--mint-2) 12%, rgba(37, 99, 235, 0.18));
  --accent-mint: var(--mint-2);
  --accent-mint-strong: #0a8f6e;
  --tuerkis-schrift: #00ffb3;
  --tuerkis-schrift-hell: #00ffb3;
  --tuerkis-schrift-aquamarin: #7ffdd4;
  --dark-green: #1e3a8a;
  --dark: #0f172a;
  --warning: #f59e0b;
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius-md: 26px;
  --radius-lg: 36px;
  --shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 0 0 1px rgba(37, 99, 235, 0.06), 0 20px 48px rgba(15, 23, 42, 0.08);
  --container: 1420px;
  --gutter: clamp(16px, 3.6vw, 40px);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Design-system scale (--ds-*) */
  --ds-color-bg: #f5f5f4;
  --ds-color-surface: #ffffff;
  --ds-color-surface-strong: #ffffff;
  --ds-color-surface-muted: #f4f4f5;
  --ds-color-primary: #2563eb;
  --ds-color-primary-strong: #1d4ed8;
  --ds-color-primary-deep: #1e3a8a;
  --ds-color-accent: #00ffb3;
  --ds-color-ink: #0f172a;
  --ds-color-ink-soft: #475569;
  --ds-color-muted: #64748b;
  --ds-color-border: rgba(15, 23, 42, 0.08);
  --ds-color-border-strong: rgba(15, 23, 42, 0.12);
  --ds-radius-control: 16px;
  --ds-radius-card: 26px;
  --ds-radius-panel: 34px;
  --ds-shadow-xs: 0 10px 26px rgba(7, 19, 29, 0.055);
  --ds-shadow-sm: 0 16px 42px rgba(7, 19, 29, 0.07);
  --ds-shadow-md: 0 22px 64px rgba(7, 19, 29, 0.09);
  --ds-shadow-primary: 0 18px 44px rgba(37, 99, 235, 0.28);
  --ds-glow-primary: 0 0 0 1px rgba(110, 240, 195, 0.2), 0 0 54px rgba(37, 99, 235, 0.12);
  --ds-font-weight-title: 920;
  --ds-font-weight-label: 840;
  --ds-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(88px, 12vw, 120px);
  background: var(--bg);
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html {
    overflow-x: clip;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ds-color-ink);
  font-feature-settings: "ss01" 1, "cv05" 1;
  text-rendering: geometricPrecision;
  background: var(--bg);
  overflow-x: hidden;
  padding-inline: env(safe-area-inset-left, 0) env(safe-area-inset-right, 0);
}

.skip-link {
  position: fixed;
  top: max(12px, env(safe-area-inset-top, 0px));
  left: max(12px, env(safe-area-inset-left, 0px));
  z-index: 200;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  color: #0f172a;
  background: #fff;
  border: 2px solid var(--mint-3);
  box-shadow: var(--shadow-soft);
  transform: translateY(-160%);
  transition: transform 0.2s var(--ds-ease);
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@supports (overflow: clip) {
  body {
    overflow-x: clip;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 70%);
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page {
  width: min(var(--container), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  max-width: 100%;
  padding-top: 96px;
}

.page:focus {
  outline: none;
}

.page:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2.5vw, 24px);
  width: min(var(--container), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  min-height: 72px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: max-content;
  max-width: min(100%, 300px);
  min-height: 40px;
  padding: 2px 0;
  border-radius: 0;
  color: var(--text);
  background: transparent;
  box-shadow: none;
  letter-spacing: -0.02em;
  line-height: 1;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo-wrap {
  display: block;
  line-height: 0;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 30px;
  object-fit: contain;
  object-position: left center;
  max-width: min(100%, 260px);
  opacity: 1 !important;
}

.brand:focus-visible {
  outline: 2px solid var(--mint-2);
  outline-offset: 4px;
  border-radius: 14px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 13px;
  background:
    radial-gradient(circle at 28% 18%, rgba(110, 240, 195, 0.22), transparent 34%),
    linear-gradient(145deg, #0f172a, #1e3a8a);
  box-shadow:
    0 10px 22px rgba(7, 19, 29, 0.16),
    0 0 22px rgba(110, 240, 195, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(110, 240, 195, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(110, 240, 195, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(110, 240, 195, 0.10) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.72;
}

.brand-signal {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(183, 255, 241, 0.94);
  border-radius: 5px;
  box-shadow:
    0 0 12px rgba(110, 240, 195, 0.36),
    inset 0 0 12px rgba(110, 240, 195, 0.14);
}

.brand-signal::before,
.brand-signal::after {
  content: "";
  position: absolute;
  background: #b7fff1;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(110, 240, 195, 0.55);
}

.brand-signal::before {
  left: 50%;
  top: -6px;
  width: 2px;
  height: 5px;
  transform: translateX(-50%);
}

.brand-signal::after {
  right: -6px;
  top: 50%;
  width: 5px;
  height: 2px;
  transform: translateY(-50%);
}

.brand-lockup {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0;
  min-width: 0;
}

.brand-main {
  position: relative;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 850;
  display: inline-block;
  padding-bottom: 0;
  color: var(--text);
  letter-spacing: -0.035em;
}

.brand-main::after {
  display: none;
}

.brand-sub {
  margin-left: 4px;
  font-size: clamp(14px, 1.18vw, 16px);
  font-weight: 720;
  letter-spacing: -0.025em;
  color: var(--mint-3);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
  color: #162833;
  font-size: 15px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--mint-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.nav-links a:hover {
  color: var(--mint-3);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 15px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.36);
}

.btn-secondary {
  color: var(--mint-3);
  background: rgba(255,255,255,.68);
  border-color: var(--line-strong);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(37, 99, 235, .42);
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  color: var(--dark);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

section {
  scroll-margin-top: clamp(96px, 14vw, 132px);
}

#plattform {
  scroll-margin-top: clamp(126px, 15vw, 168px);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(32px, 5vw, 48px);
  padding: clamp(40px, 6vw, 96px) 0 clamp(28px, 4vw, 44px);
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: start;
  }

  .hero-copy {
    padding-top: clamp(8px, 1.2vw, 28px);
  }
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  padding: 10px 16px 10px 22px;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, .30);
  color: var(--mint-3);
  background: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.eyebrow-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}

.eyebrow-brand .inline-wordmark {
  margin: 0;
  vertical-align: baseline;
}

.eyebrow-brand .inline-wordmark img {
  height: 14px;
}

.eyebrow-brand-sub {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #475569;
}

.eyebrow-text {
  display: inline;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  width: 4px;
  height: calc(100% - 12px);
  transform: translateY(-50%);
  border-radius: 3px;
  background: #2563eb;
  opacity: 0.9;
}

.hero h1 {
  margin: 0;
  max-width: min(42rem, 100%);
  font-size: clamp(2.5rem, 5.2vw + 1.1rem, 5.75rem);
  line-height: 1.1;
  letter-spacing: -0.042em;
  font-weight: 950;
  text-wrap: balance;
}

.hero-heading-row {
  position: relative;
  display: block;
  align-items: center;
  padding-right: clamp(180px, 22vw, 340px);
}

.hero-cube-animation {
  --cube-size: clamp(94px, 10vw, 128px);
  position: relative;
  width: calc(var(--cube-size) * 1.55);
  height: calc(var(--cube-size) * 1.42);
  flex: 0 0 auto;
  justify-self: end;
  margin-right: clamp(-10px, -1.6vw, -22px);
  border-radius: 14px;
  border: 2px solid rgba(37, 99, 235, 0.78);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.36), rgba(248, 250, 252, 0.18));
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  padding: clamp(8px, 1vw, 12px);
  perspective: 720px;
  transform-style: preserve-3d;
}

.hero-cube-animation .cube-shape {
  position: absolute;
  transform-style: preserve-3d;
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.24);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(224, 236, 250, 0.9));
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset -10px -14px 22px rgba(37, 99, 235, 0.08);
}

.hero-cube-animation .cube-shape::before,
.hero-cube-animation .cube-shape::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-cube-animation .cube-shape::before {
  inset: 8% 8% auto 8%;
  height: 26%;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(219, 234, 254, 0.75));
  transform: rotateX(66deg) translateZ(16px);
  transform-origin: top center;
}

.hero-cube-animation .cube-shape::after {
  top: 10%;
  right: -4%;
  width: 20%;
  height: 78%;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: linear-gradient(180deg, rgba(209, 224, 245, 0.76), rgba(186, 207, 236, 0.58));
  transform: rotateY(62deg) translateZ(10px);
  transform-origin: right center;
}

.hero-cube-animation .cube-main {
  width: var(--cube-size);
  height: var(--cube-size);
  left: 5%;
  bottom: 7%;
  z-index: 2;
  transform: rotateX(8deg) rotateY(-18deg);
  animation: cubeDockA 4.8s cubic-bezier(0.22, 0.68, 0.2, 1) infinite;
}

.hero-cube-animation .cube-side {
  width: calc(var(--cube-size) * 0.78);
  height: calc(var(--cube-size) * 0.78);
  right: 7%;
  bottom: calc(var(--cube-size) * 0.2);
  z-index: 3;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9));
  transform: rotateX(10deg) rotateY(16deg);
  animation: cubeDockB 4.8s cubic-bezier(0.22, 0.68, 0.2, 1) infinite;
}

.hero-cube-animation .cube-top {
  width: calc(var(--cube-size) * 0.64);
  height: calc(var(--cube-size) * 0.64);
  left: calc(var(--cube-size) * 0.35);
  top: 2%;
  z-index: 4;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(219, 234, 254, 0.9));
  transform: rotateX(12deg) rotateY(-8deg);
  animation: cubeDockC 4.8s cubic-bezier(0.22, 0.68, 0.2, 1) infinite;
}

.hero-cube-animation .cube-main {
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 36%,
    86% 36%,
    86% 60%,
    100% 60%,
    100% 100%,
    0% 100%
  );
}

.hero-cube-animation .cube-side {
  clip-path: polygon(
    0% 0%,
    74% 0%,
    74% 18%,
    100% 18%,
    100% 82%,
    74% 82%,
    74% 100%,
    0% 100%
  );
}

.hero-cube-animation .cube-top {
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 100%,
    62% 100%,
    62% 82%,
    38% 82%,
    38% 100%,
    0% 100%
  );
}

.hero-cube-animation .cube-link {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.35), transparent);
  opacity: 0.6;
  transform-origin: left center;
  animation: cubeLinkPulse 4.8s ease-in-out infinite;
}

.hero-cube-animation .cube-link-a {
  width: calc(var(--cube-size) * 0.62);
  left: calc(var(--cube-size) * 0.45);
  top: calc(var(--cube-size) * 0.42);
  transform: rotate(-24deg);
}

.hero-cube-animation .cube-link-b {
  width: calc(var(--cube-size) * 0.54);
  left: calc(var(--cube-size) * 0.3);
  top: calc(var(--cube-size) * 0.78);
  transform: rotate(18deg);
  animation-delay: -0.45s;
}

.hero-cube-animation .cube-link-c {
  width: calc(var(--cube-size) * 0.48);
  left: calc(var(--cube-size) * 0.68);
  top: calc(var(--cube-size) * 0.56);
  transform: rotate(76deg);
  animation-delay: -0.9s;
}

/* Hero-Titel: nur neutrale Töne (kein Blau/Türkis/Grün-Verlauf) */
.gradient-text {
  color: var(--text);
  background: linear-gradient(
    112deg,
    #070705 0%,
    #161412 26%,
    #252220 52%,
    #36302c 78%,
    #453f3a 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-tuerkis {
  color: var(--tuerkis-schrift);
}

.lead {
  max-width: 42rem;
  margin: clamp(20px, 3vw, 28px) 0 0;
  color: #52616a;
  font-size: clamp(1.05rem, 2.1vw + 0.65rem, 1.375rem);
  line-height: 1.68;
  letter-spacing: -0.012em;
}

.hero-variant-switch {
  display: inline-flex;
  gap: 6px;
  margin: 0 0 12px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.hero-variant-btn {
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5b6670;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.hero-variant-btn.is-active {
  color: #ffffff;
  background: #2563eb;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-pricing-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: 20px 0 0;
  max-width: 42rem;
  font-size: 14px;
  line-height: 1.45;
  color: #52616a;
}

.hero-pricing-teaser__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ds-color-primary-strong);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.hero-pricing-teaser__link {
  font-weight: 800;
}

.hero-pricing-teaser__fine {
  flex-basis: 100%;
  width: 100%;
  margin-top: 2px;
  font-size: 13px;
  color: #64748b;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  max-width: 920px;
}

.hero-proof-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.hero-proof-item strong {
  display: block;
  color: #0f172a;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.hero-proof-item span {
  display: block;
  margin-top: 6px;
  color: #5b6670;
  font-size: 12px;
  line-height: 1.45;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  max-width: 720px;
}

@media (min-width: 720px) {
  .trust-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #51636b;
  font-size: 13px;
  font-weight: 800;
}

.social-proof-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: #5a6872;
  font-size: 12px;
}

.social-proof-mini p {
  margin: 0;
}

.social-proof-mini strong {
  color: #0f172a;
}

.social-proof-stars {
  color: #1d4ed8;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.check,
.mini-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--mint-3);
  background: #fff;
  border: 1px solid rgba(37, 99, 235, .22);
}

.hero-visual {
  position: relative;
  min-height: 0;
  max-width: 100%;
}

.hero-dashboard-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 0;
  background: #ffffff;
  box-shadow: var(--shadow-glow);
  line-height: 0;
}

.hero-dashboard-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.hero-device {
  position: relative;
  z-index: 3;
  margin-top: 4px;
  padding: 0;
}

.hero-device.hero-device-duo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  padding: 0;
  max-width: 100%;
}

/* —— Segmented module picker —— */
.hero-module-segment {
  display: inline-flex;
  align-self: center;
  max-width: 100%;
  padding: 4px;
  gap: 2px;
  margin: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 88%, var(--bg-2));
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.hero-module-segment .hero-device-thumb {
  min-height: 36px;
  padding: 7px 16px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-module-segment .hero-device-thumb span {
  display: block;
  line-height: 1.2;
}

.hero-module-segment .hero-device-thumb.is-active {
  background: var(--surface);
  color: var(--mint-3);
  border: none;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(37, 99, 235, 0.1);
}

.hero-module-segment .hero-device-thumb:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.45);
  outline-offset: 2px;
}

.hero-module-caption {
  margin: 0;
  max-width: min(28rem, 100%);
  text-align: center;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--muted);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.hero-module-caption.is-fading {
  opacity: 0;
  transform: translateY(4px);
}

/* —— Light surface frame —— */
.hero-device-frame {
  position: relative;
  width: 100%;
  padding: clamp(10px, 1.8vw, 16px);
  border-radius: clamp(18px, 2.4vw, 26px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.05), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow-glow);
}

.hero-device-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  padding-right: clamp(52px, 10vw, 88px);
}

.hero-device-duo .hero-laptop-shell {
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(100%, 560px);
  margin: 0;
}

.hero-laptop-shell--light {
  padding: 0;
  border: none;
  border-radius: clamp(14px, 2vw, 18px);
  background: transparent;
  box-shadow: none;
}

.hero-screen-crop {
  overflow: hidden;
  border-radius: clamp(12px, 1.6vw, 16px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  aspect-ratio: 16 / 10;
  line-height: 0;
}

.hero-device-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.hero-phone-shell--light {
  position: absolute;
  right: clamp(-4px, -0.5vw, 4px);
  bottom: clamp(8px, 2vw, 18px);
  flex: 0 0 auto;
  width: clamp(88px, 14vw, 118px);
  margin: 0;
  padding: 7px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: var(--surface);
  box-shadow:
    0 16px 36px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  z-index: 2;
}

.hero-phone-shell--light .hero-device-notch {
  width: 42px;
  height: 5px;
  margin: 0 auto 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.1);
}

.hero-phone-img {
  display: block;
  width: 100%;
  aspect-ratio: 390 / 844;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #f8fafc;
}

@media (max-width: 899px) {
  .hero-device-stage {
    padding-right: 0;
  }

  .hero-phone-shell--light {
    display: none;
  }

  .hero-module-segment {
    width: 100%;
    justify-content: stretch;
  }

  .hero-module-segment .hero-device-thumb {
    flex: 1 1 0;
    padding-inline: 10px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .hero-device-stage {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hero-device-duo .hero-laptop-shell {
    max-width: 100%;
    width: 100%;
  }

  .hero-screen-crop {
    aspect-ratio: 4 / 3;
  }

  .hero-device-img {
    object-position: top center;
  }
}

.coverflow-nav {
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1d4ed8;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 6;
}

.coverflow-nav-prev {
  left: 2px;
}

.coverflow-nav-next {
  right: 2px;
}

.hero-device-thumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.hero-device-thumb {
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #51616b;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.hero-device-thumb.is-active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.hero-device-clean {
  margin-top: 8px;
  padding: 0;
}

.clean-product-shot {
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.12);
}

.clean-product-shot .hero-device-img {
  border: 0;
  border-radius: 18px;
}

.hero-module-flow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: max-content;
  max-width: 100%;
  margin: 14px auto 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.flow-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: #f8fbff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.flow-separator {
  color: rgba(37, 99, 235, 0.55);
  font-weight: 800;
  font-size: 13px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: .55;
  pointer-events: none;
}

.orb.one {
  width: 320px;
  height: 320px;
  right: -80px;
  top: 0;
  background: rgba(37, 99, 235, 0.09);
}

.orb.two {
  width: 260px;
  height: 260px;
  left: 4%;
  bottom: 4%;
  background: rgba(37, 99, 235, .16);
}

.section-card {
  margin-top: 24px;
  padding: clamp(22px, 3.8vw, 52px) clamp(20px, 3.2vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  box-shadow: var(--shadow-card);
  isolation: isolate;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  max-width: 100%;
}

.content-band {
  width: 100%;
  margin-top: clamp(28px, 4vw, 48px);
  padding: clamp(36px, 5vw, 64px) 0;
  border-top: 1px solid var(--line);
}

.content-band.section-card {
  margin-top: clamp(28px, 4vw, 48px);
  padding: clamp(32px, 4.5vw, 56px) clamp(20px, 3.2vw, 48px);
}

.band-inner {
  width: 100%;
  margin: 0;
}

.problem-band {
  border-top: 0;
  margin-top: clamp(20px, 3vw, 36px);
  padding: 0;
}

.problem-band__inner {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
}

.problem-band__head .section-text {
  margin-top: clamp(14px, 2vw, 18px);
}

.problem-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 18px);
  align-items: stretch;
}

@media (min-width: 900px) {
  .problem-pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.section-head {
  margin: 0;
}

.section-head--center {
  text-align: center;
  max-width: min(42rem, 100%);
  margin-inline: auto;
}

.section-head--center .section-text {
  margin-left: auto;
  margin-right: auto;
}

.section-card--plain {
  /* Gleiche Hülle wie .section-card – „plain“ nur noch semantisch (Inhalt mit Unterkarten) */
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--mint-3);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.85rem, 3.2vw + 1rem, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 950;
  text-wrap: balance;
}

.section-title.small {
  font-size: clamp(1.65rem, 2.6vw + 0.85rem, 2.65rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.section-text {
  margin: clamp(14px, 2vw, 18px) 0 0;
  color: #586872;
  font-size: clamp(0.94rem, 1.2vw + 0.75rem, 1.05rem);
  line-height: 1.68;
  letter-spacing: -0.008em;
  max-width: min(65ch, 100%);
}

.inline-wordmark {
  display: inline-flex;
  vertical-align: -0.14em;
  margin: 0 0.02em 0 0;
}

.inline-wordmark img {
  display: block;
  width: auto;
  height: 1em;
}

.section-title .inline-wordmark {
  vertical-align: -0.22em;
}

.section-title .inline-wordmark img {
  height: 0.72em;
}

.inline-wordmark-mono img {
  filter: grayscale(1) saturate(0) brightness(0.2);
}

.inline-brand-text {
  display: inline;
  margin-left: 0.18em;
  color: var(--mint);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.centered .section-text {
  margin-left: auto;
  margin-right: auto;
  max-width: min(52rem, 100%);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  color: var(--mint-3);
  font-weight: 950;
}

.feature-card,
.bottleneck-card,
.module-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-solid);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.feature-card {
  padding: clamp(22px, 3vw, 28px);
}

.problem-pillars .feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.problem-pillars .feature-card .icon-box {
  margin-bottom: 20px;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border-radius: 16px;
  color: var(--mint-3);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-card h3,
.bottleneck-card h3,
.module-card h3,
.price-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.05em;
  font-weight: 950;
}

.feature-card p,
.bottleneck-card p,
.module-card p,
.price-card p {
  margin: 14px 0 0;
  color: #5c6971;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.018em;
}

.bottleneck-band__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 36px);
  width: 100%;
  margin: 0;
}

.bottleneck-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.5vw, 16px);
}

@media (min-width: 640px) {
  .bottleneck-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .bottleneck-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bottleneck-card,
#modules-grid .module-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 22px 20px 68px;
  text-align: left;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bottleneck-card:hover,
#modules-grid .module-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.bottleneck-card .icon-box,
#modules-grid .module-card .icon-box {
  width: 52px;
  height: 52px;
  margin: 0 0 16px;
  border-radius: 16px;
}

.bottleneck-card h3,
#modules-grid .module-card h3 {
  font-size: 16px;
  letter-spacing: -0.03em;
}

.bottleneck-card p,
#modules-grid .module-card p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: #5c6971;
}

.module-tag {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  color: var(--mint-3);
  font-size: 12px;
  font-weight: 900;
  text-align: left;
}

.module-tag strong {
  display: block;
  color: var(--mint-3);
  font-size: 18px;
  letter-spacing: -.04em;
}

#module.module-section {
  margin-top: clamp(20px, 3vw, 28px);
}

.module-section {
  display: block;
}

.module-layout {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "platform"
    "modules";
  gap: clamp(24px, 3.2vw, 36px);
  align-items: stretch;
}

.module-left {
  grid-area: modules;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 28px);
  min-width: 0;
}

.module-layout > * {
  min-width: 0;
}

.module-section .section-card,
.module-section .platform-card {
  margin-top: 0;
}

.module-solution-card {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  container-type: inline-size;
  container-name: modulelist;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 14px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

/* Intro: linksbündig wie Plattform-Karte, Tabs sichtbar zentriert */
.module-block-intro {
  text-align: left;
  max-width: none;
  margin: 0;
}

.module-intro-brand {
  margin: 0 0 10px;
  line-height: 0;
}

.module-intro-brand__logo-wrap {
  display: block;
  width: min(168px, 52vw);
}

.module-intro-brand__logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.module-intro-split {
  display: block;
  margin-bottom: 0;
}

.platform-single-card--inline {
  margin-top: 0;
  align-self: stretch;
  border-radius: 16px;
  background: var(--surface-soft);
}

.module-block-intro .section-kicker,
.module-block-intro .section-title {
  text-align: left;
}

.module-block-intro .section-text {
  margin-left: 0;
  margin-right: 0;
  max-width: min(60ch, 100%);
}

.accent-suite {
  color: var(--mint);
}

.section-title .accent-suite,
.section-text .accent-suite,
.site-footer__brand .accent-suite {
  color: var(--mint);
  font-weight: inherit;
}

.module-core-info {
  margin: 4px 0 10px;
  padding: 10px 12px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 12px;
  background: #f8fbff;
  color: #475569;
  font-size: 13px;
  line-height: 1.4;
}

.module-core-info strong {
  color: #1d4ed8;
}

.module-block-intro .tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 22px 0 0;
}

.quick-start {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: #61707a;
  font-size: 12px;
  font-weight: 800;
}

.quick-start strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.24);
  color: #1d4ed8;
  background: #ffffff;
  font-size: 12px;
  letter-spacing: -0.01em;
}

.centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 26px auto 28px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  background: transparent;
  color: #506169;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tab-btn.is-active {
  color: #ffffff;
  background: #2563eb;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.28);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: clamp(18px, 2.4vw, 26px);
  margin-top: clamp(20px, 2.6vw, 28px);
  width: 100%;
}

/* Legacy module-card grid — nur außerhalb #modules-grid (falls noch verwendet) */
.module-card:not(#modules-grid .module-card) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  align-content: start;
  min-width: 0;
  min-height: 132px;
  padding: clamp(16px, 2vw, 20px);
  border-radius: 18px;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  text-align: left;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.22s ease, border-color 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
}

@container modulelist (max-width: 359px) {
  .modules-grid:not(#modules-grid) {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@container modulelist (min-width: 360px) and (max-width: 639px) {
  .modules-grid:not(#modules-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@container modulelist (min-width: 640px) {
  .modules-grid:not(#modules-grid) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 24px);
  }
}

.module-card.is-hidden {
  display: none;
}

.module-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

.module-card .icon-box {
  position: relative;
  overflow: hidden;
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 16px;
  color: #2563eb;
  background:
    radial-gradient(circle at 72% 24%, rgba(37, 99, 235, 0.08), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(245, 245, 244, 0.92));
  border: 1px solid rgba(37, 99, 235, 0.34);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.82) inset,
    inset 0 -12px 24px rgba(37, 99, 235, 0.08);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.module-card .icon-box::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.03));
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  pointer-events: none;
}

.module-card .icon-box::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.62);
  pointer-events: none;
  z-index: 2;
}

.module-card .icon-box svg {
  position: relative;
  z-index: 1;
  width: 27px;
  height: 27px;
  stroke-width: 2.35;
  filter: drop-shadow(0 6px 10px rgba(37, 99, 235, 0.22));
}

.module-card:hover .icon-box {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(37, 99, 235, 0.54);
  box-shadow:
    0 20px 42px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 0 28px rgba(37, 99, 235, 0.14),
    inset 0 -12px 24px rgba(37, 99, 235, 0.08);
}

.module-card h3 {
  color: #2563eb;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.module-card .category {
  display: block;
  margin-top: 4px;
  color: #67757b;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
}

.module-card-core {
  border-color: rgba(37, 99, 235, 0.28);
  background:
    radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.08), transparent 34%),
    #ffffff;
}

.module-core-note {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.module-card p:not(.module-card__subtitle),
.ideal {
  display: none;
}

.module-link {
  display: none;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(16px, 2vw, 22px);
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.benefit-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  padding: 16px;
  color: #426068;
  font-weight: 950;
  font-size: 13px;
  border-right: 1px solid rgba(37, 99, 235,.14);
}

.benefit-strip div:last-child {
  border-right: 0;
}

.platform-card {
  grid-area: platform;
  position: relative;
  padding: clamp(28px, 3.5vw, 44px) clamp(22px, 3.2vw, 40px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 16px 48px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  max-width: 100%;
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius-lg) - 12px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.platform-card > * {
  position: relative;
  z-index: 1;
}

.platform-card .section-title {
  letter-spacing: -0.05em;
}

.platform-card .section-text {
  margin-top: 14px;
}

.platform-toggle-wrap {
  margin-top: 18px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 22px;
  background: #f7f9fc;
  padding: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.platform-toggle-btn {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  background: #ffffff;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.platform-toggle-btn:hover {
  border-color: rgba(37, 99, 235, 0.34);
  background: #f8fbff;
}

.platform-single-card {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.platform-single-card.is-visible {
  animation: platformCardReveal 0.24s ease;
}

.platform-panel-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.24);
  background: #f3f7ff;
  display: grid;
  place-items: center;
  color: #2563eb;
  box-shadow: none;
}

.platform-panel-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.platform-single-card h3 {
  margin: 0;
  font-size: 16px;
  color: #2563eb;
}

.platform-single-card p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #5f6972;
}

@media (max-width: 620px) {
  .platform-single-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@keyframes platformCardReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.platform-map {
  position: relative;
  width: 100%;
  max-width: 690px;
  aspect-ratio: 520 / 340;
  margin: clamp(18px, 2.5vw, 24px) auto 0;
  min-height: 0;
  border-radius: 22px;
  color: rgba(37, 99, 235, 0.38);
  background:
    radial-gradient(circle at 50% 42%, rgba(37, 99, 235, 0.06), transparent 55%),
    linear-gradient(180deg, #f8fafc, #f1f5f9);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.platform-map__lines {
  color: inherit;
}

@media (min-width: 621px) {
  .module-layout .platform-map {
    min-height: clamp(250px, 25vw, 320px);
    margin-top: clamp(20px, 2.5vw, 30px);
  }
}

@media (min-width: 1181px) {
  .module-layout .platform-map {
    min-height: clamp(280px, 24vw, 360px);
  }
}

.core-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(142px, 12vw, 164px);
  height: clamp(142px, 12vw, 164px);
  display: grid;
  place-items: center;
  border-radius: 36px;
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(155deg, #3b82f6 0%, #2563eb 46%, #1e3a8a 100%);
  box-shadow:
    0 22px 56px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 0 0 10px rgba(37, 99, 235, 0.08);
  font-weight: 950;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.core-node small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  opacity: .86;
  letter-spacing: 0;
  line-height: 1.2;
}

.node {
  position: absolute;
  width: 126px;
  padding: 10px 10px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  color: #2563eb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.02em;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 8px;
}

.node svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
}

.node > span {
  display: block;
}

.node small {
  display: block;
  margin-top: 3px;
  color: #647078;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 700;
}

.node.pulse {
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.node.stride {
  right: 0;
  top: 22%;
}
.node.fleet {
  right: 1%;
  bottom: 8%;
}
.node.insight {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.node.talent {
  left: 0;
  bottom: 16%;
}
.node.anchor {
  left: 0;
  top: 24%;
}

.platform-map > svg {
  display: block;
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  opacity: 0.44;
  overflow: visible;
  box-sizing: border-box;
}

.steps-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.proof-section {
  display: grid;
  gap: 16px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.05);
}

.proof-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.proof-card p {
  margin: 8px 0 0;
  color: #5b6670;
  font-size: 14px;
  line-height: 1.5;
}

.proof-note {
  padding: 12px 14px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  background: #f8fbff;
  color: #475569;
  font-size: 13px;
  line-height: 1.45;
}

.proof-note strong {
  color: #1d4ed8;
}

.logo-strip {
  padding: 12px;
  border: 1px dashed rgba(37, 99, 235, 0.3);
  border-radius: 14px;
  background: #ffffff;
}

.logo-strip-label {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.logo-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.logo-slot {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fafc;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.visual-concepts {
  display: grid;
  gap: 18px;
}

.visual-concepts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.visual-concept-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
}

.visual-concept-media {
  position: relative;
  margin: 0 0 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
}

.visual-concept-media img {
  display: block;
  width: 100%;
  height: auto;
}

.visual-concept-media--spotlight figcaption {
  position: absolute;
  right: 8px;
  top: 8px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 1px;
  min-width: 118px;
}

.visual-concept-media--spotlight figcaption strong {
  color: #1d4ed8;
  font-size: 11px;
  line-height: 1.2;
}

.visual-concept-media--spotlight figcaption span {
  color: #64748b;
  font-size: 10px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.visual-concept-media--compare {
  background: #f3f4f6;
}

.split-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 180px;
}

.split-compare-before,
.split-compare-after {
  padding: 10px;
}

.split-compare-before {
  border-right: 1px dashed rgba(15, 23, 42, 0.18);
  background: #eef2f7;
}

.compare-label {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #334155;
  font-size: 10px;
  font-weight: 800;
}

.compare-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.28);
  margin-top: 10px;
}

.compare-line.short {
  width: 74%;
}

.split-compare-after {
  display: grid;
  gap: 8px;
  background: #f8fbff;
}

.split-compare-after img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.visual-concept-media--stack {
  background: #f8fbff;
}

.live-stack-card {
  position: absolute;
  right: 10px;
  min-width: 122px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(37, 99, 235, 0.24);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.12);
}

.live-stack-card.top {
  top: 10px;
}

.live-stack-card.mid {
  top: 60px;
}

.live-stack-card.bottom {
  top: 110px;
}

.live-stack-card strong {
  display: block;
  color: #1d4ed8;
  font-size: 10px;
  line-height: 1.2;
}

.live-stack-card span {
  display: block;
  margin-top: 3px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
}

.story-strip {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.story-strip span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: #1d4ed8;
  font-size: 10px;
  font-weight: 800;
}

.visual-concept-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.visual-concept-card p {
  margin: 8px 0 0;
  color: #5b6670;
  font-size: 13px;
  line-height: 1.45;
}

.product-showcase {
  display: grid;
  gap: 22px;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.showcase-row.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.showcase-row.reverse .showcase-visual {
  order: 2;
}

.showcase-row.reverse .showcase-copy {
  order: 1;
}

.showcase-visual {
  margin: 0;
}

.showcase-ui {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #f8fbff 0%, #ffffff 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.showcase-ui.accent-soft {
  background: linear-gradient(165deg, #f7f5ff 0%, #ffffff 100%);
}

.showcase-ui.accent-strong {
  background: linear-gradient(165deg, #f2f8ff 0%, #ffffff 100%);
}

.showcase-ui-topbar {
  height: 26px;
  border-bottom: 1px solid var(--line);
  background: rgba(37, 99, 235, 0.06);
}

.showcase-ui-layout {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 220px;
}

.showcase-ui-sidebar {
  border-right: 1px solid var(--line);
  background: rgba(37, 99, 235, 0.04);
}

.showcase-ui-main {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.showcase-ui-card,
.showcase-ui-list-item {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.showcase-ui-card.large {
  min-height: 92px;
}

.showcase-ui-list-item {
  min-height: 38px;
}

.showcase-ui-chart {
  min-height: 104px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.02)),
    #ffffff;
}

.showcase-copy h3 {
  margin: 0;
  color: #07111f;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.showcase-copy p {
  margin: 12px 0 0;
  color: #5c6971;
  font-size: 15px;
  line-height: 1.55;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 34px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.22), rgba(15, 23, 42, 0.08));
}

.step {
  position: relative;
  z-index: 1;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: white;
  background: #2563eb;
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-weight: 950;
}

.step h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -.035em;
}

.step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 22px;
  }

  .steps-grid::before {
    display: none;
  }

  .step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }

  .step:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .step-number {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
    font-size: 15px;
  }
}

.pricing-section {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 32px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-inline: 0;
  box-sizing: border-box;
  align-self: stretch;
}

.pricing-header {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin-inline: 0;
}

.pricing-header__lead {
  margin-top: 0.75rem;
  margin-bottom: 0;
  max-width: 40rem;
  margin-inline: auto;
}

.pricing-equation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(10px, 1.8vw, 16px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-inline: 0;
}

.pricing-equation__op {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1.1rem;
  color: #0f766e;
  background: var(--surface-mint-soft);
  border: 1px solid var(--border-mint-soft);
}

.pricing-block {
  position: relative;
  min-width: 0;
  padding: clamp(18px, 2.4vw, 22px) clamp(16px, 2vw, 20px);
  border-radius: var(--ds-radius-card);
  border: 1px solid var(--border-mint-soft);
  background: linear-gradient(
    165deg,
    color-mix(in srgb, #2563eb 5%, #ffffff) 0%,
    var(--surface-mint-soft-2) 100%
  );
  box-shadow:
    var(--ds-shadow-xs),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-align: center;
  overflow: hidden;
}

.pricing-block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint-2) 60%, var(--mint-3) 100%);
  opacity: 0.9;
  pointer-events: none;
}

.pricing-block__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ds-color-muted);
}

.pricing-block__kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--mint) 22%, transparent);
}

.pricing-block__amount {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--ds-color-primary-strong);
}

.pricing-block__currency {
  font-size: 0.55em;
  font-weight: 800;
  margin-right: 0.06em;
  vertical-align: super;
}

.pricing-block__per {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--ds-color-ink-soft);
}

.pricing-block__note {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--ds-color-border);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ds-color-ink-soft);
}

.pricing-callout {
  position: relative;
  margin: 0;
  padding: 16px 20px 16px 26px;
  border-radius: var(--ds-radius-control);
  border: 1px solid var(--border-mint-soft);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, #2563eb 6%, #ffffff) 0%,
    color-mix(in srgb, #2563eb 3%, #f4f8fd) 100%
  );
  overflow: hidden;
}

.pricing-callout::before {
  content: "";
  position: absolute;
  inset: 8px auto 8px 8px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mint) 0%, var(--mint-2) 100%);
}

.pricing-callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ds-color-ink-soft);
  text-align: center;
}

.pricing-calc {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: clamp(20px, 2.6vw, 28px);
  border-radius: var(--ds-radius-card);
  border: 1px solid var(--ds-color-border-strong);
  background: var(--ds-color-surface-strong);
  box-shadow: var(--ds-shadow-sm);
  scroll-margin-top: 96px;
}

.pricing-calc__intro {
  margin-bottom: clamp(18px, 2.2vw, 24px);
}

.pricing-calc__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.pricing-calc__fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.pricing-calc__legend {
  display: block;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ds-color-muted);
}

.pricing-calc__legend-hint {
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ds-color-muted);
}

.pricing-calc__modules {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
  gap: 10px;
}

.pricing-calc__module {
  display: flex;
  align-items: stretch;
  gap: 6px;
}

.pricing-calc__chip {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 0;
  min-height: 52px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 750;
  color: var(--ds-color-ink-soft);
  background: var(--ds-color-surface-muted);
  border: 1px solid var(--ds-color-border);
  cursor: pointer;
  user-select: none;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.pricing-calc__chip:has(input:focus-visible) {
  outline: 2px solid var(--ds-color-primary);
  outline-offset: 2px;
}

.pricing-calc__chip input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--ds-color-primary-strong);
  cursor: pointer;
}

.pricing-calc__chip-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pricing-calc__chip-name {
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--mint-3);
}

.pricing-calc__chip-cat {
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
  color: var(--ds-color-muted);
}

.pricing-calc__chip:has(input:checked) {
  color: var(--ds-color-primary-strong);
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.35);
  font-weight: 850;
}

.pricing-calc__chip:has(input:checked) .pricing-calc__chip-cat {
  color: rgba(37, 99, 235, 0.85);
}

.pricing-calc__info-btn {
  flex: 0 0 38px;
  width: 38px;
  min-height: 52px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid var(--ds-color-border);
  background: var(--ds-color-surface-strong);
  font-size: 12px;
  font-weight: 950;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  color: var(--ds-color-muted);
  cursor: help;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.pricing-calc__info-btn:hover,
.pricing-calc__info-btn:focus-visible {
  color: var(--ds-color-primary-strong);
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.06);
  outline: none;
}

.pricing-calc__users {
  margin-top: 22px;
}

.pricing-calc__users-label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ds-color-muted);
}

.pricing-calc__stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 14px;
  border: 1px solid var(--ds-color-border-strong);
  background: var(--ds-color-surface-muted);
  overflow: hidden;
}

.pricing-calc__step-btn {
  width: 48px;
  min-height: 48px;
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ds-color-primary-strong);
  cursor: pointer;
  transition: background 0.15s ease;
}

.pricing-calc__step-btn:hover {
  background: rgba(37, 99, 235, 0.08);
}

.pricing-calc__users-input {
  width: 4.5rem;
  min-height: 48px;
  border: 0;
  border-inline: 1px solid var(--ds-color-border);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: var(--ds-color-ink);
  background: var(--ds-color-surface-strong);
}

.pricing-calc__users-input:focus {
  outline: none;
  background: #fff;
}

.pricing-calc__users-hint {
  margin: 10px 0 0;
  max-width: 36rem;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ds-color-muted);
}

.pricing-calc__col--result {
  position: sticky;
  top: 96px;
}

.pricing-calc__result {
  position: relative;
  padding: clamp(18px, 2vw, 22px);
  border-radius: var(--ds-radius-control);
  border: 1px solid var(--border-mint-soft);
  background: linear-gradient(
    165deg,
    color-mix(in srgb, #2563eb 8%, #ffffff) 0%,
    var(--surface-mint-soft-2) 55%,
    #ffffff 100%
  );
  box-shadow:
    var(--ds-shadow-xs),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.pricing-calc__result::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint-2) 60%, var(--mint-3) 100%);
  opacity: 0.9;
}

.pricing-calc__result-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ds-color-muted);
}

.pricing-calc__result-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--mint) 22%, transparent);
}

.pricing-calc__price-wrap {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.pricing-calc__price {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 3.1rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--ds-color-primary-strong);
  transition: color 0.2s ease, transform 0.2s var(--ds-ease);
}

.pricing-calc__price-unit {
  font-size: 15px;
  font-weight: 750;
  color: var(--ds-color-ink-soft);
}

.pricing-calc__breakdown {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ds-color-ink-soft);
}

.pricing-calc__warn {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 750;
  color: #9a3412;
  background: rgba(251, 146, 60, 0.15);
  border: 1px solid rgba(234, 88, 12, 0.25);
}

.pricing-calc__warn.is-hidden {
  display: none;
}

.pricing-calc__result.is-price-flash {
  animation: pricingPriceFlash 0.55s var(--ds-ease);
}

.pricing-calc__result.is-price-flash .pricing-calc__price {
  color: #1d4ed8;
  transform: scale(1.03);
}

@keyframes pricingPriceFlash {
  0% {
    box-shadow: var(--ds-shadow-xs);
  }
  35% {
    box-shadow:
      0 0 0 1px rgba(37, 99, 235, 0.12),
      0 12px 40px rgba(37, 99, 235, 0.22),
      0 0 48px rgba(37, 99, 235, 0.18);
  }
  100% {
    box-shadow: var(--ds-shadow-xs);
  }
}

.pricing-calc__actions {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.pricing-calc__order {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.pricing-calc__order:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pricing-calc__actions-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ds-color-muted);
  text-align: center;
}

.pricing-subtitle {
  margin: 0 0 8px;
  font-size: clamp(1.05rem, 1.2vw + 0.65rem, 1.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ds-color-ink);
}

.pricing-modules__hint {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ds-color-muted);
  max-width: 42rem;
}

.pricing-calc__intro .text-link--on-light {
  margin-top: 0;
  color: var(--mint-3);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-flow-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin: 12px 0 0;
  padding: 12px 14px;
  list-style: none;
  border-radius: 14px;
  border: 1px solid var(--ds-color-border-strong);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
  color: var(--ds-color-ink-soft);
}

.pricing-flow-steps li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pricing-flow-steps__n {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--mint-3);
  font-size: 12px;
  font-weight: 900;
}

.pricing-examples-wrap {
  position: relative;
  padding: clamp(20px, 2.8vw, 28px);
  border: 1px solid var(--border-mint-soft);
  border-radius: 20px;
  background:
    linear-gradient(
      165deg,
      color-mix(in srgb, #2563eb 5%, #ffffff) 0%,
      var(--surface-mint-soft-2) 38%,
      #eef2f8 100%
    );
  box-shadow:
    var(--ds-shadow-xs, 0 8px 20px rgba(15, 23, 42, 0.04)),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  scroll-margin-top: 96px;
  overflow: hidden;
}

.pricing-examples-wrap::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint-2) 55%, var(--mint-3) 100%);
  opacity: 0.85;
}

.pricing-examples-wrap .pricing-subtitle {
  color: var(--ds-color-ink, #0f172a);
}

.pricing-examples-wrap .pricing-subtitle::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), var(--mint-2) 70%, transparent);
}

.pricing-examples__intro {
  margin: 0 0 clamp(12px, 1.6vw, 16px);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ds-color-muted, #64748b);
}

.pricing-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
  border-radius: 16px;
  border: 1px solid var(--ds-color-border, rgba(15, 23, 42, 0.08));
  background: #ffffff;
}

.pricing-examples-wrap .pricing-table-scroll {
  border-color: rgba(37, 99, 235, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 28px rgba(15, 23, 42, 0.05);
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  line-height: 1.45;
}

.pricing-table--examples {
  min-width: 0;
  table-layout: fixed;
}

.pricing-table caption {
  padding: 0;
}

.pricing-examples-wrap .pricing-table--examples thead th {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  background: #f8fafc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  color: #64748b;
}

.pricing-examples-wrap .pricing-table--examples thead th:nth-child(1) {
  width: 22%;
}

.pricing-examples-wrap .pricing-table--examples thead th:nth-child(2),
.pricing-examples-wrap .pricing-table--examples thead th:nth-child(3) {
  width: 11%;
  text-align: center;
}

.pricing-examples-wrap .pricing-table--examples thead th:nth-child(4) {
  width: 38%;
}

.pricing-examples-wrap .pricing-table--examples thead th.pricing-table__head-price,
.pricing-examples-wrap .pricing-table--examples thead th:last-child {
  width: 18%;
  text-align: right;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.06);
}

.pricing-examples-wrap .pricing-table--examples tbody th,
.pricing-examples-wrap .pricing-table--examples tbody td {
  padding: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  vertical-align: middle;
  color: #64748b;
  background: #ffffff;
}

.pricing-examples-wrap .pricing-table--examples tbody tr:nth-child(even) th,
.pricing-examples-wrap .pricing-table--examples tbody tr:nth-child(even) td {
  background: #fafbfd;
}

.pricing-examples-wrap .pricing-table--examples tbody tr:nth-child(even) .pricing-table__price {
  background: rgba(37, 99, 235, 0.05);
}

.pricing-table--examples tbody tr:last-child th,
.pricing-table--examples tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-examples-wrap .pricing-table--examples .pricing-table__scenario {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.pricing-examples-wrap .pricing-table--examples .pricing-table__num {
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
}

.pricing-examples-wrap .pricing-table--examples .pricing-table__note {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
}

.pricing-examples-wrap .pricing-table--examples .pricing-table__price {
  text-align: right;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  color: #2563eb;
  white-space: nowrap;
  background: rgba(37, 99, 235, 0.05);
}

.pricing-examples-wrap .pricing-table--examples tbody tr:hover th,
.pricing-examples-wrap .pricing-table--examples tbody tr:hover td {
  background: rgba(37, 99, 235, 0.03);
}

.pricing-examples-wrap .pricing-table--examples tbody tr:hover .pricing-table__price {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.1);
}

@media (max-width: 760px) {
  .pricing-examples-wrap .pricing-table-scroll {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .pricing-examples-wrap .pricing-table--examples {
    display: block;
    width: 100%;
  }

  .pricing-examples-wrap .pricing-table--examples thead {
    display: none;
  }

  .pricing-examples-wrap .pricing-table--examples tbody {
    display: grid;
    gap: 12px;
  }

  .pricing-examples-wrap .pricing-table--examples tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "scenario price"
      "modules users"
      "calc calc";
    gap: 6px 12px;
    padding: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  }

  .pricing-examples-wrap .pricing-table--examples tbody tr:nth-child(even) th,
  .pricing-examples-wrap .pricing-table--examples tbody tr:nth-child(even) td {
    background: transparent;
  }

  .pricing-examples-wrap .pricing-table--examples tbody th,
  .pricing-examples-wrap .pricing-table--examples tbody td {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
  }

  .pricing-examples-wrap .pricing-table--examples .pricing-table__scenario {
    grid-area: scenario;
    align-self: center;
  }

  .pricing-examples-wrap .pricing-table--examples tbody td:nth-child(2) {
    grid-area: modules;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
  }

  .pricing-examples-wrap .pricing-table--examples tbody td:nth-child(2)::before {
    content: "Module";
    display: block;
    margin-bottom: 2px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #94a3b8;
  }

  .pricing-examples-wrap .pricing-table--examples tbody td:nth-child(3) {
    grid-area: users;
    text-align: right;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
  }

  .pricing-examples-wrap .pricing-table--examples tbody td:nth-child(3)::before {
    content: "Aktive Nutzer";
    display: block;
    margin-bottom: 2px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #94a3b8;
  }

  .pricing-examples-wrap .pricing-table--examples tbody td:nth-child(4) {
    grid-area: calc;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
  }

  .pricing-examples-wrap .pricing-table--examples tbody td:nth-child(4)::before {
    content: "So rechnet sich das";
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #94a3b8;
  }

  .pricing-examples-wrap .pricing-table--examples .pricing-table__price {
    grid-area: price;
    align-self: center;
    padding: 0;
    background: transparent;
    font-size: 1.35rem;
  }
}

.pricing-examples-list {
  display: grid;
  gap: clamp(10px, 1.4vw, 14px);
}

@media (min-width: 640px) and (max-width: 899px) {
  .pricing-examples-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .pricing-examples-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

.pricing-example-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(16px, 2.2vw, 20px);
  border-radius: 18px;
  border: 1px solid var(--ds-color-border, rgba(16, 24, 40, 0.09));
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-example-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.pricing-example-card--highlight {
  border-color: rgba(37, 99, 235, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.08), transparent 42%),
    linear-gradient(165deg, #ffffff 0%, #f1f5f9 100%);
}

.pricing-example-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.pricing-example-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ds-color-ink, #101828);
}

.pricing-example-card__price {
  margin: 0;
  text-align: right;
  flex-shrink: 0;
}

.pricing-example-card__amount {
  display: block;
  font-size: clamp(1.35rem, 2vw + 0.5rem, 1.65rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--ds-color-primary, #2563eb);
}

.pricing-example-card__per {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ds-color-ink-soft, #5b6670);
}

.pricing-example-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-example-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: rgba(37, 99, 235, 0.06);
  font-size: 12px;
  line-height: 1;
}

.pricing-example-chip__label {
  font-weight: 750;
  color: var(--ds-color-ink-soft, #5b6670);
}

.pricing-example-chip__value {
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: var(--ds-color-ink, #101828);
}

.pricing-example-card__calc {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid var(--ds-color-border, rgba(16, 24, 40, 0.09));
  font-size: 13px;
  line-height: 1.5;
  color: var(--ds-color-ink-soft, #5b6670);
}

.pricing-example-card__note {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--ds-color-muted, #6e6e73);
}

.pricing-meta-grid {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-meta-card {
  padding: 18px 20px;
  border-radius: var(--ds-radius-control);
  border: 1px solid var(--border-mint-soft);
  background: linear-gradient(
    165deg,
    color-mix(in srgb, #2563eb 5%, #ffffff) 0%,
    var(--surface-mint-soft-2) 100%
  );
  box-shadow:
    var(--ds-shadow-xs),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.pricing-meta-card h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 900;
}

.pricing-meta-card h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-2);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--mint) 22%, transparent);
}

.pricing-meta-card p {
  margin: 0;
  color: var(--ds-color-ink-soft);
  line-height: 1.52;
  font-size: 14px;
}

.pricing-meta-card__price {
  font-weight: 900;
  color: var(--mint-3, #2563eb);
}

.pricing-meta-card__fine {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ds-color-muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #3f4d53;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: end;
}

.price-card {
  padding: 24px;
  min-height: 178px;
}

.cube {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 18px;
  color: var(--mint-3);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235,.22);
  font-weight: 950;
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 38px);
  align-items: center;
  margin: 24px 0 64px;
  padding: clamp(26px, 3.8vw, 54px) clamp(22px, 3.5vw, 48px);
  border-radius: clamp(22px, 3vw, 30px);
  color: var(--text);
  border: 1px solid rgba(37, 99, 235, 0.2);
  background:
    radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.06), transparent 22rem),
    radial-gradient(ellipse 90% 70% at 0% 100%, rgba(37, 99, 235, 0.06), transparent 50%),
    linear-gradient(165deg, #fafafa 0%, #f5f5f4 52%, #ecebe9 100%);
  box-shadow: 0 22px 56px rgba(37, 99, 235, 0.1), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  max-width: 100%;
}

.final-cta::after {
  content: "";
  position: absolute;
  right: 32px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 50%;
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(760px, 100%);
  font-size: clamp(1.75rem, 3.2vw + 1rem, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 950;
  text-wrap: balance;
}

.final-cta p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  max-width: min(720px, 100%);
  color: rgba(248, 250, 252, 0.9);
  font-size: clamp(1rem, 1.4vw + 0.55rem, 1.125rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.final-cta p strong,
.final-cta-options strong {
  color: #ffffff;
  font-weight: 800;
}

.final-cta-options {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  padding: 0 0 0 1.2rem;
  max-width: min(720px, 100%);
  color: rgba(248, 250, 252, 0.88);
  font-size: clamp(0.94rem, 1.1vw + 0.6rem, 1.02rem);
  line-height: 1.58;
  list-style: disc;
}

.final-cta-options li {
  margin: 0.65rem 0 0;
}

.final-cta-options li:first-child {
  margin-top: 0;
}

.final-cta__kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.82);
}

.final-cta__list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  max-width: min(560px, 100%);
}

.final-cta__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(0.94rem, 1.1vw + 0.55rem, 1rem);
  line-height: 1.5;
  color: rgba(248, 250, 252, 0.92);
}

.final-cta__list .check {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(110, 240, 195, 0.22);
  color: #6ef0c3;
  font-size: 12px;
  font-weight: 900;
}

.final-cta__alt {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  font-size: 14px;
  color: rgba(248, 250, 252, 0.78);
}

.final-cta__alt .text-link {
  color: #ffffff;
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.final-cta__alt .text-link:hover,
.final-cta__alt .text-link:focus-visible {
  text-decoration-color: #ffffff;
}

.final-cta__primary {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  width: fit-content;
  max-width: 100%;
}

.final-cta__divider {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.62);
}

.final-cta__email-intro {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  max-width: min(560px, 100%);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(248, 250, 252, 0.85);
}

.final-cta__lead-text {
  position: relative;
  z-index: 1;
}

#cta-engpass,
#cta-demo {
  scroll-margin-top: clamp(100px, 14vw, 140px);
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  min-width: min(390px, 100%);
}

.cta-form {
  position: relative;
  z-index: 1;
  min-width: min(420px, 100%);
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.cta-order-summary {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border-mint-soft);
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--mint) 10%, #ffffff) 0%,
    var(--surface-mint-soft-2) 100%
  );
  color: #0f172a;
}

.cta-order-summary.is-hidden {
  display: none;
}

.cta-order-summary__kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #475569;
}

.cta-order-summary__dl {
  margin: 0;
  display: grid;
  gap: 6px 12px;
  grid-template-columns: auto 1fr;
  font-size: 13px;
  line-height: 1.45;
}

.cta-order-summary__dl dt {
  margin: 0;
  font-weight: 800;
  color: #334155;
}

.cta-order-summary__dl dd {
  margin: 0;
  font-weight: 650;
  color: #0f172a;
}

.cta-order-summary__fine {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: #475569;
}

.cta-order-summary__muted {
  font-weight: 600;
  color: #64748b;
}

body.has-checkout-modal {
  overflow: hidden;
}

.pricing-checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding:
    max(72px, calc(env(safe-area-inset-top, 0px) + 52px)) max(16px, env(safe-area-inset-right, 0px))
    max(20px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.pricing-checkout-modal.is-hidden {
  display: none !important;
}

.pricing-checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-checkout-modal__backdrop {
    backdrop-filter: none;
  }
}

.pricing-checkout-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 32px));
  max-height: min(calc(100vh - 100px), calc(100dvh - 100px));
  margin: 0 auto;
  border-radius: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: linear-gradient(165deg, #ffffff 0%, #f1f5f9 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 28px 70px rgba(15, 23, 42, 0.35);
}

.pricing-checkout__inner {
  padding: clamp(16px, 2.2vw, 22px);
  border-radius: inherit;
  background: transparent;
}

.pricing-checkout__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.pricing-checkout__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.pricing-checkout__step-label {
  margin: 0;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.pricing-checkout__title {
  margin: 0;
  font-size: clamp(1.05rem, 1.1vw + 0.75rem, 1.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ds-color-ink);
}

.pricing-checkout__dismiss {
  margin: 0;
  min-height: 44px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 750;
  color: #475569;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.55);
  border-radius: 12px;
  cursor: pointer;
}

.pricing-checkout__dismiss:hover {
  color: #0f172a;
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(255, 255, 255, 0.7);
}

.pricing-checkout__form {
  display: grid;
  gap: 12px;
  max-width: min(520px, 100%);
}

.pricing-checkout__field {
  display: grid;
  gap: 6px;
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  color: #334155;
}

.pricing-checkout__field input,
.pricing-checkout__field select,
.pricing-checkout__field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  padding: 12px 14px;
  font-size: 16px;
  outline: none;
}

.pricing-checkout__field textarea {
  min-height: 96px;
  resize: vertical;
}

.pricing-checkout__field--radios {
  border: 0;
  padding: 0;
  margin: 0;
}

.pricing-checkout__field--radios legend {
  padding: 0;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #334155;
}

.pricing-checkout__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.pricing-checkout__radio input {
  width: auto;
  min-height: auto;
  margin: 0;
}

.pricing-checkout__field input:focus,
.pricing-checkout__field select:focus,
.pricing-checkout__field textarea:focus {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.pricing-checkout__optional {
  font-weight: 600;
  color: #64748b;
}

.pricing-checkout__legal {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.5;
  color: #475569;
  background: rgba(241, 245, 249, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.pricing-checkout__submit {
  margin-top: 2px;
  width: 100%;
  justify-content: center;
}

.pricing-checkout__status {
  margin: 0;
  font-size: 12px;
  color: #475569;
}

.pricing-checkout__status.is-success {
  color: #14532d;
}

.pricing-checkout__status.is-error {
  color: #991b1b;
}

.pricing-checkout-modal .cta-order-summary {
  margin-bottom: 2px;
}

.cta-form__scope-note {
  margin: 0 0 4px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(248, 250, 252, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-form__scope-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-form label {
  display: grid;
  gap: 6px;
  color: rgba(248, 250, 252, 0.9);
  font-size: 12px;
  font-weight: 800;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  padding: 12px;
  font-size: 14px;
  outline: none;
}

.cta-form textarea {
  resize: vertical;
  min-height: 88px;
}

@media (max-width: 1180px) {
  .cta-form input,
  .cta-form select,
  .cta-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .cta-form textarea {
    min-height: 120px;
  }
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-status {
  margin: 2px 0 0;
  min-height: 20px;
  color: rgba(248, 250, 252, 0.88);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.form-status.is-success {
  color: #86efac;
}

.form-status.is-error {
  color: #fecaca;
}

body.has-form-success-modal {
  overflow: hidden;
}

.form-success-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    max(20px, env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px))
    max(20px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
}

.form-success-modal.is-hidden {
  display: none !important;
}

.form-success-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .form-success-modal__backdrop {
    backdrop-filter: none;
  }
}

.form-success-modal__panel {
  position: relative;
  z-index: 1;
  width: min(440px, calc(100vw - 32px));
  padding: clamp(24px, 4vw, 32px);
  border-radius: clamp(18px, 2.4vw, 24px);
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 28px 70px rgba(15, 23, 42, 0.32);
  text-align: center;
}

.form-success-modal__brand {
  display: grid;
  gap: 6px;
  justify-items: center;
  margin: 0 auto 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.form-success-modal__logo {
  display: block;
  width: min(156px, 62vw);
  height: auto;
}

.form-success-modal__suite {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #64748b;
}

.form-success-modal__title {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: clamp(1.25rem, 2.4vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.form-success-modal__message {
  margin: 0 0 22px;
  color: #475569;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.form-success-modal__close {
  width: 100%;
  min-height: 48px;
}

body.has-demo-booking-modal {
  overflow: hidden;
}

.demo-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding:
    max(72px, calc(env(safe-area-inset-top, 0px) + 52px)) max(16px, env(safe-area-inset-right, 0px))
    max(20px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.demo-booking-modal.is-hidden {
  display: none !important;
}

.demo-booking-modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.demo-booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 32px));
  margin: 0 auto;
  border-radius: clamp(18px, 2.4vw, 24px);
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 28px 70px rgba(15, 23, 42, 0.32);
}

.demo-booking__inner {
  padding: clamp(18px, 2.5vw, 24px);
}

.demo-booking__toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.demo-booking__kicker {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563eb;
}

.demo-booking__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.demo-booking__dismiss {
  flex-shrink: 0;
  padding: 8px 12px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 999px;
  background: #fff;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.demo-booking__intro,
.demo-booking__duration {
  margin: 0 0 14px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.demo-booking__duration {
  color: #2563eb;
  font-weight: 600;
}

.demo-booking__field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.demo-booking__field input,
.demo-booking__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font: inherit;
  font-weight: 500;
}

.demo-booking__section {
  margin-bottom: 14px;
}

.demo-booking__section-label {
  margin: 0 0 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.demo-booking__days {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.demo-booking__day {
  flex: 0 0 auto;
  min-width: 72px;
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 12px;
  background: #fff;
  color: #334155;
  text-align: center;
  cursor: pointer;
  scroll-snap-align: start;
}

.demo-booking__day strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
}

.demo-booking__day span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #64748b;
}

.demo-booking__day.is-selected {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.18);
}

.demo-booking__times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-booking__time {
  min-width: 88px;
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.demo-booking__time.is-selected {
  border-color: #2563eb;
  background: #2563eb;
  color: #fff;
}

.demo-booking__time:disabled,
.demo-booking__day:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.demo-booking__status {
  min-height: 18px;
  margin: 0 0 10px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
}

.demo-booking__status.is-error {
  color: #b91c1c;
}

.demo-booking__submit {
  width: 100%;
  min-height: 48px;
}

.demo-booking__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.cta-form button[disabled] {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.cta-response-time {
  margin: 10px 0 0;
  color: rgba(248, 250, 252, 0.9);
  font-size: 13px;
  line-height: 1.45;
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.24);
}

.btn-light {
  color: #06231f;
  background: #fff;
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.btn-ghost-light {
  color: var(--mint-3);
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--line-strong);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.btn-ghost-light:hover {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.42);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--mint-2);
  outline-offset: 2px;
}

.only-mobile {
  display: none;
}

svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tiny-svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 22px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .module-layout,
  .steps-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    min-width: 0;
  }
}

@media (min-width: 760px) and (max-width: 1180px) {
  .module-layout {
    gap: clamp(18px, 2.4vw, 28px);
  }

  .module-left {
    gap: clamp(16px, 2vw, 22px);
  }

  .module-solution-card,
  .platform-card {
    padding: clamp(18px, 2.4vw, 28px);
  }

  #module .section-title.small {
    font-size: clamp(2rem, 3.3vw, 2.25rem);
    line-height: 1.1;
    letter-spacing: -0.038em;
  }

  #module .section-text {
    font-size: clamp(0.92rem, 1.4vw, 1rem);
    line-height: 1.55;
  }

  #module-filter-tabs.module-filter-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 18px 0 22px;
    border-radius: 999px;
  }

  #module-filter-tabs.module-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  #module-filter-tabs .tab-btn {
    flex: 1 1 auto;
    min-width: 0;
    padding: 11px 12px;
    font-size: 12.5px;
    text-align: center;
  }

  #module .module-card h3 {
    font-size: 16px;
  }

  #module .benefit-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
  }

  #module .benefit-strip div {
    min-height: 44px;
    padding: 10px 8px;
    justify-content: center;
    gap: 6px;
    font-size: 10.5px;
    text-align: center;
    border-right: 1px solid rgba(37, 99, 235,.14);
    border-bottom: 0;
  }

  #module .benefit-strip div:last-child {
    border-right: 0;
  }

  .module-layout .platform-map {
    min-height: clamp(280px, 38vw, 360px);
  }

  .module-layout .core-node {
    width: clamp(116px, 14vw, 138px);
    height: clamp(116px, 14vw, 138px);
    border-radius: 28px;
  }

  .module-layout .node {
    width: clamp(104px, 13vw, 122px);
    padding: 10px 9px 10px 34px;
    font-size: 11px;
  }

  .module-layout .node::before {
    left: 10px;
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 880px) {
  :root {
    --gutter: clamp(14px, 4.2vw, 22px);
  }

  .page {
    width: min(var(--container), calc(100% - 2 * var(--gutter)));
  }

  .site-header {
    top: 0;
    border-radius: 0;
  }

  .nav-wrap {
    min-height: 60px;
    width: min(var(--container), calc(100% - 2 * var(--gutter)));
    margin: 0 auto;
    padding: 10px 0;
  }

  .brand {
    width: auto;
    min-height: 38px;
    padding: 2px 0;
  }

  .brand-logo {
    height: 28px;
    max-width: 240px;
  }

  .brand-main {
    font-size: 23px;
  }
  .brand-sub {
    font-size: 14px;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open,
  .nav-wrap:focus-within .nav-links,
  .nav-wrap:has(.menu-btn:focus) .nav-links {
    display: flex;
  }

  .nav-links a {
    min-height: 48px;
    padding: 14px 16px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.88);
  }

  .nav-links a::after {
    display: none;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .menu-btn {
    display: inline-block;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 7vw + 1rem, 4.4rem);
    line-height: 1.1;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-proof-mini {
    align-items: flex-start;
    flex-direction: column;
  }

  .bottleneck-grid,
  .modules-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-card {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: 1fr;
  }

  .showcase-row.reverse .showcase-visual,
  .showcase-row.reverse .showcase-copy {
    order: initial;
  }

  .showcase-copy h3 {
    font-size: 25px;
  }

  .steps-grid::before {
    left: 28px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .step {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 0;
  }

  .step-number {
    margin-bottom: 0;
  }

  .pricing-equation {
    grid-template-columns: 1fr;
  }

  .pricing-equation__op {
    display: none;
  }

  .pricing-meta-grid {
    grid-template-columns: 1fr;
  }

  .pricing-calc__grid {
    grid-template-columns: 1fr;
  }

  .pricing-calc__col--result {
    position: static;
  }
}

@media (min-width: 760px) and (max-width: 880px) {
  #module .modules-grid:not(#modules-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: clamp(12px, 4.5vw, 18px);
  }

  .section-card,
  .platform-card,
  .final-cta {
    border-radius: 24px;
    padding: clamp(18px, 4.5vw, 24px) clamp(16px, 4vw, 22px);
  }

  .problem-pillars,
  .bottleneck-grid,
  .modules-grid,
  .price-grid,
  .benefit-strip {
    grid-template-columns: 1fr;
  }

  .benefit-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(37, 99, 235,.14);
    justify-content: flex-start;
  }

  .benefit-strip div:last-child {
    border-bottom: 0;
  }

  .tabs {
    display: flex;
    width: 100%;
  }

  .tab-btn {
    flex: 0 0 auto;
  }

  .platform-map {
    aspect-ratio: 1 / 1.12;
    min-height: min(72vw, 380px);
    max-height: 85vh;
    height: auto;
  }

  .core-node {
    top: 48%;
    width: min(132px, 28vw);
    height: min(132px, 28vw);
    font-size: clamp(14px, 3.5vw, 18px);
  }

  .node {
    width: min(118px, 46%);
    max-width: 168px;
    padding: 10px 8px 10px 36px;
    font-size: 11px;
    transform: none;
  }

  .node.pulse { left: 0; top: 0; }
  .node.stride { right: 0; top: 0; }
  .node.fleet { right: 0; bottom: 0; }
  .node.insight { left: 0; bottom: 0; }
  .node.talent { left: 0; bottom: 88px; }
  .node.anchor { right: 0; top: 88px; left: auto; }

  .platform-map > svg {
    display: none;
  }

  .final-cta {
    margin-bottom: 34px;
  }

  .cta-form {
    min-width: 0;
    padding: 14px;
  }

  .cta-form .btn,
  .cta-actions .btn {
    width: 100%;
  }
}

/* —— Hero: layer glow + modul-verbund (erhalten) —— */
@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ambientDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-18px, 14px, 0) scale(1.04); }
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 4px -18vw auto 36%;
  height: min(560px, 90vh);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 38%, rgba(37, 99, 235, 0.07), transparent 17rem),
    radial-gradient(circle at 64% 28%, rgba(15, 23, 42, 0.05), transparent 18rem),
    radial-gradient(circle at 70% 72%, rgba(255, 255, 255, 0.85), transparent 20rem);
  filter: blur(7px);
  z-index: -2;
  pointer-events: none;
  animation: ambientDrift 12s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 12px -12vw auto 40%;
  height: min(420px, 75vh);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.78), transparent 8rem),
    radial-gradient(circle at 72% 36%, rgba(37, 99, 235, 0.04), transparent 11rem),
    linear-gradient(90deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  mask-image: radial-gradient(circle at 58% 40%, #000, transparent 72%);
  opacity: 0.52;
  z-index: -3;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: relative;
  z-index: 1;
  animation: heroVisualIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s both;
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translate3d(22px, 10px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* —— Motion layer: weich, hochwertig, respektiert reduzierte Bewegung —— */
@keyframes dashboardFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -12px, 0) rotate(-0.45deg); }
}

@keyframes orbBreath {
  0%, 100% { opacity: 0.45; transform: translate3d(0, 0, 0) scale(1); }
  50% { opacity: 0.72; transform: translate3d(-10px, 8px, 0) scale(1.08); }
}

@keyframes buttonSheen {
  from { transform: translate3d(-140%, 0, 0) skewX(-18deg); }
  to { transform: translate3d(180%, 0, 0) skewX(-18deg); }
}

@keyframes connectorFlow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -90; }
}

@keyframes corePulse {
  0%, 100% {
    box-shadow:
      0 20px 50px rgba(15, 23, 42, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.1) inset,
      0 0 0 8px rgba(37, 99, 235, 0.08);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow:
      0 26px 62px rgba(15, 23, 42, 0.26),
      0 0 0 1px rgba(255, 255, 255, 0.14) inset,
      0 0 0 14px rgba(37, 99, 235, 0.12);
    transform: translate(-50%, -50%) scale(1.025);
  }
}

@keyframes nodeFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes cubeDockA {
  0%, 100% { transform: rotateX(8deg) rotateY(-18deg) translate3d(0, 0, 0); }
  28% { transform: rotateX(8deg) rotateY(-16deg) translate3d(3px, -2px, 0); }
  62% { transform: rotateX(9deg) rotateY(-18deg) translate3d(0, -5px, 0); }
}

@keyframes cubeDockB {
  0%, 100% { transform: rotateX(10deg) rotateY(16deg) translate3d(0, 0, 0); }
  28% { transform: rotateX(10deg) rotateY(18deg) translate3d(-6px, -2px, 0); }
  62% { transform: rotateX(11deg) rotateY(16deg) translate3d(-2px, -5px, 0); }
}

@keyframes cubeDockC {
  0%, 100% { transform: rotateX(12deg) rotateY(-8deg) translate3d(0, 0, 0); }
  28% { transform: rotateX(13deg) rotateY(-6deg) translate3d(-5px, 3px, 0); }
  62% { transform: rotateX(14deg) rotateY(-8deg) translate3d(-1px, 7px, 0); }
}

@keyframes cubeLinkPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.85; }
}

.gradient-text {
  background-size: 140% 140%;
}

.hero-dashboard-figure {
  transform-origin: center;
  animation: dashboardFloat 9s ease-in-out infinite;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease;
}

.hero-dashboard-figure:hover {
  transform: translate3d(0, -8px, 0) scale(1.012);
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.16),
    0 32px 92px rgba(15, 23, 42, 0.18);
}

.orb.one {
  animation: orbBreath 8s ease-in-out infinite;
}

.orb.two {
  animation: orbBreath 10s ease-in-out infinite reverse;
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -35% auto -35% -40%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0;
  transform: translate3d(-140%, 0, 0) skewX(-18deg);
  pointer-events: none;
  z-index: 0;
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  animation: buttonSheen 0.9s ease;
}

.platform-map > svg path {
  animation: connectorFlow 8s linear infinite;
}

.core-node {
  animation: corePulse 5.4s ease-in-out infinite;
}

.node {
  animation: nodeFloat 6.5s ease-in-out infinite;
}

.node.stride { animation-delay: -0.9s; }
.node.fleet { animation-delay: -1.8s; }
.node.insight { animation-delay: -2.7s; }
.node.talent { animation-delay: -3.6s; }
.node.anchor { animation-delay: -4.5s; }

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.985);
  filter: none;
  transition:
    opacity 0.78s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.78s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.78s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--motion-index, 0) * 90ms);
  will-change: opacity, transform, filter;
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.motion-ready .motion-reveal.motion-reveal-left {
  transform: translate3d(-18px, 0, 0) scale(0.99);
}

.motion-ready .motion-reveal.motion-reveal-right {
  transform: translate3d(18px, 0, 0) scale(0.99);
}

.motion-ready .motion-reveal.motion-reveal-left.is-visible,
.motion-ready .motion-reveal.motion-reveal-right.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .motion-reveal.motion-reveal-up {
  transform: translate3d(0, 28px, 0) scale(0.985);
}

.motion-ready .motion-reveal.motion-reveal-up.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .motion-reveal.motion-reveal-scale {
  transform: translate3d(0, 24px, 0) scale(0.96);
}

.motion-ready .motion-reveal.motion-reveal-scale.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Ablauf-Sektion: klare Reihenfolge von links nach rechts */
.motion-ready .steps-grid .step.motion-reveal {
  transition-delay: 0ms;
}

.motion-ready .steps-grid .step.motion-reveal:nth-child(1) {
  transition-delay: 80ms;
}

.motion-ready .steps-grid .step.motion-reveal:nth-child(2) {
  transition-delay: 240ms;
}

.motion-ready .steps-grid .step.motion-reveal:nth-child(3) {
  transition-delay: 400ms;
}

.motion-ready .steps-grid .step.motion-reveal:nth-child(4) {
  transition-delay: 560ms;
}

/* Final product polish: tighter first screen and robust mobile behaviour. */
@media (min-width: 981px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    min-height: clamp(520px, 58vw, 640px);
    padding: clamp(34px, 5vw, 72px) 0 clamp(30px, 4vw, 54px);
  }

  .hero h1 {
    max-width: 40rem;
    font-size: clamp(3rem, 4.6vw + 0.6rem, 5.15rem);
  }

  .lead {
    max-width: 38rem;
    font-size: clamp(1.02rem, 1.25vw + 0.72rem, 1.24rem);
    line-height: 1.58;
  }

  .hero-visual {
    align-self: center;
  }

  .hero-dashboard-figure {
    max-width: 720px;
    margin-left: auto;
  }
}

@media (min-width: 881px) and (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }
}

@media (max-width: 1024px) {
  .site-header {
    top: 0;
    border-radius: 0;
  }

  .nav-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 64px;
    width: min(var(--container), calc(100% - 2 * var(--gutter)));
    margin: 0 auto;
    padding: 10px 0;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open,
  .nav-wrap:focus-within .nav-links,
  .nav-wrap:has(.menu-btn:focus) .nav-links {
    display: flex;
    max-height: min(72vh, 28rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav-links a {
    min-height: 48px;
    padding: 14px 16px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
  }

  .nav-links a::after,
  .header-actions .btn-primary {
    display: none;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .nav-links__group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  }

  .nav-links__group:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .nav-links__label {
    display: block;
    padding: 8px 16px 4px;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ds-color-ink-soft, #5b6670);
    pointer-events: none;
  }
}

@media (max-width: 880px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  .page,
  .hero,
  .hero-copy,
  .hero-visual,
  .section-card,
  .platform-card,
  .final-cta {
    max-width: 100%;
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 10px 12px;
  }

  .nav-links {
    left: 0;
    right: 0;
    width: 100%;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    gap: 22px;
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.05rem);
    line-height: 1.1;
    letter-spacing: -0.042em;
  }

  .lead {
    font-size: clamp(1.02rem, 4.8vw, 1.22rem);
    line-height: 1.58;
  }

  .hero-visual {
    margin-top: 6px;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: fixed;
    top: 0;
  }

  .brand-main {
    font-size: 22px;
  }

  .brand-sub {
    font-size: 13px;
  }

  .brand-logo {
    height: 26px;
    max-width: 220px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    min-height: 54px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }
}

.site-header {
  border-color: rgba(37, 99, 235, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 245, 244, 0.88));
  box-shadow:
    0 22px 70px rgba(7, 19, 29, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand-lockup,
.nav-links,
.btn {
  letter-spacing: -0.015em;
}

.brand-main {
  color: var(--text);
}

.brand-sub {
  color: var(--mint-3);
}

.nav-links a {
  color: #111c28;
}

.nav-links a:hover {
  color: #2563eb;
}

.btn-primary,
.tab-btn.is-active {
  color: #ffffff;
  background: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.32);
}

.btn-primary:hover,
.tab-btn.is-active:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.step-number {
  color: #ffffff;
  background: #2563eb;
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-secondary,
.btn-ghost-light {
  color: #1d4ed8;
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 14px 34px rgba(7, 19, 29, 0.06);
}

.eyebrow {
  color: #1d4ed8;
  background:
    linear-gradient(90deg, rgba(239, 246, 255, 0.95), rgba(255, 255, 255, 0.92));
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow:
    0 8px 20px rgba(37, 99, 235, 0.07),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.hero::before {
  inset: -20px -18vw auto 34%;
  height: min(620px, 92vh);
  background:
    radial-gradient(circle at 30% 34%, rgba(37, 99, 235, 0.08), transparent 17rem),
    radial-gradient(circle at 66% 30%, rgba(37, 99, 235, 0.10), transparent 17rem),
    radial-gradient(circle at 70% 72%, rgba(255, 255, 255, 0.82), transparent 21rem);
}

.hero h1.gradient-text {
  color: var(--text);
}

.lead {
  color: #4f5d67;
}

.hero-dashboard-figure {
  border: 1px solid rgba(37, 99, 235, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(245, 245, 244, 0.96));
  box-shadow:
    0 34px 100px rgba(7, 19, 29, 0.14),
    0 0 0 1px rgba(37, 99, 235, 0.12),
    0 0 80px rgba(37, 99, 235, 0.08);
}

.hero-dashboard-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.36), transparent 34%),
    linear-gradient(180deg, transparent 62%, rgba(7, 19, 29, 0.045));
}

.section-card,
.platform-card,
.feature-card,
.bottleneck-card,
.module-card,
.price-card {
  border-color: var(--line);
  background: var(--surface-solid);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.05);
}

.section-kicker {
  color: #2563eb;
  letter-spacing: .105em;
}

.section-title,
.feature-card h3,
.bottleneck-card h3,
.module-card h3,
.price-card h3 {
  color: #07111f;
}

.icon-box,
.check,
.mini-icon,
.cube {
  color: #2563eb;
  border-color: var(--line-strong);
  background: var(--surface-soft);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.module-tag,
.benefit-strip {
  background: var(--surface-soft);
  border-color: var(--line);
}

.core-node {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(145deg, #0f172a, #1e3a8a);
  background-size: 16px 16px, 16px 16px, auto, auto;
  box-shadow:
    0 24px 64px rgba(7, 19, 29, 0.24),
    0 0 64px rgba(37, 99, 235, 0.2);
}

.node {
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(255,255,255,.86);
  color: #2563eb;
}

.tabs {
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(255,255,255,.84);
}

.final-cta {
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.08), transparent 18rem),
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.28), transparent 16rem),
    linear-gradient(135deg, #0f172a 0%, #1e3a8a 48%, #2563eb 100%);
  box-shadow:
    0 28px 90px rgba(7, 19, 29, 0.22),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.final-cta h2 {
  color: #ffffff;
}

.btn-light {
  color: #0f172a;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 44px rgba(7, 19, 29, 0.14);
}

@media (max-width: 1024px) {
  .nav-links {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98), rgba(250, 250, 249, 0.97));
    border-color: rgba(37, 99, 235, 0.16);
  }
}

@media (max-width: 620px) {
  .hero-heading-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-cube-animation {
    --cube-size: 74px;
    margin-right: 0;
    justify-self: start;
  }

  .eyebrow {
    align-items: flex-start;
  }

  .eyebrow-text {
    line-height: 1.3;
  }

  .hero-dashboard-figure {
    box-shadow:
      0 24px 72px rgba(7, 19, 29, 0.12),
      0 0 54px rgba(37, 99, 235, 0.1);
  }

  .hero-module-flow {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-device {
    padding-inline: 12px;
  }

  .hero-device-shell {
    padding: 8px 8px 12px;
    border-radius: 20px;
  }

  .hero-laptop-shell:not(.hero-laptop-shell--light) {
    padding: 8px 8px 12px;
    border-radius: 24px;
  }

  .hero-phone-overlay {
    right: 4px;
    bottom: 56px;
    width: 94px;
    border-radius: 22px;
    padding: 7px;
  }

  .hero-phone-shell:not(.hero-phone-shell--light) {
    width: clamp(96px, 26vw, 118px);
    padding: 7px;
    border-radius: 22px;
  }

  .hero-device-notch {
    width: 42px;
    height: 6px;
    margin-bottom: 6px;
  }

  .hero-device-img {
    border-radius: 14px;
  }

  .hero-phone-img {
    border-radius: 14px;
  }

  .hero-device-thumbs {
    flex-wrap: wrap;
  }
}

h1,
.section-title,
.final-cta h2 {
  font-weight: var(--ds-font-weight-title);
  letter-spacing: -0.058em;
}

.lead,
.section-text,
.feature-card p,
.bottleneck-card p,
.module-card p,
.price-card p,
.node small {
  color: var(--ds-color-ink-soft);
  font-weight: 560;
}

.section-kicker,
.eyebrow,
.category,
.module-tag,
.check-list,
.trust-item,
.tab-btn,
.btn {
  font-weight: var(--ds-font-weight-label);
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--ds-radius-control);
  border-width: 1px;
  border-style: solid;
  font-size: 15px;
  line-height: 1;
  box-shadow: var(--ds-shadow-xs);
  transform: translateZ(0);
  transition:
    transform 0.2s var(--ds-ease),
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  border-color: var(--ds-color-primary);
  background: var(--ds-color-primary);
  box-shadow: var(--ds-shadow-primary);
}

.btn-primary:hover {
  background: var(--ds-color-primary-strong);
  border-color: var(--ds-color-primary-strong);
  box-shadow: 0 22px 54px rgba(37, 99, 235, 0.34);
}

.btn-light {
  color: #0f172a;
  border-color: rgba(255, 255, 255, 0.5);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(7, 19, 29, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-light:hover {
  box-shadow: 0 18px 44px rgba(7, 19, 29, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.btn-secondary,
.btn-ghost-light {
  color: var(--ds-color-primary-strong);
  border-color: var(--ds-color-border-strong);
  background: var(--surface-solid);
  box-shadow: var(--ds-shadow-xs), inset 0 1px 0 rgba(255,255,255,.82);
}

.section-card,
.platform-card,
.final-cta {
  border-radius: var(--ds-radius-panel);
}

.feature-card,
.bottleneck-card,
.module-card,
.price-card,
.tabs,
.benefit-strip {
  border: 1px solid var(--ds-color-border);
  background: var(--ds-color-surface-strong);
  box-shadow: var(--ds-shadow-sm);
}

/* Preis-Badge: eigenes Layout — nicht wie neutrale Karten (.price-badge absichtlich ausgeschlossen) */
.pricing-section .price-badge {
  border: 2px solid #2563eb;
  background: #ffffff;
  box-shadow:
    0 10px 28px rgba(37, 99, 235, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.feature-card,
.bottleneck-card,
.module-card,
.price-card {
  border-radius: var(--ds-radius-card);
  transition:
    transform 0.22s var(--ds-ease),
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.feature-card:hover,
.bottleneck-card:hover,
.module-card:hover,
.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--ds-color-border-strong);
  box-shadow: var(--ds-shadow-md), var(--ds-glow-primary);
}

.icon-box,
.check,
.mini-icon,
.cube {
  border: 1px solid var(--ds-color-border-strong);
  background: var(--ds-color-surface-muted);
  color: var(--ds-color-primary-strong);
  box-shadow: var(--ds-shadow-xs), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.eyebrow,
.tabs,
.benefit-strip,
.trust-item {
  border-color: var(--ds-color-border-strong);
  background: var(--ds-color-surface-strong);
  box-shadow: var(--ds-shadow-xs);
}

.tab-btn {
  color: var(--ds-color-muted);
  border-radius: 999px;
}

.tab-btn.is-active {
  color: #ffffff;
  background: var(--ds-color-primary);
  box-shadow: var(--ds-shadow-primary);
}

.module-tag {
  color: var(--ds-color-primary-strong);
  border-top-color: var(--ds-color-border);
  background: var(--ds-color-surface-muted);
}

#modules-grid .module-card .icon-box:not(.icon-box--module) {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  color: #2563eb;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

#modules-grid .module-card .icon-box:not(.icon-box--module)::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  pointer-events: none;
}

#modules-grid .module-card .icon-box:not(.icon-box--module) svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.9;
  filter: none;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#modules-grid .module-card .icon-box:not(.icon-box--module) .icon-soft,
#modules-grid .module-card .icon-box:not(.icon-box--module) .icon-dot {
  display: none;
}

.final-cta .btn-ghost-light {
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@media (max-width: 620px) {
  .btn {
    width: 100%;
    min-height: 54px;
  }

  .section-card,
  .platform-card,
  .final-cta,
  .feature-card,
  .bottleneck-card,
  .module-card,
  .price-card {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .skip-link {
    transition: none;
  }

  .motion-ready .motion-reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Isometric cube stack (hero) */
.hero-cube-animation {
  --cube-size: clamp(196px, 19vw, 320px);
  --cube-line: color-mix(in srgb, var(--mint-3) 72%, var(--mint) 28%);
  --cube-soft-top: color-mix(in srgb, #ffffff 82%, var(--mint-3) 18%);
  --cube-soft-left: color-mix(in srgb, #ffffff 74%, var(--mint-3) 26%);
  --cube-soft-right: color-mix(in srgb, #ffffff 66%, var(--mint-3) 34%);
  --cube-accent-top: color-mix(in srgb, var(--mint) 52%, var(--mint-3) 48%);
  --cube-accent-left: color-mix(in srgb, var(--mint-2) 42%, var(--mint-3) 58%);
  --cube-accent-right: var(--mint-3);
  --cube-deep-top: color-mix(in srgb, var(--dark-green) 76%, var(--mint-3) 24%);
  --cube-deep-left: color-mix(in srgb, var(--dark) 78%, var(--mint-3) 22%);
  --cube-deep-right: color-mix(in srgb, var(--dark) 88%, var(--mint-3) 12%);
  --cube-highlight: color-mix(in srgb, var(--warning) 74%, #ffffff 26%);
  width: var(--cube-size);
  height: calc(var(--cube-size) * 0.82);
  position: absolute;
  right: clamp(-210px, -18vw, -360px);
  top: 50%;
  margin-right: 0;
  transform: translateY(-50%);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  perspective: none;
}

.hero-cube-animation .cube-shape,
.hero-cube-animation .cube-link {
  display: none;
}

.hero-cube-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 14px 22px rgba(15, 23, 42, 0.14));
}

.cube-group {
  transform-origin: center;
  transform-box: fill-box;
}

.cube-group-a {
  opacity: 0;
  transform: translate(-46px, -34px) scale(0.84) rotate(-8deg);
  transition:
    transform 0.86s cubic-bezier(0.2, 0.78, 0.18, 1),
    opacity 0.62s ease;
}

.cube-group-b {
  opacity: 0;
  transform: translate(0, -54px) scale(0.82) rotate(5deg);
  transition:
    transform 0.86s cubic-bezier(0.2, 0.78, 0.18, 1) 90ms,
    opacity 0.62s ease 90ms;
}

.cube-group-c {
  opacity: 0;
  transform: translate(50px, 0) scale(0.84) rotate(8deg);
  transition:
    transform 0.86s cubic-bezier(0.2, 0.78, 0.18, 1) 170ms,
    opacity 0.62s ease 170ms;
}

.cube-group-wire {
  opacity: 0;
  transform: translate(0, 52px) scale(0.8) rotate(-6deg);
  transition:
    transform 0.86s cubic-bezier(0.2, 0.78, 0.18, 1) 240ms,
    opacity 0.62s ease 240ms;
}

.hero-cube-animation.is-assembled .cube-group-a,
.hero-cube-animation.is-assembled .cube-group-b,
.hero-cube-animation.is-assembled .cube-group-c,
.hero-cube-animation.is-assembled .cube-group-wire {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(0deg);
}

.hero-cube-animation.is-assembled .hero-cube-svg {
  animation: cubeStackFloat 5.2s ease-in-out 0.9s infinite;
}

.hero-cube-animation.is-assembled .cube-group-a {
  animation: cubeGroupA 5.2s ease-in-out 0.95s infinite;
}

.hero-cube-animation.is-assembled .cube-group-b {
  animation: cubeGroupB 5.2s ease-in-out 1.05s infinite;
}

.hero-cube-animation.is-assembled .cube-group-c {
  animation: cubeGroupC 5.2s ease-in-out 1.15s infinite;
}

.cube-top-face,
.cube-left-face,
.cube-right-face {
  stroke: var(--cube-line);
  stroke-width: 1.4;
  stroke-linejoin: round;
}

.cube-solid-top {
  fill: var(--cube-soft-top);
}

.cube-solid-left {
  fill: var(--cube-soft-left);
}

.cube-solid-right {
  fill: var(--cube-soft-right);
}

.cube-deep-top {
  fill: var(--cube-deep-top);
  stroke: rgba(22, 58, 106, 0.5);
}

.cube-deep-left {
  fill: var(--cube-deep-left);
  stroke: rgba(22, 58, 106, 0.5);
}

.cube-deep-right {
  fill: var(--cube-deep-right);
  stroke: rgba(22, 58, 106, 0.5);
}

.cube-wire {
  fill: none;
  stroke: var(--cube-accent-top);
  stroke-width: 2;
  stroke-linejoin: round;
}

.cube-group-b .cube-top-face {
  fill: var(--cube-accent-top);
}

.cube-group-b .cube-left-face {
  fill: var(--cube-accent-left);
}

.cube-group-b .cube-right-face {
  fill: var(--cube-accent-right);
}

.cube-group-c .cube-top-face {
  stroke: color-mix(in srgb, var(--cube-line) 78%, var(--cube-highlight) 22%);
}

@keyframes cubeStackFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -4px, 0); }
}

@keyframes cubeGroupA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-1px, -2px, 0); }
}

@keyframes cubeGroupB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -3px, 0); }
}

@keyframes cubeGroupC {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(1px, -2px, 0); }
}

@media (max-width: 620px) {
  .hero-heading-row {
    padding-right: 0;
  }

  .hero-cube-animation {
    --cube-size: 148px;
    position: relative;
    right: auto;
    top: auto;
    margin-right: -18px;
    transform: translateX(14px);
  }
}

@media (min-width: 621px) and (max-width: 1200px) {
  .hero-heading-row {
    position: relative;
    display: block;
    padding-right: 0;
    overflow: visible;
    min-height: clamp(210px, 28vw, 290px);
  }

  .hero-heading-row h1 {
    max-width: 100%;
  }

  .hero-cube-animation {
    position: absolute;
    right: clamp(-220px, -22vw, -380px);
    top: clamp(-8px, -1vw, 0px);
    margin: 0;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cube-group-a,
  .cube-group-b,
  .cube-group-c,
  .cube-group-wire {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none !important;
  }

  .hero-cube-svg {
    animation: none !important;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  width: auto;
  max-width: 100%;
  min-height: 0;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.eyebrow::before {
  content: none;
}

.eyebrow-brand {
  gap: 1px;
  min-width: 0;
}

.eyebrow-brand .inline-wordmark img {
  height: 14px;
}

.eyebrow-brand-sub {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--mint);
  text-transform: uppercase;
}

.eyebrow-text {
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 720;
  color: var(--mint-3);
}

@media (max-width: 620px) {
  .eyebrow {
    margin-bottom: 12px;
  }

  .eyebrow-text {
    font-size: 13px;
    line-height: 1.28;
  }
}

/* Design cleanup pass: calmer premium consistency */
:root {
  --ds-color-bg: #f7f7f6;
  --ds-color-surface: #ffffff;
  --ds-color-surface-muted: #f3f4f6;
  --ds-color-primary: #2563eb;
  --ds-color-primary-strong: #1d4ed8;
  --ds-color-ink: #101828;
  --ds-color-ink-soft: #5b6670;
  --ds-color-border: rgba(16, 24, 40, 0.09);
  --ds-color-border-strong: rgba(16, 24, 40, 0.14);
  --ds-shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.04);
  --ds-shadow-sm: 0 10px 26px rgba(16, 24, 40, 0.06);
  --ds-shadow-md: 0 16px 40px rgba(16, 24, 40, 0.08);
  --ds-section-gap: clamp(18px, 2.3vw, 26px);
}

body {
  background: var(--ds-color-bg);
}

body::before {
  opacity: 0.2;
}

.site-header {
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

.section-title,
.showcase-copy h3 {
  letter-spacing: -0.04em;
}

.section-text,
.lead,
.feature-card p,
.bottleneck-card p,
.module-card p,
.price-card p {
  color: var(--ds-color-ink-soft);
}

/* CTA auf dunklem Verlauf: eigene Fließtextfarbe (nicht --ds-color-ink-soft) */
.final-cta > div > p {
  color: rgba(248, 250, 252, 0.94);
}

.btn {
  border-radius: 14px;
  box-shadow: var(--ds-shadow-xs);
}

.btn-primary {
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.3);
}

.btn-secondary,
.btn-ghost-light {
  background: #ffffff;
  border-color: var(--ds-color-border-strong);
  box-shadow: var(--ds-shadow-xs);
}

.section-card,
.platform-card,
.feature-card,
.bottleneck-card,
.module-card,
.price-card,
.showcase-row,
.showcase-ui {
  border-color: var(--ds-color-border);
  box-shadow: var(--ds-shadow-sm);
}

.section-card {
  margin-top: var(--ds-section-gap);
}

.feature-card:hover,
.bottleneck-card:hover,
.module-card:hover,
.price-card:hover,
.showcase-row:hover {
  box-shadow: var(--ds-shadow-md);
}

.icon-box,
.check,
.cube {
  background: var(--ds-color-surface-muted);
  border-color: var(--ds-color-border);
  box-shadow: none;
}

.tabs {
  border-color: var(--ds-color-border);
  box-shadow: var(--ds-shadow-xs);
}

.tab-btn {
  font-weight: 800;
}

.tab-btn.is-active {
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.24);
}

.hero {
  padding-top: clamp(28px, 4.2vw, 58px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 6%, rgba(30, 58, 138, 0.16), rgba(37, 99, 235, 0.09) 24%, transparent 54%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.94), rgba(248, 250, 252, 0.76) 34%, transparent 100%);
}

.hero::before,
.hero::after,
.orb {
  opacity: 0.55;
}

.hero-dashboard-figure {
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.1);
}

.trust-row {
  gap: 10px;
}

.trust-item {
  font-size: 12px;
}

.hero-actions .btn-primary,
.showcase-copy .btn-primary,
.cta-form .btn-light,
.final-cta .btn-primary,
.header-actions .btn-primary {
  background: var(--ds-color-primary);
  border-color: var(--ds-color-primary);
  color: #ffffff;
}

.hero-actions .btn-primary:hover,
.showcase-copy .btn-primary:hover,
.cta-form .btn-light:hover,
.final-cta .btn-primary:hover,
.header-actions .btn-primary:hover {
  background: var(--ds-color-primary-strong);
  border-color: var(--ds-color-primary-strong);
}

.product-showcase {
  gap: 16px;
}

.showcase-row {
  padding: 14px;
}

.showcase-copy h3 {
  font-size: clamp(24px, 2vw + 12px, 30px);
}

.pricing-section .price-badge {
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.14);
}

.final-cta {
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.2);
}

@media (max-width: 900px) {
  .page {
    padding-top: 88px;
  }

  .hero-copy {
    padding-inline: 10px;
  }

  .section-card {
    margin-top: 16px;
    padding: clamp(18px, 4.6vw, 24px) clamp(16px, 4.2vw, 22px);
    border-radius: 22px;
  }

  .section-title.small {
    font-size: clamp(1.5rem, 4.4vw, 2rem);
    line-height: 1.16;
    letter-spacing: -0.03em;
  }

  .section-text,
  .lead {
    font-size: 15px;
    line-height: 1.52;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 50px;
    font-size: 14px;
  }

  .module-intro-split {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tabs {
    margin: 18px 0 18px;
    padding: 5px;
  }

  .tab-btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  .showcase-row {
    padding: 12px;
    border-radius: 18px;
    gap: 14px;
  }

  .showcase-copy h3 {
    font-size: clamp(21px, 5.2vw, 25px);
  }

  .visual-concepts-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .logo-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-compare {
    grid-template-columns: 1fr;
  }

  .split-compare-before {
    border-right: 0;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.18);
  }
}

@media (max-width: 620px) {
  :root {
    --ds-section-gap: 14px;
  }

  .page {
    padding-top: 82px;
  }

  .hero-copy {
    padding-inline: 12px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10.5vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.036em;
  }

  .lead {
    font-size: 14px;
    line-height: 1.48;
  }

  .hero-actions .btn,
  .cta-form .btn,
  .cta-form .btn-ghost-light {
    width: 100%;
  }

  .check-list {
    gap: 8px;
    font-size: 14px;
  }

  .price-card {
    min-height: 0;
    padding: 18px;
  }
}

/* UX pass: Fluss, Anker, Footer, Checkout-Leerstand */
a.bottleneck-card {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a.bottleneck-card:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.45);
  outline-offset: 3px;
}

.section-text .text-link.text-link--inline {
  display: inline-flex;
  margin-top: 0;
  margin-left: 0.12em;
  vertical-align: baseline;
}

.steps-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: clamp(28px, 4vw, 40px);
  padding-top: clamp(22px, 3.5vw, 32px);
  border-top: 1px solid var(--line);
  align-items: center;
}

.pricing-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  width: 100%;
  max-width: 100%;
  margin: clamp(12px, 2vw, 20px) 0 clamp(22px, 3vw, 28px);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--ds-color-border, rgba(16, 24, 40, 0.09));
  background: var(--ds-color-surface-muted, #f3f4f6);
  font-size: 13px;
  font-weight: 750;
  box-sizing: border-box;
}

.pricing-toc a {
  color: var(--ds-color-primary, #2563eb);
  text-decoration: none;
  white-space: nowrap;
}

.pricing-toc a:hover {
  text-decoration: underline;
}

.proof-note--solo {
  margin-top: clamp(20px, 3vw, 28px);
  margin-bottom: 0;
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ds-color-ink-soft, #5b6670);
}

.pricing-checkout__form.is-hidden {
  display: none !important;
}

.pricing-checkout__empty {
  padding: 12px 8px 24px;
}

.pricing-checkout__empty.is-hidden {
  display: none !important;
}

.pricing-checkout__empty-title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ds-color-ink, #101828);
}

.pricing-checkout__empty-text {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ds-color-ink-soft, #5b6670);
}

.pricing-checkout__empty .btn {
  width: 100%;
  max-width: 280px;
}

.site-footer {
  margin-top: clamp(32px, 5vw, 56px);
  padding: clamp(22px, 3.5vw, 32px) clamp(20px, 4vw, 32px);
  border-top: 1px solid var(--line);
  background: var(--ds-color-surface, #ffffff);
}

.site-footer__inner {
  max-width: var(--page-max, 1120px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.site-footer__brand {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--ds-color-ink-soft, #5b6670);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 14px;
}

.site-footer__nav a {
  color: var(--ds-color-primary, #2563eb);
  text-decoration: none;
  font-weight: 650;
}

.site-footer__nav a:hover {
  text-decoration: underline;
}

#pricing-bausteine,
#pricing-service {
  scroll-margin-top: clamp(96px, 14vw, 132px);
}

#modules-grid,
#business-suite,
[id^='modul-'] {
  scroll-margin-top: clamp(100px, 15vw, 140px);
}

/* Desktop: Nav-Gruppen auflösen (flache Links in einer Zeile) */
@media (min-width: 1025px) {
  .nav-links__group {
    display: contents;
  }

  .nav-links__label {
    display: none !important;
  }
}

/* Beispiel-Tabelle: auf schmalen Screens in <details> */
.pricing-examples-disclosure {
  margin-top: 2px;
}

.pricing-examples-disclosure__summary {
  list-style: none;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.pricing-examples-disclosure__summary::-webkit-details-marker {
  display: none;
}

.pricing-examples-disclosure__title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ds-color-ink, #101828);
}

.pricing-examples-disclosure__hint {
  font-size: 12px;
  font-weight: 650;
  color: var(--ds-color-ink-soft, #5b6670);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .pricing-examples-disclosure__summary {
    display: flex;
    min-height: 52px;
    padding: 12px 16px;
    margin: 12px 0 0;
    border-radius: 14px;
    border: 1px solid var(--ds-color-border-strong);
    background: var(--ds-color-surface, #ffffff);
    box-shadow: var(--ds-shadow-xs);
  }

  .pricing-examples-disclosure__summary::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    margin-top: -2px;
    border-right: 2px solid var(--ds-color-ink-soft, #5b6670);
    border-bottom: 2px solid var(--ds-color-ink-soft, #5b6670);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    opacity: 0.75;
  }

  .pricing-examples-disclosure[open] .pricing-examples-disclosure__summary::after {
    transform: rotate(-135deg);
    margin-top: 2px;
  }

  .pricing-examples-disclosure__summary:focus-visible {
    outline: 2px solid var(--mint-2, #00e6a1);
    outline-offset: 2px;
  }

  .pricing-examples-disclosure .pricing-table-scroll {
    margin-top: 10px;
  }
}

@media (min-width: 721px) {
  .pricing-examples-disclosure__summary {
    display: none !important;
  }

  .pricing-examples-disclosure {
    border: 0;
    padding: 0;
    margin: 0;
  }
}

/* Impressum / Rechtstexte (gleiche Seitenhülle wie Landing) */
.legal-page {
  padding-top: clamp(20px, 3.5vw, 40px);
  padding-bottom: clamp(48px, 7vw, 96px);
}

.legal-document {
  width: 100%;
  max-width: min(40rem, 100%);
  margin-inline: auto;
}

.legal-document__lead {
  margin-top: clamp(10px, 1.5vw, 16px);
  margin-bottom: clamp(8px, 1.2vw, 14px);
}

.legal-document h2 {
  margin: clamp(26px, 3vw, 34px) 0 10px;
  font-size: clamp(1.05rem, 1.1vw + 0.85rem, 1.28rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ds-color-ink, #101828);
}

.legal-document h2:first-of-type {
  margin-top: clamp(16px, 2vw, 22px);
}

.legal-document p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.62;
  color: var(--ds-color-ink-soft, #5b6670);
}

.legal-document p:last-child {
  margin-bottom: 0;
}

.legal-document .text-link {
  display: inline-flex;
  margin-top: 0;
  font-weight: 850;
  white-space: normal;
  vertical-align: baseline;
}

.legal-placeholder {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px dashed rgba(16, 24, 40, 0.18);
  background: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ds-color-ink-soft, #5b6670);
}

.legal-document__back {
  margin-top: clamp(28px, 4vw, 40px) !important;
  padding-top: clamp(22px, 3vw, 28px);
  border-top: 1px solid var(--line);
}

/* UI-Icons: einheitlicher Stroke-Stil + hochwertige Icon-Boxen */
.icon-box {
  position: relative;
  isolation: isolate;
}

.ui-icon,
.icon-box svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.feature-card .icon-box .ui-icon,
.bottleneck-card .icon-box .ui-icon,
#modules-grid .module-card .icon-box .ui-icon {
  width: 24px;
  height: 24px;
}

.feature-card .icon-box,
.bottleneck-card .icon-box,
#modules-grid .module-card .icon-box {
  overflow: hidden;
  color: #1d4ed8;
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background:
    radial-gradient(circle at 72% 18%, rgba(37, 99, 235, 0.1), transparent 48%),
    linear-gradient(155deg, #ffffff 0%, #f1f5f9 100%);
  box-shadow:
    0 10px 26px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card .icon-box::before,
.bottleneck-card .icon-box::before,
#modules-grid .module-card .icon-box::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  background: radial-gradient(circle at 24% 20%, rgba(37, 99, 235, 0.12), transparent 58%);
  pointer-events: none;
}

.feature-card:hover .icon-box,
.bottleneck-card:hover .icon-box,
#modules-grid .module-card:hover .icon-box {
  transform: translateY(-1px) scale(1.03);
  border-color: rgba(37, 99, 235, 0.38);
  box-shadow:
    0 14px 32px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 0 20px rgba(37, 99, 235, 0.1);
}

#modules-grid .module-card .icon-box:not(.icon-box--module) .ui-icon,
.module-card .icon-box:not(.icon-box--module) .ui-icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.85;
  filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.18));
}

#modules-grid .module-card .icon-box:not(.icon-box--module),
.module-card .icon-box:not(.icon-box--module) {
  overflow: hidden;
  color: #1d4ed8;
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.28);
  background:
    radial-gradient(circle at 72% 18%, rgba(37, 99, 235, 0.12), transparent 46%),
    linear-gradient(155deg, #ffffff 0%, #f1f5f9 100%);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

#modules-grid .module-card .icon-box:not(.icon-box--module)::before,
.module-card .icon-box:not(.icon-box--module)::before {
  inset: 7px;
  border-radius: 12px;
  background: radial-gradient(circle at 28% 22%, rgba(37, 99, 235, 0.14), transparent 58%);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

#modules-grid .module-card:hover .icon-box:not(.icon-box--module),
.module-card:hover .icon-box:not(.icon-box--module) {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.11),
    0 0 24px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

/* Beispielrechnungen: Blau-Off-White mit Mint-Akzent */
section#preise #pricing-beispiele.pricing-examples-wrap {
  background:
    linear-gradient(
      165deg,
      color-mix(in srgb, #2563eb 5%, #ffffff) 0%,
      var(--surface-mint-soft-2) 38%,
      #eef2f8 100%
    );
  border-color: var(--border-mint-soft);
}

section#preise #pricing-beispiele .pricing-table thead th {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, #2563eb 6%, #ffffff) 0%,
    rgba(244, 249, 252, 0.98) 100%
  );
}

section#preise #pricing-beispiele .pricing-table--examples thead th.pricing-table__head-price,
section#preise #pricing-beispiele .pricing-table--examples thead th:last-child {
  color: #2563eb;
}

section#preise #pricing-beispiele .pricing-table--examples .pricing-table__price {
  color: #2563eb;
}

/* —— UX enhancements —— */
.hero-cta-hint {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 650;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.hero-journey {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 18px;
  max-width: 44rem;
}

.hero-journey__path {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.hero-journey__path:hover {
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.hero-journey__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-journey__action {
  font-size: 14px;
  font-weight: 850;
  color: var(--mint-3);
}

.hero-journey__path--lead {
  border-color: color-mix(in srgb, var(--mint-3) 32%, var(--line));
  background: color-mix(in srgb, var(--mint-3) 5%, #ffffff);
  box-shadow: var(--shadow-soft), 0 0 0 1px color-mix(in srgb, var(--mint-3) 10%, transparent);
}

.hero-journey__path--lead .hero-journey__label {
  color: var(--mint-3);
}

.hero-outcomes {
  margin: 14px 0 0;
  max-width: 34rem;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.hero-outcomes strong {
  color: var(--text);
  font-weight: 800;
}

.section-text--fine {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted-2);
}

.diagnose-tool__cta-alt {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.module-value-bullets {
  margin: 14px 0 0;
  padding: 0 0 0 1.15rem;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.module-value-bullets li + li {
  margin-top: 6px;
}

.how-steps {
  margin: 20px 0;
}

.how-steps__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.how-steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.how-steps__num {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  color: var(--mint-3);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.how-steps__item h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.how-steps__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.how-steps__paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.how-steps__path {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.how-steps__path--lead {
  border-color: color-mix(in srgb, var(--mint-3) 28%, var(--line));
  box-shadow: var(--ds-shadow-sm), 0 0 0 1px color-mix(in srgb, var(--mint-3) 12%, transparent);
}

.how-steps__path--lead .how-steps__path-tag {
  color: var(--accent-mint-strong);
}

.how-steps__path-tag {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint-3);
}

.how-steps__path-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.how-steps__list--inline {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  gap: 10px;
  margin: 0;
}

.how-steps__list--inline .how-steps__item {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.how-steps__list--inline .how-steps__item h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.how-steps__list--inline .how-steps__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.how-steps__path-cta {
  margin-top: auto;
  align-self: flex-start;
}

.how-steps__demo-hint {
  margin: 22px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.module-card__calc-btn:not(.module-tag) {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 12px;
  font-weight: 850;
  color: var(--mint-3);
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.module-card__calc-btn:not(.module-tag):hover,
.module-card__calc-btn:not(.module-tag):focus-visible {
  color: var(--dark-green);
  outline: none;
}

.pricing-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-flow__step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--ds-color-border);
  background: var(--ds-color-surface-muted);
  font-size: 12px;
  font-weight: 750;
  color: var(--ds-color-muted);
}

.pricing-flow__step.is-active {
  color: var(--ds-color-primary-strong);
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.08);
  font-weight: 900;
}

.pricing-flow__step.is-done {
  color: var(--ds-color-ink-soft);
}

.pricing-flow__num {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  background: rgba(37, 99, 235, 0.12);
}

.pricing-calc {
  position: relative;
}

.pricing-calc__popover {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 6;
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: #fff;
  box-shadow: var(--ds-shadow-sm);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ds-color-ink-soft);
}

.pricing-calc__popover.is-hidden {
  display: none;
}

.pricing-calc__sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 10px var(--gutter) max(10px, env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px rgba(15, 23, 42, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.pricing-calc__sticky.is-hidden {
  display: none;
}

.pricing-calc__sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
}

.pricing-calc__sticky-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-calc__sticky-value {
  font-size: 1.25rem;
  font-weight: 950;
  color: var(--mint-3);
  font-variant-numeric: tabular-nums;
}

.pricing-calc__sticky-order {
  min-height: 44px;
  padding-inline: 18px;
  white-space: nowrap;
}

body.has-calc-sticky {
  padding-bottom: 76px;
}

.faq-section {
  margin: 20px 0;
}

.faq-list {
  display: grid;
  gap: clamp(24px, 3vw, 32px);
  max-width: 52rem;
  margin: 18px auto 0;
}

.faq-group {
  display: grid;
  gap: 10px;
}

.faq-group__title {
  margin: 0;
  padding: 0 4px 0 12px;
  font-size: clamp(0.95rem, 0.4vw + 0.82rem, 1.05rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ds-color-ink, #0f172a);
  border-left: 3px solid var(--mint-2);
}

.faq-group__items {
  display: grid;
  gap: 10px;
}

.faq-item {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border-mint-soft);
  background: linear-gradient(
    165deg,
    color-mix(in srgb, #2563eb 4%, #ffffff) 0%,
    var(--surface-mint-soft-2) 100%
  );
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-item summary {
  padding: 14px 16px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  transition: background 0.2s ease;
}

.faq-item summary:hover {
  background: color-mix(in srgb, #2563eb 5%, #ffffff);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] {
  border-color: color-mix(in srgb, var(--mint-2) 22%, rgba(37, 99, 235, 0.22));
  background: linear-gradient(
    165deg,
    color-mix(in srgb, #2563eb 5%, #ffffff) 0%,
    color-mix(in srgb, var(--mint) 4%, #f4f8fd) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 4px 16px color-mix(in srgb, var(--mint-2) 12%, transparent);
}

.faq-item[open]::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--mint) 0%, var(--mint-2) 100%);
}

.faq-item[open] summary {
  border-bottom: 1px solid color-mix(in srgb, var(--mint-2) 16%, rgba(15, 23, 42, 0.08));
  background: color-mix(in srgb, #2563eb 3%, #ffffff);
}

.faq-item p {
  margin: 0;
  padding: 12px 16px 14px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.final-cta .social-proof-mini {
  margin-top: 18px;
  max-width: 36rem;
  color: var(--muted);
}

.final-cta .social-proof-mini strong {
  color: var(--text);
}

.final-cta > div > p {
  color: var(--muted);
}

.label-optional {
  font-size: 12px;
  font-weight: 650;
  color: var(--muted-2);
}

.cta-form.is-highlighted {
  outline: 3px solid rgba(37, 99, 235, 0.45);
  outline-offset: 4px;
  border-radius: 18px;
  transition: outline-color 0.2s ease;
}

@media (min-width: 881px) {
  .pricing-calc__sticky {
    display: none !important;
  }

  body.has-calc-sticky {
    padding-bottom: 0;
  }
}

@media (max-width: 880px) {
  .hero-journey {
    grid-template-columns: 1fr;
  }

  .how-steps__list {
    grid-template-columns: 1fr;
  }

  .how-steps__paths {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer__nav {
    flex-wrap: wrap;
    gap: 8px 14px;
  }
}

/* —— Premium design pass (2026-05) —— */
:root {
  --bg: #f4f9fc;
  --bg-2: #e8f0f6;
  --surface-soft: #f0f6fa;
  --ds-color-bg: #f4f9fc;
  --ds-color-surface-muted: #f0f6fa;
  --ds-accent-soft: #ecfdf5;
  --ds-mint: #6ef0c3;
}

body {
  background:
    radial-gradient(ellipse 120% 80% at 100% -20%, rgba(37, 99, 235, 0.07), transparent 52%),
    radial-gradient(ellipse 90% 60% at 0% 0%, rgba(110, 240, 195, 0.06), transparent 48%),
    var(--ds-color-bg);
}

.site-header {
  border-bottom-color: rgba(37, 99, 235, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.hero {
  border-radius: clamp(20px, 3vw, 28px);
  background:
    radial-gradient(circle at 88% 8%, rgba(37, 99, 235, 0.1), transparent 42%),
    radial-gradient(circle at 4% 92%, rgba(110, 240, 195, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(244, 249, 252, 0.35) 72%, transparent 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.hero h1 {
  font-weight: 900;
  color: var(--ds-color-ink);
}

.lead {
  color: var(--ds-color-ink-soft);
  max-width: 36rem;
}

.eyebrow {
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
}

.hero-journey {
  gap: 12px;
  margin-top: 22px;
  padding: 4px;
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: rgba(255, 255, 255, 0.55);
}

.hero-journey__path {
  position: relative;
  padding: 14px 16px 14px 18px;
  border-radius: 16px;
  border-color: transparent;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(16, 24, 40, 0.05);
}

.hero-journey__path::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ds-color-primary), var(--ds-mint));
}

.hero-journey__path:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
}

.hero-journey__action {
  font-size: 15px;
}

.hero-pricing-teaser__badge {
  background: rgba(110, 240, 195, 0.22);
  border-color: rgba(37, 99, 235, 0.14);
  color: #0f4c9e;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 750;
  color: var(--ds-color-ink-soft);
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.04);
}

.trust-item .check {
  width: 22px;
  height: 22px;
  font-size: 11px;
  background: rgba(110, 240, 195, 0.35);
  border-color: rgba(37, 99, 235, 0.16);
  color: var(--ds-color-primary-strong);
}

.bottleneck-card,
#modules-grid .module-card {
  border-radius: 20px;
  transition: transform 0.18s var(--ds-ease), box-shadow 0.18s var(--ds-ease), border-color 0.18s var(--ds-ease);
}

.bottleneck-card:hover,
#modules-grid .module-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.22);
}

.how-steps__item {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.final-cta {
  color: #ffffff;
  border: 1px solid rgba(110, 240, 195, 0.22);
  background:
    radial-gradient(circle at 92% 0%, rgba(110, 240, 195, 0.18), transparent 38%),
    linear-gradient(145deg, #1d4ed8 0%, #2563eb 42%, #0f172a 100%);
  box-shadow:
    0 28px 64px rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.final-cta::after {
  border-color: rgba(255, 255, 255, 0.12);
}

.final-cta h2 {
  color: #ffffff;
}

.final-cta > div > p,
.final-cta p {
  color: rgba(248, 250, 252, 0.9);
}

.final-cta .social-proof-mini {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 23, 42, 0.28);
  color: rgba(248, 250, 252, 0.9);
}

.final-cta .social-proof-mini p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(248, 250, 252, 0.92);
}

.final-cta .social-proof-mini strong {
  color: #ffffff;
}

.final-cta .social-proof-stars {
  color: var(--ds-mint);
}

.cta-form {
  padding: clamp(18px, 3vw, 22px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(7, 19, 29, 0.18);
}

.cta-form label {
  color: rgba(248, 250, 252, 0.92);
  font-weight: 750;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ds-color-ink);
  box-shadow: 0 4px 14px rgba(7, 19, 29, 0.08);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: #94a3b8;
}

.cta-form__scope-note {
  color: rgba(248, 250, 252, 0.78);
}

.cta-form__scope-note a {
  color: var(--ds-mint);
}

.cta-form .btn-light {
  min-height: 52px;
  font-size: 15px;
  background: #ffffff;
  color: var(--ds-color-primary-strong);
  border-color: #ffffff;
  box-shadow: 0 14px 32px rgba(7, 19, 29, 0.2);
}

.cta-form .btn-light:hover {
  background: #f8fafc;
  color: #1d4ed8;
}

.cta-form .btn-ghost-light {
  color: rgba(248, 250, 252, 0.92);
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.cta-form .form-status {
  color: rgba(248, 250, 252, 0.72);
}

.btn-primary {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
}

@media (max-width: 880px) {
  .hero {
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    border-radius: 0;
    background:
      radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.08), transparent 46%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 88%);
    box-shadow: none;
  }

  .hero h1 {
    font-size: clamp(2rem, 8.8vw, 2.65rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-journey {
    max-width: none;
    grid-template-columns: 1fr;
    background: transparent;
    border: 0;
    padding: 0;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }

  .cta-form {
    min-width: 0;
  }
}

@media (min-width: 881px) {
  .header-actions .btn-primary {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 14px;
  }
}

/* —— Einheitliche Section-Hüllen (Premium-Konsistenz) —— */
.page > .section-card,
.page > .module-section {
  margin-top: var(--ds-section-gap);
}

.page > .section-card,
.module-section > .section-card {
  padding: clamp(24px, 3.4vw, 48px) clamp(20px, 3vw, 40px);
  border-radius: 28px;
  border: 1px solid var(--ds-color-border);
  background: #ffffff;
  box-shadow: var(--ds-shadow-sm);
}

.page > .section-card.section-card--plain,
.page > .faq-section.section-card {
  box-shadow: var(--ds-shadow-sm);
}

.module-section {
  margin-top: var(--ds-section-gap);
}

.module-section > .section-card {
  margin-top: 0;
}

/* Innere Karten: leichter als die Section-Hülle */
.how-steps__item {
  border-radius: 18px;
  border: 1px solid var(--ds-color-border);
  background: var(--ds-color-surface-muted);
  box-shadow: none;
}

.faq-item {
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.how-steps__item {
  background: linear-gradient(180deg, #ffffff 0%, var(--ds-color-surface-muted) 100%);
}

.bottleneck-card,
.module-card {
  border-radius: 20px;
  box-shadow: none;
}

.bottleneck-card:hover,
.module-card:hover {
  box-shadow: var(--ds-shadow-xs);
}

/* Bewusste Ausnahmen: Hero offen, Kontakt als Akzent-Band */
.page > .hero {
  border: 0;
  box-shadow: none;
}

.page > .final-cta {
  margin-top: var(--ds-section-gap);
  border-radius: 28px;
}

/* —— Bestell-Modal (Checkout) —— */
.pricing-checkout-modal__panel {
  display: flex;
  flex-direction: column;
  width: min(560px, calc(100vw - 28px));
  max-height: min(calc(100vh - 100px), calc(100dvh - 100px));
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 32px 80px rgba(15, 23, 42, 0.28);
  overflow: hidden;
}

.pricing-checkout-modal__panel::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #2563eb 0%, #6ef0c3 100%);
}

.pricing-checkout__inner {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: clamp(20px, 3vw, 28px);
}

.pricing-checkout__toolbar {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ds-color-border);
}

.pricing-checkout__step-label {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--ds-color-primary-strong);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.pricing-checkout__title {
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.pricing-checkout__dismiss {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  color: var(--ds-color-ink-soft);
  background: var(--ds-color-surface-muted);
  border-color: transparent;
}

.pricing-checkout__dismiss:hover {
  color: var(--ds-color-ink);
  background: #ffffff;
  border-color: var(--ds-color-border);
}

.pricing-checkout-modal .cta-order-summary {
  margin-bottom: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border-mint-soft);
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--mint) 12%, #ffffff) 0%,
    #f2fbf8 50%,
    #ecfdf5 100%
  );
}

.cta-order-summary__kicker {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ds-color-primary-strong);
}

.cta-order-summary__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cta-order-summary__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
  font-size: 13px;
  line-height: 1.45;
}

.cta-order-summary__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cta-order-summary__row:first-child {
  padding-top: 0;
}

.cta-order-summary__label {
  flex: 0 0 42%;
  font-weight: 700;
  color: var(--ds-color-ink-soft);
}

.cta-order-summary__value {
  flex: 1 1 auto;
  text-align: right;
  font-weight: 650;
  color: var(--ds-color-ink);
}

.cta-order-summary__value strong {
  font-weight: 900;
  color: var(--ds-color-primary-strong);
  font-size: 1.05em;
}

.cta-order-summary__row--price {
  margin-top: 4px;
  padding: 12px 14px;
  border: 0;
  border-radius: 14px;
  background: color-mix(in srgb, var(--mint) 8%, #ffffff);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--mint-2) 18%, transparent);
}

.cta-order-summary__row--price .cta-order-summary__label {
  color: var(--ds-color-ink);
  font-weight: 800;
}

.cta-order-summary__row--highlight .cta-order-summary__value {
  color: #0a8f6e;
  font-weight: 800;
}

.cta-order-summary__fine {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(37, 99, 235, 0.15);
  font-size: 11px;
  line-height: 1.5;
  color: var(--ds-color-ink-soft);
}

.cta-order-summary__muted {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
}

.pricing-checkout__section-label {
  margin: 6px 0 2px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ds-color-muted);
}

.pricing-checkout__form {
  gap: 14px;
}

.pricing-checkout__field {
  gap: 7px;
  font-size: 13px;
  font-weight: 750;
  color: var(--ds-color-ink-soft);
}

.pricing-checkout__field input,
.pricing-checkout__field select,
.pricing-checkout__field textarea {
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid var(--ds-color-border);
  background: #ffffff;
  padding: 13px 15px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(16, 24, 40, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pricing-checkout__field textarea {
  min-height: 88px;
  font-weight: 450;
  line-height: 1.5;
}

.pricing-checkout__field input::placeholder,
.pricing-checkout__field textarea::placeholder {
  color: #94a3b8;
  font-weight: 450;
}

.pricing-checkout__field input:focus,
.pricing-checkout__field select:focus,
.pricing-checkout__field textarea:focus {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.pricing-checkout__legal {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 11px;
  line-height: 1.55;
  color: var(--ds-color-ink-soft);
  background: var(--ds-color-surface-muted);
  border: 1px solid var(--ds-color-border);
}

.pricing-checkout__submit {
  min-height: 54px;
  margin-top: 4px;
  font-size: 15px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.32);
}

.pricing-checkout__status {
  text-align: center;
  font-size: 11px;
}

.pricing-checkout__field-row {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 12px;
}

@media (max-width: 480px) {
  .cta-order-summary__row {
    flex-direction: column;
    gap: 4px;
  }

  .cta-order-summary__value {
    text-align: left;
  }
}

/* —— Header: professional pass —— */
.site-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  backdrop-filter: blur(16px) saturate(1.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 4px 24px rgba(15, 23, 42, 0.05);
}

@media (min-width: 1025px) {
  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(16px, 2.5vw, 32px);
    min-height: 80px;
    padding: 10px 0;
  }

  .brand {
    justify-self: start;
    max-width: none;
  }

  .nav-links {
    justify-self: center;
  }

  .header-actions {
    justify-self: end;
  }
}

.brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  max-width: none;
  min-height: auto;
}

.brand-logo {
  height: clamp(24px, 2.2vw, 28px);
  max-width: min(100%, 168px);
}

.brand-divider {
  display: none;
}

.brand-tagline {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ds-color-ink-soft, #475569);
  white-space: nowrap;
  line-height: 1.2;
}

.brand-tagline .accent-suite {
  color: var(--ds-mint, #6ef0c3);
  font-weight: 800;
}

.nav-links {
  gap: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ds-color-ink-soft, #475569);
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 10px;
  color: inherit;
  transition:
    color 0.15s var(--ds-ease, ease),
    background-color 0.15s var(--ds-ease, ease);
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ds-color-primary, #2563eb);
  background: rgba(37, 99, 235, 0.07);
}

.nav-links__mobile-cta {
  display: none;
}

.header-login {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--ds-color-ink-soft, #475569);
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.15s var(--ds-ease, ease),
    background-color 0.15s var(--ds-ease, ease);
}

.header-login:hover,
.header-login:focus-visible {
  color: var(--ds-color-primary, #2563eb);
  background: rgba(37, 99, 235, 0.07);
}

.header-actions {
  gap: 8px;
}

.btn-header-cta {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.btn-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

.menu-btn {
  border-color: rgba(15, 23, 42, 0.1);
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.menu-btn:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

@media (max-width: 1024px) {
  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 10px 0;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 8px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 20px 48px rgba(15, 23, 42, 0.12),
      0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  }

  .nav-links.is-open,
  .nav-wrap:focus-within .nav-links,
  .nav-wrap:has(.menu-btn:focus) .nav-links {
    display: flex;
    max-height: min(72vh, 24rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav-links a {
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
  }

  .nav-links__mobile-cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-top: 6px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .header-actions .btn-header-cta {
    display: none;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    max-width: 140px;
  }

  .brand-tagline {
    font-size: 9px;
  }
}

/* —— Site chrome: Footer (Plancraft-inspiriert, dunkel, spaltenbasiert) —— */
.site-footer {
  margin: clamp(32px, 5vw, 56px) 0 0;
  padding: clamp(48px, 6vw, 72px) 0 clamp(20px, 3vw, 28px);
  border: 0;
  background: #0f1419;
  color: rgba(248, 250, 252, 0.88);
  box-shadow: none;
}

.site-footer__shell {
  width: min(var(--container, 1420px), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
}

.site-footer__card {
  position: relative;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.site-footer__card::after {
  content: none;
}

.site-footer__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: clamp(28px, 4vw, 40px);
  text-decoration: none;
  border-radius: 10px;
}

.site-footer__brand:focus-visible {
  outline: 2px solid rgba(110, 240, 195, 0.45);
  outline-offset: 4px;
}

.site-footer__brand .brand-logo {
  height: clamp(26px, 2.4vw, 32px);
  max-width: min(100%, 168px);
}

.brand-logo--on-dark {
  filter:
    drop-shadow(0 0 10px rgba(0, 255, 179, 0.14))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.06));
}

.site-footer__brand .brand-tagline {
  margin: 0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.55);
}

.site-footer__brand .brand-tagline .accent-suite {
  color: var(--mint, #00ffb3);
  font-weight: 850;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3.5vw, 40px);
  padding-bottom: clamp(28px, 4vw, 36px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__col--contact {
  padding-right: clamp(8px, 2vw, 20px);
}

.site-footer__claim {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 1.6vw + 0.9rem, 1.85rem);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.site-footer__contact-link {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(248, 250, 252, 0.92);
  text-decoration: none;
  transition: color 0.15s var(--ds-ease, ease);
}

.site-footer__contact-link:hover,
.site-footer__contact-link:focus-visible {
  color: var(--mint, #00ffb3);
}

.site-footer__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(248, 250, 252, 0.48);
}

.site-footer__grid .site-footer__heading {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.01em;
  color: #2563eb;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.site-footer__list a {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(248, 250, 252, 0.58);
  text-decoration: none;
  transition: color 0.15s var(--ds-ease, ease);
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible {
  color: var(--mint, #00ffb3);
}

.site-footer__list a[aria-current="page"] {
  color: var(--mint, #00ffb3);
  font-weight: 750;
}

.site-footer__meta {
  padding: clamp(18px, 2.5vw, 22px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__meta-text {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
  color: rgba(248, 250, 252, 0.48);
}

.site-footer__heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin: 0 1px;
  vertical-align: -0.12em;
  color: var(--mint, #00ffb3);
}

.site-footer__heart svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-footer__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 12px;
  margin: 0 2px;
  vertical-align: -0.08em;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.site-footer__flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding-top: clamp(18px, 2.5vw, 22px);
}

.site-footer__copy {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
  color: rgba(248, 250, 252, 0.42);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13px;
  font-weight: 650;
}

.site-footer__legal a {
  color: rgba(248, 250, 252, 0.58);
  text-decoration: none;
  transition: color 0.15s var(--ds-ease, ease);
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--mint, #00ffb3);
}

.site-footer__legal a[aria-current="page"] {
  color: var(--mint, #00ffb3);
}

@media (max-width: 1080px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__col--contact {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }
}

@media (max-width: 520px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* —— Motion upgrade: mehr Tiefe, Stagger, Micro-Interactions —— */
@keyframes heroStaggerIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroKickerIn {
  from {
    transform: translate3d(0, 12px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes kickerSlideIn {
  from {
    opacity: 0;
    transform: translate3d(-10px, 0, 0);
    letter-spacing: 0.12em;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    letter-spacing: 0.08em;
  }
}

@keyframes faqContentIn {
  from {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  /* Kicker nur leicht einfahren – ohne opacity (Logo bleibt immer sichtbar) */
  .hero-copy > .hero-kicker {
    animation: heroKickerIn 0.62s cubic-bezier(0.2, 0.8, 0.2, 1) 0.04s both;
  }

  .hero-copy > h1 {
    animation: heroStaggerIn 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards;
  }

  .hero-copy > .lead {
    animation: heroStaggerIn 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) 0.18s forwards;
  }

  .hero-copy > .hero-actions {
    animation: heroStaggerIn 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) 0.26s forwards;
  }

  .hero-copy > .hero-cta-hint {
    animation: heroStaggerIn 0.68s cubic-bezier(0.2, 0.8, 0.2, 1) 0.34s forwards;
  }

  .hero-device.hero-device-duo {
    transform: translate3d(0, calc(var(--hero-parallax, 0) * 1px), 0);
    will-change: transform;
  }

  .hero-device-frame {
    animation: dashboardFloat 11s ease-in-out infinite;
  }

  .hero-phone-shell--light {
    animation: nodeFloat 7.5s ease-in-out infinite;
    animation-delay: -1.4s;
  }

  .hero-device-img,
  .hero-phone-img {
    transition:
      opacity 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .hero-device-img.is-fading,
  .hero-phone-img.is-fading {
    opacity: 0;
    transform: scale(0.985);
  }

  .hero-module-segment .hero-device-thumb {
    transition:
      transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
      color 0.22s ease,
      box-shadow 0.22s ease,
      background-color 0.22s ease;
  }

  .hero-module-segment .hero-device-thumb:hover {
    transform: translateY(-1px);
  }

  .hero-module-segment .hero-device-thumb.is-active {
    transform: none;
  }

  .motion-ready .section-head.is-visible .section-kicker {
    animation: kickerSlideIn 0.62s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .motion-ready .how-steps__list .how-steps__item.motion-reveal:nth-child(1) {
    transition-delay: 0ms;
  }

  .motion-ready .how-steps__list .how-steps__item.motion-reveal:nth-child(2) {
    transition-delay: 140ms;
  }

  .motion-ready .how-steps__list .how-steps__item.motion-reveal:nth-child(3) {
    transition-delay: 280ms;
  }

  .motion-ready .faq-group__items .faq-item.motion-reveal {
    transition-delay: calc(var(--motion-index, 0) * 70ms);
  }

  .bottleneck-card,
  .module-card,
  .how-steps__item,
  .pricing-block,
  .faq-item {
    transition:
      transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
      border-color 0.28s ease,
      box-shadow 0.28s ease;
  }

  .bottleneck-card:hover {
    transform: translateY(-4px);
  }

  .module-card:hover {
    transform: translateY(-4px);
  }

  .how-steps__item:hover {
    transform: translateY(-2px);
    box-shadow: var(--ds-shadow-xs);
  }

  .faq-item summary {
    position: relative;
    padding-right: 42px;
    transition: color 0.2s ease;
  }

  .faq-item summary::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 700;
    color: #0f766e;
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.2s ease;
  }

  .faq-item[open] summary::after {
    color: var(--mint-3, #2563eb);
    transform: translateY(-50%) rotate(45deg);
  }

  .faq-item[open] p {
    animation: faqContentIn 0.34s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .site-header {
    transition:
      box-shadow 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
      border-color 0.28s ease,
      background-color 0.28s ease;
  }

  .site-header.is-scrolled {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      0 10px 36px rgba(15, 23, 42, 0.08);
    border-bottom-color: rgba(15, 23, 42, 0.1);
  }
}

/* —— Blog —— */
.blog-page {
  padding-top: clamp(20px, 3.5vw, 40px);
  padding-bottom: clamp(48px, 7vw, 96px);
}

.blog-index__head {
  max-width: min(42rem, 100%);
  margin-inline: auto;
  text-align: center;
}

.blog-index__intro {
  margin: clamp(12px, 2vw, 18px) auto 0;
  max-width: 36rem;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ds-color-ink-soft, #475569);
}

.blog-grid {
  display: grid;
  gap: clamp(14px, 2vw, 18px);
  margin-top: clamp(24px, 3.5vw, 36px);
}

@media (min-width: 720px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(18px, 2.5vw, 22px);
  border-radius: 20px;
  border: 1px solid var(--ds-color-border);
  background: var(--ds-color-surface-muted);
  transition: transform 0.2s var(--ds-ease), border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: var(--ds-shadow-xs);
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 12px;
  font-weight: 750;
  color: var(--ds-color-muted);
}

.blog-card__tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ds-color-primary-strong);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.blog-card__title {
  margin: 0;
  font-size: clamp(1.05rem, 1vw + 0.85rem, 1.22rem);
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--ds-color-ink);
}

.blog-card__title a {
  color: inherit;
}

.blog-card__title a:hover {
  color: var(--ds-color-primary);
}

.blog-card__excerpt {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.58;
  color: var(--ds-color-ink-soft);
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 850;
  color: var(--ds-color-primary);
}

.blog-article {
  width: 100%;
  max-width: min(42rem, 100%);
  margin-inline: auto;
}

.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: clamp(10px, 1.5vw, 16px);
  font-size: 13px;
  font-weight: 750;
  color: var(--ds-color-muted);
}

.blog-article h2 {
  margin: clamp(28px, 3.5vw, 36px) 0 12px;
  font-size: clamp(1.15rem, 1.2vw + 0.9rem, 1.38rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.22;
  color: var(--ds-color-ink);
}

.blog-article h2:first-of-type {
  margin-top: clamp(20px, 2.5vw, 28px);
}

.blog-article p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ds-color-ink-soft);
}

.blog-article ul,
.blog-article ol {
  margin: 0 0 16px;
  padding-left: 1.25rem;
  font-size: 16px;
  line-height: 1.62;
  color: var(--ds-color-ink-soft);
}

.blog-article li + li {
  margin-top: 8px;
}

.blog-article li strong {
  color: var(--ds-color-ink);
}

.blog-article__cta {
  margin-top: clamp(28px, 4vw, 40px);
  padding: clamp(18px, 2.5vw, 24px);
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, rgba(37, 99, 235, 0.04) 100%);
}

.blog-article__cta h2 {
  margin-top: 0;
  font-size: clamp(1.05rem, 1vw + 0.85rem, 1.2rem);
}

.blog-article__cta p:last-child {
  margin-bottom: 0;
}

.blog-article__back {
  margin-top: clamp(24px, 3vw, 32px);
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid var(--line);
}

/* Hero-Kicker: typografisch, ohne Badge */
.hero-kicker {
  display: grid;
  gap: 8px;
  margin: 0 0 clamp(18px, 2.8vw, 26px);
  padding: 0;
  max-width: min(38rem, 100%);
  opacity: 1;
}

.hero-kicker__logo-wrap {
  display: block;
  width: min(320px, 78vw);
  margin: 0;
  line-height: 0;
}

.hero-kicker__logo {
  display: block;
  width: 100%;
  height: auto;
  min-height: 48px;
  margin: 0;
  object-fit: contain;
  object-position: left center;
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
}

.hero-kicker__product {
  margin: -2px 0 0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-kicker__product .accent-suite {
  color: var(--mint, #00ffb3);
  font-weight: inherit;
}

.hero-kicker__tagline {
  margin: 0;
  font-size: clamp(15px, 0.55vw + 13px, 17px);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--ds-color-ink-soft, #475569);
}

@media (max-width: 620px) {
  .hero-kicker {
    gap: 6px;
    margin-bottom: 16px;
  }

  .hero-kicker__logo-wrap {
    width: min(260px, 84vw);
  }

  .hero-kicker__product {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero-kicker__tagline {
    font-size: 14px;
    line-height: 1.45;
  }
}

/* Module filter tabs — nur in der Modul-Section */
#module-filter-tabs.module-filter-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  max-width: 420px;
  margin: clamp(18px, 2.4vw, 24px) auto clamp(20px, 2.6vw, 28px);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

#module-filter-tabs .tab-btn.is-active {
  color: #ffffff;
  background: #2563eb;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.28);
}

/* Module grid — gleiches Kartenlayout wie Engpass-Finder */
#modules-grid.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.5vw, 16px);
  margin-top: 0;
}

@media (min-width: 640px) {
  #modules-grid.modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  #modules-grid.modules-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

#modules-grid .module-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0;
  min-height: 236px;
  padding: 22px 20px 0;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

/* Filter-Tabs: ausgeblendete Karten wirklich verstecken */
#modules-grid .module-card.is-hidden {
  display: none;
}

#modules-grid .module-card-core {
  border-color: rgba(37, 99, 235, 0.16);
  background: var(--surface-solid);
}

#modules-grid .module-card h3 {
  margin: 0;
}

#modules-grid .module-card p {
  margin: 8px 0 0;
  flex: 0 0 auto;
}

/* Footer im Flex-Flow statt absolute — verhindert Überlappung mit Titel */
#modules-grid .module-card .module-tag {
  position: static;
  inset: auto;
  flex-shrink: 0;
  margin: 18px -20px 0;
  width: calc(100% + 40px);
  min-height: 56px;
  cursor: default;
}

#modules-grid .module-card .module-tag.module-card__calc-btn {
  cursor: pointer;
  margin-top: auto;
  margin-bottom: 0;
  margin-left: -20px;
  margin-right: -20px;
  font: inherit;
  text-align: left;
  text-decoration: none;
  width: calc(100% + 40px);
  -webkit-appearance: none;
  appearance: none;
}

#modules-grid .module-card .module-tag span:first-child {
  min-width: 0;
  line-height: 1.35;
}

#modules-grid .module-card .module-tag strong {
  display: inline;
  font-size: 15px;
  letter-spacing: -0.03em;
}

#modules-grid .module-card .module-tag.module-card__calc-btn:hover,
#modules-grid .module-card .module-tag.module-card__calc-btn:focus-visible {
  background: color-mix(in srgb, var(--mint-3) 6%, var(--surface-soft));
  outline: none;
}

#modules-grid .module-tag--included {
  justify-content: flex-start;
  margin-top: auto;
}

#modules-grid .module-tag--included strong {
  display: block;
  font-size: 16px;
  letter-spacing: -0.03em;
}

/* —— Modul-Suite-Stack —— */
/* Klare Hierarchie: Basis-Hero oben, dann Gruppen "Betrieb" und "Wachstum" als Karten-Reihen */
.module-solution-card {
  --suite-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --suite-blue: #2563eb;
  --suite-blue-soft: rgba(37, 99, 235, 0.08);
  --suite-teal: #0f766e;
  --suite-teal-soft: rgba(13, 148, 136, 0.08);
}

.suite-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
}

@media (min-width: 921px) {
  .suite-layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 320px);
  }
}

.suite-stack {
  display: grid;
  gap: clamp(12px, 1.4vw, 16px);
}

.suite-stack__hidden-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
}

/* —— Basis-Hero (kompakte Pille) —— */
.suite-node--core {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 18px;
  background: linear-gradient(135deg, #f1f6ff 0%, #ffffff 65%);
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.04),
    0 8px 22px rgba(37, 99, 235, 0.08);
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
  transition: box-shadow 0.2s var(--suite-ease), border-color 0.2s;
}

.suite-node--core:hover,
.suite-node--core:focus-visible {
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.08),
    0 18px 42px rgba(37, 99, 235, 0.16);
  outline: none;
}

.suite-node--core.is-active {
  border-color: rgba(37, 99, 235, 0.36);
}

.suite-node--core .suite-node__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--suite-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.suite-node--core .suite-node__icon .ui-icon {
  width: 22px;
  height: 22px;
}

.suite-node__core-text {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
}

.suite-node--core .suite-node__label {
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.suite-node--core .suite-node__hint {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.3;
  font-weight: 500;
}

.suite-node__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--suite-blue);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s var(--suite-ease);
}

.suite-node--core:hover .suite-node__chevron,
.suite-node--core.is-active .suite-node__chevron {
  background: var(--suite-blue);
  color: #fff;
  transform: translateX(2px);
}

.suite-node__chevron .ui-icon {
  width: 16px;
  height: 16px;
}

.suite-node__badge {
  position: absolute;
  top: -8px;
  left: 16px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--mint);
  color: #0f172a;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(0, 255, 179, 0.32);
}

/* —— Modul-Reihe (alle 6 gleichwertig) —— */
.suite-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

@media (min-width: 540px) {
  .suite-modules {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 820px) {
  .suite-modules {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
  }
}

/* —— Modul-Karten (Icon-Tile) —— */
.suite-stack .suite-node:not(.suite-node--core) {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 12px 12px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 14px;
  background: var(--surface-solid);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: transform 0.2s var(--suite-ease), box-shadow 0.2s, border-color 0.2s, background 0.2s;
  min-height: 108px;
}

.suite-stack .suite-node:not(.suite-node--core)::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.5);
  opacity: 0;
  transition: opacity 0.2s;
}

.suite-stack .suite-node:not(.suite-node--core).is-active::after,
.suite-stack .suite-node:not(.suite-node--core):hover::after {
  opacity: 1;
}


.suite-stack .suite-node:not(.suite-node--core):hover,
.suite-stack .suite-node:not(.suite-node--core):focus-visible {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.14);
  outline: none;
}

.suite-stack .suite-node:not(.suite-node--core).is-active {
  border-color: rgba(37, 99, 235, 0.55);
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.18);
}

.suite-stack .suite-node:not(.suite-node--core) .suite-node__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--suite-blue-soft);
  color: var(--suite-blue);
}

.suite-stack .suite-node:not(.suite-node--core) .suite-node__icon .ui-icon {
  width: 20px;
  height: 20px;
}

.suite-stack .suite-node:not(.suite-node--core) .suite-node__label {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin-top: auto;
}

.suite-stack .suite-node__tag {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  line-height: 1.35;
}

@media (prefers-reduced-motion: reduce) {
  .suite-node--core,
  .suite-stack .suite-node:not(.suite-node--core),
  .suite-node__chevron {
    transition: none;
  }

  .suite-stack .suite-node:hover {
    transform: none;
  }
}

/* —— Detail-Panel rechts —— */
.suite-detail {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fafbfd;
  min-height: 280px;
  position: sticky;
  top: clamp(96px, 12vw, 130px);
}

@media (max-width: 920px) {
  .suite-detail {
    position: static;
    min-height: 0;
  }
}

.suite-detail__kicker {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--suite-blue);
}

.suite-detail__title {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.suite-detail__desc {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.suite-detail__meta {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 12px;
  border-radius: 12px;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  font-size: 13px;
}

.suite-detail__meta dt {
  font-weight: 700;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.suite-detail__meta dd {
  margin: 2px 0 0;
  color: var(--text);
}

.suite-detail__cta {
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 559px) {
  .suite-node--core {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon text"
      "chevron chevron";
    padding: 18px 18px;
  }

  .suite-node--core .suite-node__icon {
    grid-area: icon;
    width: 48px;
    height: 48px;
  }

  .suite-node__core-text {
    grid-area: text;
  }

  .suite-node__chevron {
    grid-area: chevron;
    justify-self: end;
    margin-top: 6px;
  }
}

/* ============================================================
 * FANCY EXTRAS — Premium polish layer
 *   1. Mesh background + grain
 *   2. Reveal-on-scroll (stagger via --reveal-delay)
 *   3. Magnetic CTA shimmer
 *   4. Custom cursor
 *   5. Floating side TOC
 *   6. Sticky hero visual (desktop)
 *   7. Engpass-Diagnose tool (sliders + pulse-ring)
 * ============================================================ */

/* --- 1. Mesh + grain ----------------------------------------- */
/* Make body transparent so the mesh (fixed, z-index:-1) shows
   through. html keeps var(--bg) as solid fallback. */
body {
  background: transparent;
}

.fancy-bg,
.fancy-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.fancy-bg {
  inset: -10vmax;
  background:
    radial-gradient(46rem 32rem at 12% 8%, rgba(37, 99, 235, 0.20), transparent 60%),
    radial-gradient(36rem 32rem at 92% 4%, rgba(0, 230, 161, 0.16), transparent 60%),
    radial-gradient(40rem 36rem at 70% 88%, rgba(37, 99, 235, 0.12), transparent 65%),
    radial-gradient(28rem 28rem at 6% 92%, rgba(255, 200, 130, 0.10), transparent 70%);
  filter: blur(48px) saturate(1.1);
  animation: fancyMesh 28s var(--ds-ease) infinite alternate;
}

@keyframes fancyMesh {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1); }
  50%  { transform: translate3d(1%,  2%, 0) scale(1.04); }
  100% { transform: translate3d(2%, -2%, 0) scale(1); }
}

.fancy-grain {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
  opacity: 0.045;
  mix-blend-mode: multiply;
}

@media (prefers-reduced-motion: reduce) {
  .fancy-bg { animation: none; }
}

/* --- 2. Reveal-on-scroll ------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s var(--ds-ease) var(--reveal-delay, 0ms),
    transform 0.75s var(--ds-ease) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- 3. Magnetic CTA shimmer --------------------------------- */
.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary > * {
  position: relative;
  z-index: 1;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.32) 45%, rgba(255, 255, 255, 0.0) 60%);
  transform: translateX(-110%);
  transition: transform 0.9s var(--ds-ease);
  pointer-events: none;
  z-index: 0;
}

.btn-primary:hover::after,
.btn-primary:focus-visible::after {
  transform: translateX(110%);
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary::after { display: none; }
}

/* --- 4. Custom cursor ---------------------------------------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9000;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.25s var(--ds-ease);
}

.cursor-dot.is-ready,
.cursor-ring.is-ready {
  opacity: 1;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2563eb;
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: multiply;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1.5px solid rgba(37, 99, 235, 0.55);
  transform: translate3d(-50%, -50%, 0);
  transition:
    width 0.25s var(--ds-ease),
    height 0.25s var(--ds-ease),
    border-color 0.25s var(--ds-ease),
    background-color 0.25s var(--ds-ease),
    opacity 0.25s var(--ds-ease);
}

.cursor-ring.is-hover {
  width: 56px;
  height: 56px;
  background-color: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.8);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-dot,
  .cursor-ring { display: none !important; }
}

/* --- 5. Floating side TOC ------------------------------------ */
/* Default: thin rail (~28px wide). Expands to full pill on hover. */
.side-toc {
  position: fixed;
  left: clamp(6px, 0.6vw, 10px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 70;
  display: none;
  padding: 14px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
  transition:
    background-color 0.3s var(--ds-ease),
    border-color 0.3s var(--ds-ease),
    opacity 0.35s var(--ds-ease),
    transform 0.35s var(--ds-ease);
}

@media (min-width: 1100px) {
  .side-toc { display: block; }
}

/* Hide entirely when over a dark section (added via JS). */
.side-toc.is-hidden {
  opacity: 0;
  transform: translateY(-50%) translateX(-12px);
  pointer-events: none;
}

.side-toc__list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.side-toc__progress {
  position: absolute;
  left: 2px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.side-toc__progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--side-toc-progress, 0%);
  background: linear-gradient(180deg, #2563eb, #00e6a1);
  border-radius: 2px;
  transition: height 0.18s var(--ds-ease);
}

.side-toc__link {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 4px 0;
  position: relative;
}

.side-toc:hover .side-toc__link {
  gap: 10px;
  transition: gap 0.3s var(--ds-ease);
}

.side-toc__link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.22);
  flex-shrink: 0;
  transition: background-color 0.2s var(--ds-ease), transform 0.2s var(--ds-ease);
}

.side-toc__link:hover {
  color: var(--mint-3);
}

.side-toc__link:hover::before {
  background: rgba(37, 99, 235, 0.55);
}

.side-toc__item.is-active .side-toc__link {
  color: var(--mint-3);
}

.side-toc__item.is-active .side-toc__link::before {
  background: var(--mint-3);
  transform: scale(1.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

/* Labels only on hover of the whole rail — never on active alone. */
.side-toc__label {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  transition: max-width 0.3s var(--ds-ease), opacity 0.2s var(--ds-ease);
}

.side-toc:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.14);
}

.side-toc:hover .side-toc__label {
  max-width: 170px;
  opacity: 1;
}

/* --- 6. Sticky hero visual ----------------------------------- */
@media (min-width: 1024px) {
  .hero {
    align-items: start;
  }
  .hero-visual {
    position: sticky;
    top: clamp(96px, 12vw, 132px);
    align-self: start;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 1024px) {
  .hero-visual { position: static; }
}

/* --- 7. Engpass-Diagnose tool -------------------------------- */
.diagnose-tool {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.5vw, 40px);
  margin-top: clamp(24px, 3.5vw, 40px);
}

@media (min-width: 980px) {
  .diagnose-tool {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(36px, 4.5vw, 60px);
    align-items: center;
  }
}

.diagnose-tool__sliders {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diagnose-row {
  position: relative;
  padding: 16px 18px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  transition:
    border-color 0.25s var(--ds-ease),
    box-shadow 0.25s var(--ds-ease),
    transform 0.25s var(--ds-ease);
}

.diagnose-row.is-leading {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.14);
  transform: translateY(-1px);
}

.diagnose-row__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.diagnose-row__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--mint-3);
  flex-shrink: 0;
}

.diagnose-row__icon svg {
  width: 20px;
  height: 20px;
}

.diagnose-row__copy {
  flex: 1;
  min-width: 0;
}

.diagnose-row__label {
  margin: 0;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.diagnose-row__hint {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.diagnose-row__value {
  font-size: 13px;
  font-weight: 800;
  color: var(--mint-3);
  font-variant-numeric: tabular-nums;
  min-width: 38px;
  text-align: right;
  letter-spacing: -0.01em;
}

.diagnose-row__value small {
  color: var(--muted);
  font-weight: 700;
}

.diagnose-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  margin: 14px 0 0;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #2563eb 0%,
    #2563eb var(--fill, 30%),
    rgba(15, 23, 42, 0.09) var(--fill, 30%),
    rgba(15, 23, 42, 0.09) 100%
  );
  outline: none;
  cursor: pointer;
}

.diagnose-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #2563eb;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.32);
  cursor: grab;
  transition: transform 0.15s var(--ds-ease);
}

.diagnose-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.1);
}

.diagnose-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #2563eb;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.32);
  cursor: grab;
}

.diagnose-slider:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.4);
  outline-offset: 4px;
  border-radius: 999px;
}

.diagnose-tool__result {
  position: relative;
  padding: clamp(28px, 3.5vw, 40px) clamp(24px, 3vw, 36px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(244, 249, 252, 0.7)),
    radial-gradient(60% 60% at 50% 0%, rgba(37, 99, 235, 0.12), transparent 70%);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 24px 64px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
}

.pulse-ring-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
}

.pulse-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.pulse-ring__track {
  fill: none;
  stroke: rgba(15, 23, 42, 0.08);
  stroke-width: 12;
}

.pulse-ring__progress {
  fill: none;
  stroke: url(#pulseGrad);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 540;
  stroke-dashoffset: 540;
  transition: stroke-dashoffset 0.6s var(--ds-ease);
  filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.28));
}

.pulse-ring__center {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
}

.pulse-ring__kicker {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.pulse-ring__score {
  margin: 4px 0 0;
  font-size: clamp(48px, 6vw, 60px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--mint-3);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.pulse-ring__unit {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.diagnose-tool__rec-label {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.diagnose-tool__rec-name {
  margin: 4px 0 14px;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.025em;
  font-weight: 900;
  color: var(--text);
  transition: opacity 0.2s var(--ds-ease);
  min-height: 1.2em;
}

.diagnose-tool__rec-name.is-flash {
  animation: diagnoseFlash 0.45s var(--ds-ease);
}

@keyframes diagnoseFlash {
  0%   { opacity: 0.3; transform: translateY(-4px); }
  100% { opacity: 1;   transform: none; }
}

/* Multi-module badge row */
.diagnose-tool__rec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 4px 0 6px;
}

.diagnose-tool__rec-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--mint-3);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.diagnose-tool__rec-badge--lead {
  background: var(--mint-3);
  color: #fff;
  border-color: var(--mint-3);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
}

.diagnose-tool__rec-badge small {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
}

.diagnose-tool__rec-badge--lead small {
  opacity: 0.9;
}

.diagnose-tool__rec-hint {
  margin: 8px 0 16px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  max-width: 320px;
}

.diagnose-tool__rec-name--soft {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  font-weight: 800;
}

.diagnose-tool__cta {
  min-width: 220px;
}

.diagnose-tool__alt {
  margin-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px dashed var(--line);
  padding-top: clamp(20px, 2.5vw, 28px);
}

.diagnose-tool__alt > summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  color: var(--mint-3);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ds-ease);
}

.diagnose-tool__alt > summary::-webkit-details-marker { display: none; }

.diagnose-tool__alt > summary::after {
  content: "↓";
  display: inline-block;
  transition: transform 0.2s var(--ds-ease);
  font-size: 14px;
}

.diagnose-tool__alt[open] > summary::after {
  transform: rotate(180deg);
}

.diagnose-tool__alt[open] .bottleneck-grid {
  margin-top: 20px;
}
