/* ============================================================
   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%; }
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;
}
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: 660px;
  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;
}

/* 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 9s 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 7s 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 10s 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 8s 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(80px, 60px) scale(1.15); }
}
@keyframes orb-drift-2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-60px, 80px) scale(1.1); }
}
@keyframes orb-drift-3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -60px) scale(1.2); }
}
@keyframes orb-drift-4 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-70px, -50px) scale(1.15); }
}

/* 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 */
.hero--has-photo .hero__orb { opacity: 0.2; }
.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; }
}

/* 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: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 1rem;
}
.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  { grid-column: span 4; }
.bento-col-6  { grid-column: span 6; }
.bento-col-8  { grid-column: span 8; }
.bento-col-12 { grid-column: span 12; }
.bento-row-2  { grid-row: span 2; }

/* 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__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 ────────────────────────────────────────────── */
.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: 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;
}
.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); }
}

/* 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-direction: column; }
  .was-tabs__btn { text-align: center; }
}
@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: 28px;
  display: flex;
  align-items: center;
}
.testimonial-card__logo img {
  height: 24px;
  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  { grid-column: span 6; }
  .bento-col-8  { grid-column: span 12; }
  .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 { grid-column: span 12; }
  .bento-row-2 { grid-row: span 1; }
  .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 "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;
  }
}
