/* ============================================================
   VOXR 2026 – Marketing Website
   Design: Dark-first, Glassmorphism, Bold Typography
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Brand colours */
  --vx-violet:       #7C3AED;
  --vx-violet-light: #A78BFA;
  --vx-blue:         #3B82F6;
  --vx-cyan:         #22D3EE;
  --vx-pink:         #EC4899;
  --vx-green:        #10B981;

  /* Gradient shorthands */
  --grad-brand: linear-gradient(135deg, var(--vx-violet) 0%, var(--vx-blue) 100%);
  --grad-text:  linear-gradient(135deg, #A78BFA 0%, #60A5FA 50%, #22D3EE 100%);
  --grad-glow:  radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.35) 0%, transparent 70%);

  /* Backgrounds */
  --bg-root:    #05050F;
  --bg-surface: #0E0E1E;
  --bg-card:    rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);

  /* Text */
  --text-primary:   #F1F0FF;
  --text-secondary: #94A3B8;
  --text-muted:     #4B5563;

  /* Borders */
  --border:       rgba(255,255,255,0.08);
  --border-hover: rgba(124,58,237,0.5);

  /* Misc */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-card:  0 0 0 1px var(--border), 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow:  0 0 60px rgba(124,58,237,0.25);
  --shadow-cyan:  0 0 40px rgba(34,211,238,0.2);

  --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1200px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* overflow-x: clip statt hidden, damit position: sticky in Nachfahren
     weiterhin funktioniert (hidden macht html zum Scroll-Container). */
  overflow-x: hidden;
  overflow-x: clip;
}
body {
  font-family: var(--font);
  background: var(--bg-root);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Typography ─────────────────────────────────────────────── */
.display-xl {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.display-lg {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.display-md {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.body-lg { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-secondary); line-height: 1.7; }
.body-sm { font-size: 0.9rem; color: var(--text-secondary); }
.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vx-violet-light);
}

/* Gradient text */
.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 4rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124,58,237,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.5);
  color: #fff;
}
.btn-ghost {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  color: var(--text-primary);
}
.btn-outline {
  background: transparent;
  color: var(--vx-violet-light);
  border: 1px solid rgba(167,139,250,0.4);
}
.btn-outline:hover {
  background: rgba(124,58,237,0.15);
  border-color: var(--vx-violet-light);
  transform: translateY(-2px);
  color: var(--vx-violet-light);
}
.btn svg, .btn .btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Badge / Pill ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(167,139,250,0.3);
  background: rgba(124,58,237,0.12);
  color: var(--vx-violet-light);
  font-size: 0.8rem;
  font-weight: 600;
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vx-violet-light);
  flex-shrink: 0;
}

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(5,5,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.6rem;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  transition: opacity var(--transition);
}
.nav__logo:hover { opacity: 0.85; }
.nav__logo img { height: 32px; width: auto; flex-shrink: 0; }
.nav__logo-text { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__links a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--text-primary);
  background: var(--bg-card);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.nav__toggle:hover { border-color: var(--border-hover); color: var(--text-primary); }
.nav__toggle svg { width: 20px; height: 20px; }

/* Dropdown menu */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-toggle {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
}
.nav__dropdown-toggle:hover,
.nav__dropdown.open .nav__dropdown-toggle {
  color: var(--text-primary);
  background: var(--bg-card);
}
.nav__dropdown-arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
}
.nav__dropdown.open .nav__dropdown-arrow {
  transform: rotate(180deg);
}
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: max-content;
  min-width: 220px;
  background: rgba(14,14,30,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 100;
}
.nav__dropdown.open .nav__dropdown-menu {
  display: block;
}
.nav__dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav__dropdown-menu a:hover,
.nav__dropdown-menu a.active {
  color: var(--text-primary);
  background: var(--bg-card);
}

/* ── Mega-menu (Was?) ──────────────────────────────────────── */
.nav__dropdown--mega {
  position: static;
}
.nav__mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 880px;
  background: rgba(14,14,30,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 100;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}
.nav__dropdown--mega.open .nav__mega-menu {
  display: grid;
}
.nav__mega-heading,
a.nav__mega-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vx-violet-light);
  padding: 0.4rem 0.75rem 0.5rem;
  margin-bottom: 0.15rem;
  text-decoration: none;
  display: block;
}
a.nav__mega-heading:hover {
  color: var(--text-primary);
  background: none;
}
.nav__mega-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav__mega-menu a:hover,
.nav__mega-menu a.active {
  color: var(--text-primary);
  background: var(--bg-card);
}
.nav__mega-new::after {
  content: 'NEU';
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(16,185,129,0.15);
  color: var(--vx-green);
  margin-left: 0.25rem;
}
.nav__mega-heading.nav__mega-new {
  display: flex;
  align-items: center;
}
.nav__mega-subheading {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vx-violet-light);
  opacity: 0.75;
  padding: 0.35rem 0.75rem 0.25rem;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0.25rem;
}
.nav__mega-subheading.nav__mega-new {
  display: flex;
  align-items: center;
}

/* Mobile dropdown (nested in mobile menu) */
.nav__mobile-sub {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav__mobile-sub a {
  font-size: 0.9rem !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  padding-left: 0.5rem !important;
}
.nav__mobile-group-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
}
.nav__mobile-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__mobile-toggle::after {
  content: '▼';
  font-size: 0.55rem;
  transition: transform var(--transition);
}
.nav__mobile-toggle.open::after {
  transform: rotate(180deg);
}
.nav__mobile-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.nav__mobile-collapsible.open {
  max-height: 800px;
}
.nav__mobile-subheading,
a.nav__mobile-subheading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vx-violet-light);
  padding: 0.6rem 0.5rem 0.25rem;
  display: block;
  text-decoration: none;
}
a.nav__mobile-subheading:hover {
  color: var(--text-primary);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(5,5,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--text-primary); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: clamp(5rem, 10vh, 8rem);
}
.hero > .container {
  flex: 1;
  display: flex;
  align-items: center;
}

/* Animated background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero__orb--1 {
  width: 700px; height: 700px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(124,58,237,0.6) 0%, transparent 70%);
  animation: orb-drift-1 6s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  top: 100px; right: -50px;
  background: radial-gradient(circle, rgba(34,211,238,0.4) 0%, transparent 70%);
  animation: orb-drift-2 4.5s ease-in-out infinite alternate;
}
.hero__orb--3 {
  width: 400px; height: 400px;
  bottom: -100px; left: 40%;
  background: radial-gradient(circle, rgba(59,130,246,0.4) 0%, transparent 70%);
  animation: orb-drift-3 6.5s ease-in-out infinite alternate;
}
.hero__orb--4 {
  width: 550px; height: 550px;
  top: 50%; right: 10%;
  background: radial-gradient(circle, rgba(124,58,237,0.45) 0%, rgba(56,189,248,0.3) 50%, transparent 70%);
  animation: orb-drift-4 5s ease-in-out infinite alternate;
}
.hero__orb--5 {
  width: 480px; height: 480px;
  top: 20%; left: 18%;
  background: radial-gradient(circle, rgba(167,139,250,0.55) 0%, rgba(124,58,237,0.25) 45%, transparent 72%);
  animation: orb-drift-5 5.5s ease-in-out infinite alternate;
}
.hero__orb--6 {
  width: 620px; height: 620px;
  bottom: -160px; right: -80px;
  background: radial-gradient(circle, rgba(139,92,246,0.55) 0%, rgba(124,58,237,0.2) 50%, transparent 75%);
  animation: orb-drift-6 7s ease-in-out infinite alternate;
}
.hero__orb--7 {
  width: 380px; height: 380px;
  top: 8%; right: 30%;
  background: radial-gradient(circle, rgba(168,85,247,0.5) 0%, transparent 70%);
  animation: orb-drift-7 4s ease-in-out infinite alternate;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

@keyframes orb-drift-1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(110px, 80px) scale(1.18); }
}
@keyframes orb-drift-2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-85px, 100px) scale(1.12); }
}
@keyframes orb-drift-3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(55px, -75px) scale(1.22); }
}
@keyframes orb-drift-4 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-95px, -65px) scale(1.18); }
}
@keyframes orb-drift-5 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(70px, -55px) scale(1.16); }
}
@keyframes orb-drift-6 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-75px, -90px) scale(1.2); }
}
@keyframes orb-drift-7 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(90px, 65px) scale(1.14); }
}

/* Hero photo – bottom edge pinned to viewport bottom (100svh), full-width panorama */
.hero__photo {
  position: absolute;
  top: 100svh;
  transform: translateY(-100%);        /* pull image up so its bottom = viewport bottom */
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.32;
  z-index: 1;
  mix-blend-mode: luminosity;          /* strip colour, keep crowd silhouette structure */
  mask-image: linear-gradient(to bottom, transparent 0%, black 55%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 55%);
}

/* When photo is present: dim orbs so photo shines through, but keep them visible enough */
.hero--has-photo .hero__orb { opacity: 0.38; }
.hero--has-photo .hero__grid { opacity: 0.3; }

/* Gradient overlay: fade from page-bg at top, dark veil at bottom over the photo */
.hero--has-photo .hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      var(--bg-root) 0%,
      transparent 28%,
      rgba(0,0,0,0.68) 100%
    );
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.hero__badge { margin-bottom: clamp(0.75rem, 2vh, 1.5rem); }
.hero__headline {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: clamp(0.5rem, 1.5vh, 1.25rem);
}
.hero__sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 620px;
  margin: 0 auto clamp(0.5rem, 1vh, 0.75rem);
  line-height: 1.6;
}
.hero__question {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--vx-cyan);
  font-weight: 600;
  margin-bottom: clamp(1.5rem, 3.5vh, 3rem);
}
.hero__actions {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(1rem, 2.5vh, 2.5rem);
}
.hero__trust-logos {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding: clamp(1rem, 2vh, 1.5rem) 0 clamp(1.25rem, 2.5vh, 2rem);
}
.hero__trust-logos .trust-strip {
  gap: 2rem;
}

/* Hide subtitle on short viewports to keep buttons + trust visible */
@media (max-height: 720px) {
  .hero__sub { display: none; }
  .page-hero .label { display: none; }
  .page-hero p { display: none; }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  animation: scroll-bounce 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ── Section Labels ───────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .label { margin-bottom: 0.75rem; display: block; }
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Bento Grid (Features) ────────────────────────────────────── */
.bento {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition);
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(59,130,246,0.05) 100%);
}
.bento-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.bento-card:hover::before { opacity: 1; }

/* Bento spans */
.bento-col-4  { width: calc(33.333% - 0.667rem); }
.bento-col-6  { width: calc(50% - 0.5rem); }
.bento-col-8  { width: calc(66.667% - 0.667rem); }
.bento-col-12 { width: 100%; }

/* Card accent variants */
.bento-card--cyan   { --card-accent: var(--vx-cyan); }
.bento-card--violet { --card-accent: var(--vx-violet-light); }
.bento-card--blue   { --card-accent: var(--vx-blue); }
.bento-card--pink   { --card-accent: var(--vx-pink); }
.bento-card--green  { --card-accent: var(--vx-green); }

.bento-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.bento-card--cyan   .bento-card__icon { background: rgba(34,211,238,0.12); color: var(--vx-cyan); }
.bento-card--violet .bento-card__icon { background: rgba(124,58,237,0.15); color: var(--vx-violet-light); }
.bento-card--blue   .bento-card__icon { background: rgba(59,130,246,0.12); color: var(--vx-blue); }
.bento-card--pink   .bento-card__icon { background: rgba(236,72,153,0.12); color: var(--vx-pink); }
.bento-card--green  .bento-card__icon { background: rgba(16,185,129,0.12); color: var(--vx-green); }

.bento-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  align-self: flex-start;
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
}
.bento-card--cyan   .bento-card__tag { background: rgba(34,211,238,0.1); color: var(--vx-cyan); }
.bento-card--violet .bento-card__tag { background: rgba(124,58,237,0.12); color: var(--vx-violet-light); }
.bento-card--blue   .bento-card__tag { background: rgba(59,130,246,0.1); color: #93C5FD; }
.bento-card--pink   .bento-card__tag { background: rgba(236,72,153,0.1); color: var(--vx-pink); }
.bento-card--green  .bento-card__tag { background: rgba(16,185,129,0.1); color: var(--vx-green); }

.bento-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.bento-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}
.bento-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--card-accent, var(--vx-violet-light));
  transition: gap var(--transition);
}
.bento-card:hover .bento-card__more { gap: 0.5rem; }

/* Large feature card with visual */
.bento-card--featured {
  background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(59,130,246,0.12) 100%);
  border-color: rgba(124,58,237,0.3);
}
.bento-card--featured:hover {
  box-shadow: var(--shadow-card), 0 0 80px rgba(124,58,237,0.3);
}

/* Word cloud visual */
.wordcloud-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
}
.wordcloud-visual span {
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: rgba(124,58,237,0.2);
  color: var(--vx-violet-light);
  font-weight: 600;
  transition: all var(--transition);
}
.wordcloud-visual span:nth-child(2n) { background: rgba(59,130,246,0.2); color: #93C5FD; font-size: 1.3em; }
.wordcloud-visual span:nth-child(3n) { background: rgba(34,211,238,0.15); color: var(--vx-cyan); font-size: 0.85em; }
.wordcloud-visual span:nth-child(5n) { background: rgba(236,72,153,0.15); color: var(--vx-pink); font-size: 1.1em; }

/* Vote bars visual */
.vote-visual { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.vote-legal { margin-top: auto; padding-top: 1rem; font-size: 0.75rem; color: var(--text-secondary); line-height: 1.5; }
.vote-legal a { color: var(--vx-purple); text-decoration: none; }
.vote-legal a:hover { text-decoration: underline; }
.vote-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.vote-bar__fill {
  height: 100%;
  border-radius: inherit;
  background: var(--grad-brand);
  animation: bar-grow 2s ease-out forwards;
  transform-origin: left;
}
@keyframes bar-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.vote-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Q&A chat bubbles visual */
.qa-visual {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.qa-bubble {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px 10px 10px 2px;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  animation: qa-fade-in 0.6s ease both;
}
.qa-bubble--2 { animation-delay: 0.15s; }
.qa-bubble--3 { animation-delay: 0.3s; }
@keyframes qa-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.qa-upvote {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--vx-cyan);
  white-space: nowrap;
}

/* ── How it works ─────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 2.5rem; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}
.step {
  text-align: center;
  padding: 2rem 1.5rem;
}
.step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 800;
  font-size: 1rem;
  background: var(--grad-brand);
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(124,58,237,0.5);
}
.step__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 24px rgba(124,58,237,0.25);
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.9rem; color: var(--text-secondary); max-width: 240px; margin: 0 auto; }

/* ── Language Globe ───────────────────────────────────────────── */
.lang-section { position: relative; overflow: hidden; }
.lang-section .section-header { position: relative; z-index: 1; }

.lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lang-text { position: relative; z-index: 1; }
.lang-text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.lang-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.lang-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.lang-chip:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: rgba(124,58,237,0.1);
}

.lang-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.globe {
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(124,58,237,0.4) 0%,
    rgba(59,130,246,0.3) 40%,
    rgba(5,5,15,0.9) 100%);
  border: 1px solid rgba(124,58,237,0.3);
  box-shadow:
    0 0 80px rgba(124,58,237,0.3),
    inset 0 0 60px rgba(59,130,246,0.1);
  position: relative;
  animation: globe-float 6s ease-in-out infinite alternate;
}
@keyframes globe-float {
  from { transform: translateY(0); }
  to   { transform: translateY(-16px); }
}
.globe-lines {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.3;
}
.globe-line {
  position: absolute;
  border: 1px solid rgba(167,139,250,0.4);
  border-radius: 50%;
}
.globe-line--h1 { width: 100%; height: 30%; top: 35%; left: 0; border-radius: 0; border-width: 0 0 1px 0; }
.globe-line--h2 { width: 80%; height: 20%; top: 20%; left: 10%; border-radius: 0; border-width: 0 0 1px 0; }
.globe-line--h3 { width: 80%; height: 20%; top: 60%; left: 10%; border-radius: 0; border-width: 0 0 1px 0; }
.globe-line--v1 { width: 1px; height: 100%; top: 0; left: 33%; background: rgba(167,139,250,0.3); }
.globe-line--v2 { width: 1px; height: 100%; top: 0; left: 66%; background: rgba(167,139,250,0.3); }

/* Floating language badges around globe */
.lang-float {
  position: absolute;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(14,14,30,0.9);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.lang-float:nth-child(1) { top: 10%; left: -20%; animation: float-bob 4s ease-in-out infinite; }
.lang-float:nth-child(2) { top: 25%; right: -20%; animation: float-bob 5s ease-in-out infinite 0.5s; }
.lang-float:nth-child(3) { bottom: 25%; left: -15%; animation: float-bob 4.5s ease-in-out infinite 1s; }
.lang-float:nth-child(4) { bottom: 10%; right: -10%; animation: float-bob 3.5s ease-in-out infinite 1.5s; }
.lang-float:nth-child(5) { top: 60%; left: 5%; animation: float-bob 5.5s ease-in-out infinite 0.8s; }

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Stats ───────────────────────────────────────────────────── */
.stats-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px;
  background: var(--grad-brand);
  border-radius: 999px;
  opacity: 0;
  transition: opacity var(--transition);
}
.stat:hover::after { opacity: 1; }
.stat__number {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ── USP Strip ───────────────────────────────────────────────── */
.usp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.usp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition);
}
.usp-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.usp-card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
}
.usp-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.usp-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Clients ─────────────────────────────────────────────────── */
.clients-section {
  text-align: center;
}
.clients-scroll {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.client-chip {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.client-chip:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: rgba(124,58,237,0.08);
}

/* Client logo grid */
.clients-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.35;
  transition: opacity var(--transition);
}
.client-logo:hover img {
  opacity: 0.7;
}
/* Larger logo variant (e.g. Vereine page) */
.clients-logo-grid--lg .client-logo img {
  height: 64px;
}
.clients-logo-grid--lg .client-logo:hover img {
  opacity: 1;
}
@media (max-width: 768px) {
  .clients-logo-grid { gap: 1.5rem 2rem; }
  .clients-logo-grid--lg .client-logo img { height: 48px; }
  .client-logo img { height: 24px; }
}

/* ── Security / Privacy ──────────────────────────────────────── */
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.privacy-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.privacy-visual::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(16,185,129,0.08) 0%, transparent 60%);
}
.privacy-icon-big {
  font-size: 4rem;
  display: block;
  margin-bottom: 1.5rem;
  text-align: center;
}
.privacy-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.privacy-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.15);
}
.privacy-item__check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,0.2);
  border: 1px solid var(--vx-green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--vx-green);
  margin-top: 1px;
}
.privacy-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.privacy-item strong { color: var(--text-primary); }

/* ── CTA Final ───────────────────────────────────────────────── */
.cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 0;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(124,58,237,0.25) 0%, transparent 70%);
}
.cta-final__border {
  position: absolute;
  inset: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-final__content { position: relative; z-index: 1; }
.cta-final h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.cta-final p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
.cta-final__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Page Header (Subpages) ───────────────────────────────────── */
.page-hero {
  padding: 8rem 0 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero--full {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 0 0;
  cursor: pointer;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.2) 0%, transparent 70%);
}
/* Photo layer for page-hero – bottom edge pinned to section bottom */
.page-hero__photo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.32;
  z-index: 1;
  mix-blend-mode: luminosity;
  mask-image: linear-gradient(to bottom, transparent 0%, black 55%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 55%);
}
.page-hero--has-photo .page-hero__bg {
  z-index: 2;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.2) 0%, transparent 70%);
}
/* Gradient overlay: fade from page-bg at top, dark veil at bottom over the photo */
.page-hero--has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-root) 0%,
    transparent 28%,
    rgba(0,0,0,0.68) 100%
  );
  z-index: 3;
  pointer-events: none;
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero--has-photo .page-hero__content { z-index: 4; }
.page-hero .label { display: block; margin-bottom: 0.75rem; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}
.page-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}
.page-hero__sub {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.page-hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.25rem;
}

/* Trust logo strip at bottom of hero */
.page-hero__trust-strip {
  position: absolute;
  bottom: 3.5rem;
  left: 0;
  right: 0;
  z-index: 1;
}
.trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-strip__logo img {
  height: 24px;
  width: auto;
  object-fit: contain;
  opacity: 0.3;
  filter: grayscale(1) brightness(2);
  transition: opacity var(--transition);
}
.trust-strip__logo:hover img {
  opacity: 0.6;
}

/* Scroll hint chevron */
.page-hero__scroll-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--text-muted);
  opacity: 0.4;
  transition: opacity var(--transition);
  animation: scrollBounce 2s ease-in-out infinite;
}
.page-hero__scroll-hint:hover {
  opacity: 0.8;
  color: var(--vx-violet-light);
}
.page-hero__scroll-hint svg {
  width: 28px;
  height: 28px;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 768px) {
  .page-hero--full { min-height: auto; padding: 7rem 0 6rem; }
  .page-hero__trust-strip { position: relative; bottom: auto; margin-top: 2rem; }
  .trust-strip { gap: 1.5rem; }
  .trust-strip__logo img { height: 18px; }
  .page-hero__scroll-hint { display: none; }
  .page-hero__actions { flex-direction: column; align-items: center; }
  .page-hero p { display: none; }
}

/* ── Content rows (Subpages) ──────────────────────────────────── */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.content-row:last-child { border-bottom: none; }
.content-row--reverse { direction: rtl; }
.content-row--reverse > * { direction: ltr; }
.content-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.content-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.checklist { display: flex; flex-direction: column; gap: 0.5rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.checklist li::before {
  content: "✓";
  color: var(--vx-green);
  font-weight: 700;
  flex-shrink: 0;
  width: 16px;
}
.content-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.content-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124,58,237,0.08) 0%, transparent 70%);
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-hover); }
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  font-family: var(--font);
  transition: color var(--transition);
  gap: 1rem;
}
.faq-item__q:hover { color: var(--vx-violet-light); }
.faq-item.open .faq-item__q { color: var(--vx-violet-light); }
.faq-item__arrow {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-style: normal;
  font-size: 0.7rem;
}
.faq-item.open .faq-item__arrow {
  transform: rotate(180deg);
  background: rgba(124,58,237,0.2);
  color: var(--vx-violet-light);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item__a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand {
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}
.footer__brand span { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer__socials { display: flex; gap: 0.5rem; }
.footer__social {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.footer__social:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: rgba(124,58,237,0.1);
}
.footer__col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--text-primary); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__bottom a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__bottom a:hover { color: var(--text-secondary); }

/* ── Was-page tabs ────────────────────────────────────────────── */
/* Hero on was/features page fills viewport, so tab bar starts visible at bottom */
.page-hero:has(+ #was-tabs) {
  min-height: calc(100dvh - 3.5rem);
}
.page-hero + #was-tabs {
  padding-top: 0;
}
.was-tabs {
  display: flex;
  gap: 0.25rem;
  background: rgba(14,14,30,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.3rem;
  margin-bottom: 2rem;
  justify-content: center;
  position: sticky;
  top: var(--was-tabs-sticky-top, 4.5rem);
  z-index: 90;
}
.was-tabs__btn {
  padding: 0.75rem 1.75rem;
  border-radius: calc(var(--radius-md) - 2px);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.was-tabs__btn:hover {
  color: var(--text-primary);
}
.was-tabs__btn.active {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 2px 12px rgba(124,58,237,0.4);
}
.was-tab-panel {
  display: none;
}
.was-tab-panel.active {
  display: block;
}
.was-tab-panel.slide-in {
  animation: wasTabSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.was-tab-panel.slide-in-left {
  animation: wasTabSlideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes wasTabSlideIn {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes wasTabSlideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Stacked variant (all sections visible at once). CSS position: sticky is
   unreliable on this page because some upstream ancestor unfortunately
   breaks it; we use a JS polyfill that toggles the `was-tabs--pinned`
   class instead. The bar is wrapped in .was-tabs-wrapper which keeps the
   bar's height reserved in the flow whether the bar is pinned or not. */
.was-tabs-wrapper {
  position: relative;
  margin-bottom: 2rem;
}
.was-tabs.was-tabs--stacked {
  position: static;
  margin: 0;
}
.was-tabs.was-tabs--stacked.was-tabs--pinned {
  position: fixed;
  top: var(--was-tabs-sticky-top, 4.5rem);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: calc(var(--max-width) - 3rem);
}
.was-stacked-section {
  scroll-margin-top: calc(var(--was-tabs-sticky-top, 4.5rem) + 5rem);
}
.was-stacked-section + .was-stacked-section {
  margin-top: 3.5rem;
}

/* Standalone testimonial card */
.testimonial--standalone {
  max-width: 700px;
  margin: 0 auto;
}
.was-tab-intro {
  text-align: center;
  margin-top: 2.25rem;
  margin-bottom: 1.5rem;
  scroll-margin-top: 8rem;
}
.was-tab-intro h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.was-tab-intro p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.was-tab-intro p strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* Feature grid */
.was-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.was-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  scroll-margin-top: 8rem;
}
.was-feature:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
a.was-feature--link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.was-feature.highlight {
  border-color: var(--vx-violet-light);
  box-shadow: 0 0 0 1px var(--vx-violet-light), var(--shadow-glow);
}
.was-feature__icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  display: block;
  line-height: 1;
}
.was-feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.was-feature p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* KI card (full-width in tab) */
.was-ki-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  scroll-margin-top: 8rem;
}
.was-ki-card__text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.was-ki-card__text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.was-ki-card__visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.was-ki-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124,58,237,0.08) 0%, transparent 70%);
}
.was-ki-chat {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.was-ki-chat__msg {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 90%;
}
.was-ki-chat__msg--user {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  align-self: flex-end;
}
.was-ki-chat__msg--bot {
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  color: var(--vx-violet-light);
  align-self: flex-start;
}

@media (max-width: 1024px) {
  .was-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .was-ki-card { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .was-tabs { flex-wrap: wrap; }
  .was-tabs__btn { text-align: center; padding: 0.6rem 1rem; font-size: 0.8rem; }
}
@media (max-width: 480px) {
  .was-feature-grid { grid-template-columns: 1fr; }
}

/* ── Overview: Event-Klick Toggle ────────────────────────────── */

/* Overview Tiles (3 columns) */
.ov-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.ov-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.ov-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition);
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(59,130,246,0.05) 100%);
}
.ov-tile:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  color: inherit;
}
.ov-tile:hover::before { opacity: 1; }
.ov-tile__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.ov-tile h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.ov-tile p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

/* Feature chips inside tile */
.ov-tile__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
}
.ov-tile__features span {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(124,58,237,0.12);
  color: var(--vx-violet-light);
  font-size: 0.75rem;
  font-weight: 600;
}
.ov-tile__features span:nth-child(2n) { background: rgba(236,72,153,0.1); color: var(--vx-pink); }
.ov-tile__features span:nth-child(3n) { background: rgba(34,211,238,0.1); color: var(--vx-cyan); }

/* "Und so viel mehr" area */
.ov-more {
  text-align: center;
  padding: 1.5rem 0 0;
}
.ov-more__names {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.ov-more__names strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* KI grid (3 cards) */
.ov-ki-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ov-ki-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.ov-ki-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.ov-ki-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}
.ov-ki-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ov-ki-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* DSGVO Badge */
.ov-ds-badges {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.ov-ds-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(16,185,129,0.08);
  border: 2px solid rgba(16,185,129,0.3);
}
.ov-ds-badge--dsgvo .ov-ds-badge__text {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--vx-green);
}
.ov-ds-badge__check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--vx-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

/* Datenschutz grid (3 cards) */
.ov-ds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ov-ds-card {
  background: var(--bg-card);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.ov-ds-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(16,185,129,0.06) 0%, transparent 70%);
}
.ov-ds-card:hover {
  border-color: rgba(16,185,129,0.35);
  transform: translateY(-3px);
}
.ov-ds-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
  position: relative;
}
.ov-ds-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
}
.ov-ds-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
}

/* Overview responsive */
@media (max-width: 1024px) {
  .ov-ki-grid,
  .ov-ds-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ov-tiles,
  .ov-ki-grid,
  .ov-ds-grid { grid-template-columns: 1fr; }
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials {
  margin-top: 4rem;
}
.testimonials__heading {
  text-align: center;
  margin-bottom: 2rem;
}
.testimonials__heading h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.testimonial-card__logo {
  margin-bottom: 1rem;
  height: 42px;
  display: flex;
  align-items: center;
}
.testimonial-card__logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(2);
  opacity: 0.35;
  transition: all var(--transition);
}
.testimonial-card:hover .testimonial-card__logo img {
  opacity: 0.7;
  filter: grayscale(0.3) brightness(1.5);
}
.testimonial-card__quote {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(124,58,237,0.15);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.25rem;
  position: relative;
}
.testimonial-card__author {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
}
.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}
.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

@media (max-width: 1024px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ── Comparison Table ──────────────────────────────────────────── */
.compare-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}
.compare-intro p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.2);
  background: linear-gradient(180deg, rgba(14,14,30,0.95) 0%, rgba(5,5,15,0.98) 100%);
  box-shadow: 0 8px 48px rgba(0,0,0,0.5), 0 0 80px rgba(124,58,237,0.08);
}
.compare-table thead th {
  padding: 1.4rem 1.5rem;
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(124,58,237,0.15);
  background: rgba(255,255,255,0.02);
}
.compare-table thead th:first-child {
  width: 40%;
}
.compare-table thead th:not(:first-child) {
  text-align: center;
  width: 30%;
}
.compare-table thead th.compare-table__voxr {
  background: linear-gradient(180deg, rgba(124,58,237,0.18) 0%, rgba(124,58,237,0.06) 100%);
  color: var(--vx-violet-light);
  position: relative;
}
.compare-table thead th.compare-table__voxr::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}

/* VOXR column subtle highlight */
.compare-table td:nth-child(2) {
  background: rgba(124,58,237,0.03);
}

.compare-table tbody tr {
  transition: all var(--transition);
}
.compare-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}
.compare-table tbody tr:hover td:nth-child(2) {
  background: rgba(124,58,237,0.07);
}
.compare-table td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-secondary);
  vertical-align: middle;
}
.compare-table td:not(:first-child) {
  text-align: center;
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  padding-left: 2rem;
}

/* Alternating row tint */
.compare-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.015);
}
.compare-table tbody tr:nth-child(even) td:nth-child(2) {
  background: rgba(124,58,237,0.05);
}

/* Check / Cross / Partial icons */
.cmp-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--vx-green);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(16,185,129,0.1);
}
.cmp-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  color: #f87171;
  font-size: 0.9rem;
  font-weight: 700;
}
.cmp-partial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.2);
  color: #fbbf24;
  font-size: 0.9rem;
  font-weight: 700;
}
.cmp-note {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  font-weight: 400;
  line-height: 1.3;
}

/* Highlight cards below table */
.compare-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.compare-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.compare-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124,58,237,0.06) 0%, transparent 70%);
}
.compare-highlight:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.compare-highlight__icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  display: block;
  line-height: 1;
  position: relative;
}
.compare-highlight h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  position: relative;
}
.compare-highlight p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  position: relative;
}

/* Summary verdict bar */
.compare-verdict {
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124,58,237,0.3);
  background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(59,130,246,0.06) 50%, rgba(34,211,238,0.04) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.compare-verdict::before {
  content: '';
  position: absolute;
  top: 0; left: 25%; right: 25%;
  height: 2px;
  background: var(--grad-text);
  border-radius: 2px;
}
.compare-verdict h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.compare-verdict p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .compare-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .compare-table { font-size: 0.85rem; border-radius: var(--radius-lg); }
  .compare-table thead th,
  .compare-table td { padding: 0.75rem 0.75rem; }
  .compare-table td:first-child { padding-left: 1rem; }
  .compare-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .compare-table thead th:first-child { width: 45%; }
  .compare-table thead th,
  .compare-table td { padding: 0.6rem 0.5rem; font-size: 0.8rem; }
  .compare-table td:first-child { padding-left: 0.75rem; }
  .cmp-yes, .cmp-no, .cmp-partial { width: 24px; height: 24px; font-size: 0.75rem; }
}

/* ── Animations & utilities ───────────────────────────────────── */
.fade-up {
  opacity: 0.08;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.instant {
  transition: none;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bento-col-4  { width: calc(50% - 0.5rem); }
  .bento-col-8  { width: 100%; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .usp-strip    { grid-template-columns: repeat(2, 1fr); }
  .lang-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .lang-visual  { display: none; }
  .privacy-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .bento-col-4, .bento-col-6, .bento-col-8, .bento-col-12 { width: 100%; }
  .steps { grid-template-columns: 1fr; gap: 1rem; }
  .steps::before { display: none; }
  .content-row { grid-template-columns: 1fr; gap: 2rem; direction: ltr !important; }
  .content-row--reverse { direction: ltr; }
  .content-visual { min-height: 160px; font-size: 3rem; }
  .hero { padding-top: clamp(4.5rem, 8vh, 6rem); }
  .hero__sub { display: none; }
  .hero__scroll { display: none; }
  .section { padding: 3rem 0; }
  .usp-strip { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
/* Hide hero subtitle on short viewports (e.g. laptops) */
@media (max-height: 700px) {
  .hero__sub { display: none; }
}

/* ── Compact nav for small laptops (≤1280px) ─────────────────── */
@media (max-width: 1280px) {
  .nav__inner { gap: 0.75rem; }
  .nav__links { gap: 0; }
  .nav__links a,
  .nav__dropdown-toggle { padding: 0.5rem 0.55rem; font-size: 0.82rem; }
  .nav__actions { gap: 0.5rem; }
  .nav__actions .btn { padding: 0.7rem 1.1rem; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .hero { min-height: auto; padding-top: clamp(4rem, 8vh, 6rem); }
  .hero__trust-logos { padding: clamp(1rem, 3vw, 1.5rem) 1rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .cta-final__actions { flex-direction: column; align-items: stretch; }
  .cta-final__actions .btn { justify-content: center; }
}

/* ── Mobile portrait: prevent horizontal overflow ──────────── */
@media (max-width: 430px) {
  .container { padding: 0 1rem; }
  .hero__headline { font-size: clamp(1.8rem, 7vw, 2.4rem); word-break: break-word; overflow-wrap: break-word; hyphens: auto; }
  .hero__question { font-size: clamp(0.9rem, 3.5vw, 1.1rem); }
  .hero__sub { font-size: clamp(0.95rem, 3.5vw, 1.1rem); }
  .display-xl { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .display-lg { font-size: clamp(1.4rem, 5.5vw, 1.8rem); }
  .display-md { font-size: clamp(1.2rem, 4.5vw, 1.4rem); }
  .page-hero--full { padding: 6rem 0 4rem; }
  .nav__mobile { padding: 1rem 1rem 1.5rem; }
  .hero__orb--1 { width: 350px; height: 350px; }
  .hero__orb--2 { width: 250px; height: 250px; }
  .hero__orb--4 { width: 280px; height: 280px; }
  .hero__orb--5 { width: 260px; height: 260px; }
  .hero__orb--6 { width: 320px; height: 320px; }
  .hero__orb--7 { width: 220px; height: 220px; }
  .hero__trust-logos .trust-strip { gap: 1rem; }
  .trust-strip__logo img { height: 16px; }
  .cta-final { padding: 4rem 0; }
}

/* ── Mobile "Jetzt mitmachen" button ───────────────────────── */
.hero__join-btn {
  display: none;
}
@media (max-width: 768px) {
  .hero__question--desktop {
    display: none;
  }
  .hero__join-btn {
    display: inline-block;
    background: var(--grad-brand);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.85rem 2.2rem;
    border-radius: 3rem;
    text-decoration: none;
    margin-bottom: 2rem;
    box-shadow: 0 4px 24px rgba(124,58,237,0.5);
    animation: joinPulse 1.8s ease-in-out infinite;
  }
}
@keyframes joinPulse {
  0%   { box-shadow: 0 4px 24px rgba(124,58,237,0.5); transform: scale(1); }
  50%  { box-shadow: 0 6px 40px rgba(124,58,237,0.85); transform: scale(1.04); }
  100% { box-shadow: 0 4px 24px rgba(124,58,237,0.5); transform: scale(1); }
}

/* ── Testimonial Component ─────────────────────────────────── */
.testimonial {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 640px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: left;
}
.testimonial--hero {
  margin: 2rem auto 0;
}
.testimonial--center {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.testimonial__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.testimonial__body {
  flex: 1;
  min-width: 0;
}
.testimonial__quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.testimonial__quote::before {
  content: "\201E";
  color: var(--vx-violet-light);
  font-size: 1.2em;
}
.testimonial__quote::after {
  content: "\201C";
  color: var(--vx-violet-light);
  font-size: 1.2em;
}
.testimonial__meta {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.testimonial__meta strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Testimonial in page-hero context */
.page-hero .testimonial {
  margin-top: 2rem;
}

/* Standalone testimonial section */
.testimonial-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.testimonial-section .testimonial {
  margin: 0 auto;
  max-width: 700px;
}

@media (max-width: 640px) {
  .testimonial {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }
}

/* ── Vertriebsveranstaltungen Page ─────────────────────────── */

/* Hero with wordcloud background */
.vertrieb-hero {
  position: relative;
  overflow: hidden;
}
.vertrieb-hero__wordcloud {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
  padding: 3rem;
  opacity: 0.07;
  pointer-events: none;
}
.vertrieb-hero__wordcloud span {
  font-family: var(--font, 'Inter', sans-serif);
  font-weight: 700;
  color: var(--vx-violet-light);
  white-space: nowrap;
}
.vertrieb-hero__wordcloud span:nth-child(6n+1) { font-size: 2.5rem; }
.vertrieb-hero__wordcloud span:nth-child(6n+2) { font-size: 1.8rem; }
.vertrieb-hero__wordcloud span:nth-child(6n+3) { font-size: 3rem; }
.vertrieb-hero__wordcloud span:nth-child(6n+4) { font-size: 1.5rem; }
.vertrieb-hero__wordcloud span:nth-child(6n+5) { font-size: 2.2rem; }
.vertrieb-hero__wordcloud span:nth-child(6n)   { font-size: 1.6rem; }
.vertrieb-hero__wordcloud span:nth-child(odd)  { color: var(--vx-cyan); }

/* Vertrieb steps */
.vertrieb-steps {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.vertrieb-step {
  position: relative;
}
.vertrieb-step__number {
  position: absolute;
  top: -0.5rem;
  left: -1rem;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.vertrieb-step__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.vertrieb-step__content--reverse {
  direction: rtl;
}
.vertrieb-step__content--reverse > * {
  direction: ltr;
}
.vertrieb-step__text h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.vertrieb-step__text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.vertrieb-step__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Larger wordcloud visual for vertrieb page */
.wordcloud-visual--large {
  padding: 2rem;
  min-height: 200px;
}
.wordcloud-visual--large span {
  padding: 0.4rem 0.8rem;
}

/* Larger Q&A visual for vertrieb page */
.qa-visual--large {
  gap: 0.75rem;
}
.qa-visual--large .qa-bubble {
  font-size: 0.85rem;
}

/* E-Mail visual */
.email-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.email-visual__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  max-width: 320px;
  width: 100%;
}
.email-visual__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.email-visual__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.email-visual__input {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  text-align: left;
}
.email-visual__btn {
  background: var(--grad-brand);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 0.75rem;
}
.email-visual__hint {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* was-feature__arrow for link cards */
.was-feature__arrow {
  display: block;
  margin-top: 0.75rem;
  color: var(--vx-violet-light);
  font-size: 1.1rem;
  transition: transform var(--transition);
}
a.was-feature--link:hover .was-feature__arrow {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .vertrieb-step__content,
  .vertrieb-step__content--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}
@media (max-width: 768px) {
  .vertrieb-hero__wordcloud {
    gap: 1rem 1.25rem;
    padding: 2rem;
  }
  .vertrieb-hero__wordcloud span:nth-child(6n+1) { font-size: 1.8rem; }
  .vertrieb-hero__wordcloud span:nth-child(6n+3) { font-size: 2rem; }
  .vertrieb-step__number {
    font-size: 3.5rem;
    left: 0;
  }
}

/* ── Q&A Compare Grid (5 equal columns) ──────────────────────── */
.qna-compare {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.qna-compare .bento-card {
  grid-column: span 1;
  padding: 1.5rem;
}
.qna-compare .bento-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.qna-compare .bento-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.qna-compare .bento-card li {
  padding-left: 1.2em;
  text-indent: -1.2em;
  margin-bottom: 0.4rem;
}
.qna-compare .bento-card li::before {
  content: '\2022';
  color: var(--card-accent, var(--vx-violet-light));
  font-weight: 700;
  margin-right: 0.5em;
}
.qna-compare .bento-card p {
  font-size: 0.85rem;
}
@media (max-width: 767px) {
  .qna-compare {
    grid-template-columns: 1fr;
  }
}

/* ── Q&A Table with sticky column headers ────────────────────── */
.qna-table {
  margin-top: 1rem;
}
.qna-table__head {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: sticky;
  top: var(--qna-table-head-sticky-top, 7.6rem);
  z-index: 80;
  background: var(--bg-root);
  padding: 1rem 0 0.75rem;
}
.qna-table__th {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.qna-table__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.qna-table__th--violet { color: var(--vx-violet-light); border-color: rgba(124,58,237,0.3); }
.qna-table__th--cyan   { color: var(--vx-cyan);         border-color: rgba(34,211,238,0.3); }
.qna-table__th--green  { color: var(--vx-green);        border-color: rgba(16,185,129,0.3); }
.qna-table__th--blue   { color: var(--vx-blue);         border-color: rgba(59,130,246,0.3); }
.qna-table__th--pink   { color: var(--vx-pink);         border-color: rgba(236,72,153,0.3); }

.qna-table__body {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding-top: 6vh;
  padding-top: 8dvh;
}
.qna-table__cell {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.qna-table__cell ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.qna-table__cell li {
  padding-left: 1.2em;
  text-indent: -1.2em;
  margin-bottom: 0.4rem;
}
.qna-table__cell li::before {
  content: '\2022';
  font-weight: 700;
  margin-right: 0.5em;
}
.qna-table__cell--violet li::before { color: var(--vx-violet-light); }
.qna-table__cell--cyan   li::before { color: var(--vx-cyan); }
.qna-table__cell--green  li::before { color: var(--vx-green); }
.qna-table__cell--blue   li::before { color: var(--vx-blue); }
.qna-table__cell--pink   li::before { color: var(--vx-pink); }
.qna-table__more-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vx-violet-light);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.qna-table__more-link:hover { opacity: 1; text-decoration: underline; }

@media (max-width: 767px) {
  .qna-table__head,
  .qna-table__body {
    grid-template-columns: 1fr;
  }
  .qna-table__head {
    position: static;
    padding: 0;
  }
  .qna-table__th {
    margin-bottom: 0;
  }
  .qna-table__cell {
    border-top: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
  }
}

/* ── Language Banner ──────────────────────────────────────── */
.lang-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-banner--visible {
  transform: translateY(0);
}

.lang-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, var(--vx-violet) 50%, #1a0a2e 75%, #0a0a0a 100%);
  box-shadow:
    0 5px 26px rgba(124, 58, 237, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.6),
    inset 0 -1px 0 rgba(167, 139, 250, 0.3);
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  color: #fff;
  text-align: center;
  border-bottom: 2px solid var(--vx-violet-light);
}

.lang-banner__text {
  flex-shrink: 1;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.6);
}

.lang-banner__link {
  display: inline-block;
  color: #fff;
  font-weight: 800;
  font-size: 1.08rem;
  text-decoration: none;
  white-space: nowrap;
  background: var(--vx-violet);
  padding: 0.48rem 1.44rem;
  border-radius: 6px;
  border: 2px solid var(--vx-violet-light);
  box-shadow: 0 0 13px rgba(124, 58, 237, 0.5);
  transition: background var(--transition), transform 0.15s ease, box-shadow 0.3s ease;
}

.lang-banner__link:hover {
  background: var(--vx-violet-light);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 0 32px rgba(167, 139, 250, 0.9);
}

.lang-banner__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.44rem;
  cursor: pointer;
  padding: 0 0.4rem;
  line-height: 1;
  transition: color var(--transition);
}

.lang-banner__close:hover {
  color: #fff;
}

.lang-banner__link--compact {
  font-size: 0.96rem;
  padding: 0.36rem 1.08rem;
}

@media (max-width: 600px) {
  .lang-banner__inner {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0.96rem 1rem;
    font-size: 0.92rem;
  }
  .lang-banner__link {
    font-size: 0.92rem;
    padding: 0.4rem 1.12rem;
  }
}

/* ============================================================
   Pricing page
   ============================================================ */

/* ── Friendlier anthracite base + animated purple glow ────── */
body.page-pricing {
  background: #110E22; /* anthracite with subtle violet tint */
}
.pricing-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.pricing-glow__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  will-change: transform;
}
.pricing-glow__orb--1 {
  width: 720px; height: 720px;
  top: -220px; left: -140px;
  background: radial-gradient(circle, rgba(124,58,237,0.6) 0%, transparent 70%);
  animation: orb-drift-1 8s ease-in-out infinite alternate;
}
.pricing-glow__orb--2 {
  width: 560px; height: 560px;
  top: 30%; right: -120px;
  background: radial-gradient(circle, rgba(139,92,246,0.5) 0%, rgba(56,189,248,0.2) 55%, transparent 75%);
  animation: orb-drift-2 6.5s ease-in-out infinite alternate;
}
.pricing-glow__orb--3 {
  width: 520px; height: 520px;
  top: 65%; left: 28%;
  background: radial-gradient(circle, rgba(124,58,237,0.45) 0%, transparent 70%);
  animation: orb-drift-3 9s ease-in-out infinite alternate;
}
.pricing-glow__orb--4 {
  width: 600px; height: 600px;
  bottom: -180px; right: 15%;
  background: radial-gradient(circle, rgba(167,139,250,0.4) 0%, rgba(124,58,237,0.25) 50%, transparent 75%);
  animation: orb-drift-4 7s ease-in-out infinite alternate;
}
.pricing-glow__orb--5 {
  width: 500px; height: 500px;
  top: 15%; left: 45%;
  background: radial-gradient(circle, rgba(168,85,247,0.55) 0%, rgba(124,58,237,0.2) 50%, transparent 72%);
  animation: orb-drift-5 5.5s ease-in-out infinite alternate;
}
.pricing-glow__orb--6 {
  width: 640px; height: 640px;
  bottom: 10%; left: -160px;
  background: radial-gradient(circle, rgba(139,92,246,0.55) 0%, rgba(124,58,237,0.22) 50%, transparent 75%);
  animation: orb-drift-6 7.5s ease-in-out infinite alternate;
}
.pricing-glow__orb--7 {
  width: 440px; height: 440px;
  top: 45%; right: 30%;
  background: radial-gradient(circle, rgba(167,139,250,0.5) 0%, transparent 70%);
  animation: orb-drift-7 6s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
  .pricing-glow__orb { animation: none; }
}

/* ── Tab toggle (Einzelevent | Jahreslizenz) ───────────────── */
/* Eigenständiger Container, der den Toggle auf allen Viewports sicher
   unterhalb der fixen Navbar hält – egal wie weit die Cards später
   zentriert gescrollt werden. Der Wrap sitzt als direktes Body-Kind
   zwischen Hero und Cards und klebt beim Scrollen unter der Navbar.
   Hintergrund: komplett transparent, damit die Pricing-Glow-Orbs
   hinter dem Toggle sichtbar bleiben. pointer-events: none sorgt
   dafür, dass Scroll/Klicks durch die transparente Fläche gehen –
   nur die Toggle-Pille selbst ist interaktiv. */
.pricing-toggle-wrap {
  position: sticky;
  top: 4rem;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem 1rem;
  background: transparent;
  pointer-events: none;
}
.pricing-toggle-wrap > .pricing-toggle {
  pointer-events: auto;
}
.pricing-toggle {
  display: inline-flex;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  backdrop-filter: blur(12px);
  margin: 0;
}
.pricing-toggle__pill {
  position: absolute;
  top: 4px;
  bottom: 4px;
  border-radius: 999px;
  background: var(--grad-brand);
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.4);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.pricing-toggle__btn {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.pricing-toggle__btn.is-active { color: #fff; }

/* ── Tiles grid ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-grid--2 { grid-template-columns: repeat(2, minmax(0, 480px)); justify-content: center; }
.pricing-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Scale pricing boxes to 0.8× so they fit on low-res screens */
.page-pricing .pricing-grid,
.page-pricing .pricing-trainer,
.page-pricing .pricing-enterprise { zoom: 0.8; }

/* Pricing page: keep toggle and cards visually connected so both
   still fit on the same screen at small viewport heights. */
.page-pricing .page-hero { padding-bottom: 0.25rem; }
.page-pricing .section { padding-top: 0.5rem; }
.page-pricing .pricing-grid { margin-top: 0.5rem; }

/* Niedrige Viewports: Hero füllt den Viewport bis auf die Höhe des
   Sticky-Toggles. So steht der Toggle garantiert am unteren Rand,
   und keine Pricing-Cards stehlen ihm die Aufmerksamkeit beim ersten
   Anblick – der User muss bewusst runterscrollen. */
@media (max-height: 900px) {
  .page-pricing .page-hero {
    min-height: calc(100vh - 5.5rem);
    min-height: calc(100dvh - 5.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 6rem;
    padding-bottom: 0;
  }
}

@media (max-width: 1100px) {
  .pricing-grid--4 { grid-template-columns: repeat(2, minmax(0, 480px)); justify-content: center; }
}
@media (max-width: 900px) {
  .pricing-grid,
  .pricing-grid--2,
  .pricing-grid--4 { grid-template-columns: 1fr; }
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: transform var(--transition),
              border-color var(--transition),
              box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.pricing-card--featured {
  border-color: rgba(167, 139, 250, 0.4);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1rem;
  background: var(--grad-brand);
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}
.pricing-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.pricing-card__tag {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  min-height: 1.2em;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.pricing-card__price-num {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Compact variant for long textual prices like "auf Anfrage" – keeps
   the VOXR Flat 100 card in line with the numeric price tiles. */
.pricing-card__price-num--sm {
  font-size: 1.2rem;
}
.pricing-card__price-suffix {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.pricing-card__price-strike {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.2rem;
}
.pricing-card__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  min-height: 1.2em;
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0.25rem 0 1.75rem;
  flex: 1;
}
.pricing-card__features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.5);
}
.pricing-card__features li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.55rem;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--vx-green);
  border-bottom: 1.5px solid var(--vx-green);
  transform: rotate(-45deg);
}
.pricing-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}
.pricing-card__actions .btn { width: 100%; justify-content: center; padding: 0.8rem 1.4rem; font-size: 0.92rem; }

/* ── Cross-link between tabs ──────────────────────────────── */
.pricing-crosslink {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.pricing-crosslink a {
  color: var(--vx-violet-light);
  font-weight: 600;
  border-bottom: 1px dashed rgba(167, 139, 250, 0.4);
  transition: color var(--transition), border-color var(--transition);
}
.pricing-crosslink a:hover {
  color: #fff;
  border-bottom-color: var(--vx-violet-light);
}

/* ── Trainer bar ──────────────────────────────────────────── */
.pricing-trainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  margin-top: 2rem;
  backdrop-filter: blur(12px);
}
.pricing-trainer__info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}
.pricing-trainer__info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.pricing-trainer__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vx-violet-light);
  white-space: nowrap;
}
.pricing-trainer__actions { display: flex; gap: 0.6rem; flex-shrink: 0; }

@media (max-width: 720px) {
  .pricing-trainer { flex-direction: column; align-items: flex-start; }
  .pricing-trainer__actions { width: 100%; }
  .pricing-trainer__actions .btn { flex: 1; justify-content: center; }
}

/* ── Enterprise note ──────────────────────────────────────── */
.pricing-enterprise {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.pricing-enterprise a { color: var(--vx-violet-light); font-weight: 600; }
.pricing-enterprise a:hover { color: #fff; }

/* ── Public-sector notice (pricing-oeffentlich) ───────────── */
.pricing-seg-notice {
  display: inline-block;
  padding: 0.45rem 1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: var(--vx-cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   Pricing page — Angebot-Modal + Public checkout form
   ============================================================ */
.px-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 15, 0.82);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}
.px-modal.is-open { display: flex; }
.px-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--bg-surface);
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  max-height: 92vh;
  overflow-y: auto;
}
.px-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: color var(--transition);
}
.px-modal__close:hover { color: var(--text-primary); }
.px-modal__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vx-violet-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.px-modal__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.px-modal__subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Sektions-Überschrift innerhalb des Modals (z.B. "Adresse (optional)").
   Trennt logische Feldergruppen optisch ohne als Pflichthinweis zu wirken. */
.px-modal__section {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 1.25rem 0 0.6rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

/* Form building blocks (shared by modal + public checkout) */
.px-field { margin-bottom: 1rem; }
.px-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.px-field input,
.px-field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
}
.px-field input:focus,
.px-field select:focus {
  outline: none;
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.06);
}
.px-field input[readonly] {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  cursor: not-allowed;
}
.px-field input::placeholder { color: var(--text-muted); }
.px-field--row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
}
@media (max-width: 540px) {
  .px-field--row { grid-template-columns: 1fr; }
}
.px-field .px-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.px-field .px-error {
  font-size: 0.8rem;
  color: #f87171;
  margin-top: 0.35rem;
  display: none;
}
.px-field.has-error input,
.px-field.has-error select { border-color: rgba(248, 113, 113, 0.6); }
.px-field.has-error .px-error { display: block; }

.px-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0.75rem 0 1.25rem;
  line-height: 1.45;
}
.px-check input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--vx-violet);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.px-check a { color: var(--vx-violet-light); }

.px-submit { width: 100%; justify-content: center; padding: 0.95rem; font-size: 1rem; }

.px-modal__success {
  display: none;
  text-align: center;
  padding: 1.5rem 0 0.5rem;
}
.px-modal__success.is-visible { display: block; }
.px-modal__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid rgba(16, 185, 129, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--vx-green);
  font-size: 1.6rem;
}
.px-modal__success h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.px-modal__success p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.px-modal__fields.is-hidden { display: none; }
.px-modal__fields .is-hidden { display: none; }

/* ── Public checkout – Stripe-Style Single-Card Layout ──── */
.px-checkout-wrap {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 1rem 3rem;
}
.px-checkout-shell {
  width: 100%;
  max-width: 440px;
}

.px-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.75rem 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5);
}

.px-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.px-card__product {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.px-card__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}
.px-card__price-tag {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-left: 0.25rem;
}

/* ── Step-Dots ────────────────────────────────────────────── */
.px-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.px-dots__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: all var(--transition);
}
.px-dots__dot.is-active {
  background: var(--vx-violet);
  transform: scale(1.25);
}
.px-dots__dot.is-done {
  background: var(--vx-violet-light);
}

/* ── Fehler-Banner ────────────────────────────────────────── */
.px-banner {
  margin-bottom: 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #f87171;
  font-size: 0.83rem;
}

/* ── Steps ────────────────────────────────────────────────── */
.px-step { display: none; }
.px-step.is-active { display: block; animation: pxStepFade 0.2s ease-out; }
@keyframes pxStepFade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.px-step__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  letter-spacing: -0.005em;
}
.px-step__actions {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 1.1rem;
}
.px-step__actions .btn {
  flex: 1;
  justify-content: center;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}
.px-btn-wide { width: 100%; justify-content: center; }

/* ── VOXR-Info-Zeile unter E-Mail ─────────────────────────── */
.px-voxr-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 1.4rem;
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.px-voxr-info:empty { display: none; }
.px-voxr-info strong { color: var(--text-primary); font-weight: 600; }
.px-voxr-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  color: var(--vx-violet-light);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Lizenz-Fenster-Hinweis unter Datum ───────────────────── */
.px-license-window {
  margin-top: 0.6rem;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: var(--text-secondary);
  font-size: 0.82rem;
  text-align: center;
}
.px-license-window span {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── Zahlungs-Tabs ────────────────────────────────────────── */
.px-tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.px-tab {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  padding: 0.55rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  font-family: inherit;
  margin-bottom: -1px;
}
.px-tab:hover:not(.is-disabled) { color: var(--text-primary); }
.px-tab.is-active {
  color: var(--vx-violet-light);
  border-bottom-color: var(--vx-violet-light);
}
.px-tab.is-disabled {
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.55;
}
.px-tab__soon {
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.25rem;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
}

/* ── Kompakte Grids in Step 3 ─────────────────────────────── */
.px-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}
.px-grid-2 .px-field { margin-bottom: 0; }
.px-grid-zip-city {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}
.px-grid-zip-city .px-field { margin-bottom: 0; }

/* ── Kompaktere Felder speziell im Public-Checkout ────────── */
.px-card .px-field { margin-bottom: 0.75rem; }
.px-card .px-field label { display: none; }
.px-card .px-field input,
.px-card .px-field select {
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
}

/* ── Zusammenfassung in Step 4 ────────────────────────────── */
.px-summary {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}
.px-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-bottom: 1px dashed var(--border);
}
.px-summary__row:last-child { border-bottom: none; }
.px-summary__row strong {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
  word-break: break-word;
  max-width: 62%;
}
.px-summary__row--total {
  padding-top: 0.55rem;
  margin-top: 0.2rem;
  border-top: 1px solid var(--border);
  border-bottom: none;
  font-size: 0.92rem;
  color: var(--text-primary);
}
.px-summary__row--total strong { font-size: 1rem; }

/* ── Datenschutz-Check kompakt ────────────────────────────── */
.px-card .px-check {
  font-size: 0.82rem;
  margin: 0.5rem 0 0.25rem;
}

/* ── Submit-Button voll ──────────────────────────────────── */
.px-card .px-submit { padding: 0.8rem; }

/* ── Success page ─────────────────────────────────────────── */
.px-success {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
}
.px-success__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 2px solid rgba(16, 185, 129, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--vx-green);
  font-size: 2.2rem;
}
.px-success h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.px-success p { color: var(--text-secondary); margin-bottom: 1rem; }
.px-success__box {
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.px-success__row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}
.px-success__row-lbl { color: var(--text-muted); }
.px-success__row-val { color: var(--text-primary); font-weight: 600; }

