/* MatheZeit Landing — gemeinsames Stylesheet fuer ALLE Sprachfassungen.
   Aus den frueher je Sprache duplizierten <style>-Bloecken zusammengefuehrt.
   Sprachspezifische Abweichungen gehoeren in einen kleinen <style>-Block
   der jeweiligen Seite, NICHT hierher. */

    :root {
      --primary: #8b5cf6;
      --primary-dark: #7c3aed;
      --primary-light: #c4b5fd;
      --primary-glow: rgba(139, 92, 246, 0.15);
      --secondary: #f59e0b;
      --secondary-glow: rgba(245, 158, 11, 0.15);
      --bg-dark: #0f172a;
      --bg-card: #1e293b;
      --bg-light: #fafbfc;
      --bg-cream: #f8f7f4;
      --text-dark: #1a1a2e;
      --text-light: #f1f5f9;
      --text-muted: #5c6370;
      --border: #e8e8ec;
      --success: #10b981;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 24px;
      --radius-xl: 32px;
      --shadow-soft: 0 2px 40px rgba(0, 0, 0, 0.04);
      --shadow-medium: 0 8px 50px rgba(0, 0, 0, 0.08);
      --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.12);
      --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
      --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text-dark);
      line-height: 1.65;
      background: var(--bg-light);
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Fredoka', sans-serif;
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    /* Scroll-triggered animations */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* Container */
    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 28px;
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(250, 251, 252, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 1000;
      transition: all 0.3s var(--transition-smooth);
    }

    header.scrolled {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 1px 0 var(--border), var(--shadow-soft);
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 72px;
    }

    .logo {
      font-family: 'Fredoka', sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--text-dark);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: opacity 0.2s;
    }

    .logo:hover {
      opacity: 0.7;
    }

    .logo img.logo-main {
      height: 50px;
      width: auto;
    }

    .logo svg.logo-mazio {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
    }

    .footer-brand .logo img.logo-main {
      height: 36px;
    }

    .footer-brand .logo svg.logo-mazio {
      width: 36px;
      height: 36px;
    }

    .nav-desktop {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .nav-desktop a {
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      padding: 10px 16px;
      border-radius: var(--radius-sm);
      transition: all 0.2s var(--transition-smooth);
      position: relative;
    }

    .nav-desktop a:hover {
      color: var(--text-dark);
      background: rgba(139, 92, 246, 0.06);
    }

    .nav-desktop a.active {
      color: var(--primary);
      background: rgba(139, 92, 246, 0.1);
    }

    .nav-mobile a.active {
      color: var(--primary);
    }

    .nav-cta {
      background: var(--text-dark) !important;
      color: white !important;
      padding: 12px 22px !important;
      border-radius: var(--radius-md) !important;
      font-weight: 600 !important;
      margin-left: 8px;
    }

    .nav-cta:hover {
      background: var(--primary) !important;
      transform: translateY(-1px);
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      width: 44px;
      height: 44px;
      cursor: pointer;
      color: var(--text-dark);
      border-radius: var(--radius-sm);
      transition: background 0.2s;
    }

    .mobile-menu-btn:hover {
      background: rgba(0, 0, 0, 0.04);
    }

    .mobile-menu-btn svg {
      width: 24px;
      height: 24px;
    }

    .nav-mobile {
      display: none;
      position: absolute;
      top: 100px;
      left: 0;
      right: 0;
      background: white;
      border-bottom: 1px solid var(--border);
      padding: 20px 28px 28px;
      flex-direction: column;
      gap: 4px;
      box-shadow: var(--shadow-medium);
    }

    .nav-mobile.active {
      display: flex;
    }

    .nav-mobile a {
      color: var(--text-dark);
      text-decoration: none;
      font-weight: 500;
      padding: 14px 16px;
      border-radius: var(--radius-sm);
      transition: background 0.2s;
    }

    .nav-mobile a:hover {
      background: var(--bg-light);
    }

    /* Hero */
    .hero {
      min-height: 100svh;
      padding: 130px 0 120px;
      background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-cream) 70%, #ffffff 100%);
      position: relative;
      overflow: visible;
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -40%;
      right: -15%;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -250px;
      left: -100px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 60%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 10;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
    }

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

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0;
      background: transparent;
      border: 0;
      padding: 0;
      border-radius: 0;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.11em;
      line-height: 1.2;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 24px;
      box-shadow: none;
    }

    
    .hero-badges {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      margin-bottom: 16px;
    }
    .hero-badges .hero-badge {
      margin-bottom: 0;
    }
    .hero-badge-dot {
      display: none;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.1); }
    }

    .hero-text h1 {
      font-size: clamp(42px, 5.5vw, 64px);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 24px;
      color: var(--text-dark);
    }

    .hero-text h1 .highlight {
      color: var(--primary);
      position: relative;
    }

    .hero-text h1 .highlight::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 0;
      right: 0;
      height: 8px;
      background: var(--primary-glow);
      border-radius: 4px;
      z-index: -1;
    }

    .hero-text > p {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 36px;
      max-width: 520px;
      line-height: 1.75;
    }

    .hero-emphasis {
      color: var(--primary);
      font-weight: 700;
      position: relative;
    }

    .hero-emphasis::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: -2px;
      right: -2px;
      height: 6px;
      background: var(--primary-glow);
      border-radius: 3px;
      z-index: -1;
    }

    .hero-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: var(--radius-md);
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.25s var(--transition-smooth);
      border: none;
      cursor: pointer;
      font-family: inherit;
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    }

    .btn-primary:active {
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: white;
      color: var(--text-dark);
      border: 1.5px solid var(--border);
      box-shadow: var(--shadow-soft);
    }

    .btn-secondary:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: rgba(139, 92, 246, 0.03);
      transform: translateY(-3px);
      box-shadow: var(--shadow-medium);
    }

    .btn-lernsystem {
      background: rgba(249, 115, 22, 0.08);
      color: #ea580c;
      border: 1.5px solid rgba(249, 115, 22, 0.25);
      box-shadow: 0 2px 8px rgba(249, 115, 22, 0.08);
    }

    .btn-lernsystem:hover {
      background: rgba(249, 115, 22, 0.14);
      border-color: rgba(249, 115, 22, 0.4);
      color: #c2410c;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(249, 115, 22, 0.15);
    }

    .btn svg {
      width: 18px;
      height: 18px;
      transition: transform 0.2s;
    }

    .btn:hover svg {
      transform: translateX(3px);
    }

    .hero-visual {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .try-link {
      margin-top: 20px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: var(--text-muted);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 20px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .try-link:hover {
      color: var(--text);
      background: rgba(139, 92, 246, 0.1);
      border-color: rgba(139, 92, 246, 0.3);
    }

    .try-link .arrow {
      transition: transform 0.3s ease;
      font-size: 11px;
    }

    .try-link:hover .arrow {
      transform: translateX(3px);
    }

    /* ========================================
       CINEMATIC PHONE MOCKUP ANIMATION
       ======================================== */

    .phone-cinema {
      position: relative;
      width: 420px;
      margin: 0 auto;
      perspective: 1200px;
    }

    /* iPad Frame */
    .phone-frame {
      position: relative;
      background: linear-gradient(145deg, #1a1a2e 0%, #0d0d1a 100%);
      border-radius: 28px;
      padding: 14px;
      box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
      transform: rotateY(-6deg) rotateX(3deg);
      transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .phone-frame:hover {
      transform: rotateY(-2deg) rotateX(1deg);
    }

    /* Camera dot for iPad */
    .phone-frame::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 7px;
      transform: translateY(-50%);
      width: 8px;
      height: 8px;
      background: #1a1a2e;
      border-radius: 50%;
      z-index: 100;
      box-shadow: inset 0 0 0 2px #0d0d1a;
    }

    .phone-screen {
      position: relative;
      background: var(--bg-dark);
      border-radius: 18px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
    }

    /* Intro Video Layer */
    .video-layer {
      position: absolute;
      inset: 0;
      z-index: 30;
      background: #0f172a;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
      transition: opacity 0.8s ease;
    }

    .video-layer video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .video-layer.fade-out {
      opacity: 0;
      pointer-events: none;
    }

    .video-layer.hidden {
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
    }

    /* Screen Content Layers */
    .screen-layer {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
    }

    /* App Header */
    .app-header {
      padding: 20px 20px 14px;
      background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.9) 100%);
      backdrop-filter: blur(10px);
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .app-header-title {
      font-family: 'Fredoka', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: white;
    }

    .app-header-badge {
      background: rgba(139, 92, 246, 0.2);
      color: var(--primary-light);
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 600;
    }

    /* Tiles Grid Layer */
    .tiles-layer {
      flex: 1;
      padding: 12px 16px 20px;
      overflow: hidden;
    }

    .tiles-scroll {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      animation: scroll-tiles 25s ease-in-out infinite;
    }

    @keyframes scroll-tiles {
      0%, 8% { transform: translateY(0); }
      12%, 20% { transform: translateY(-40px); }
      24%, 32% { transform: translateY(-80px); }
      36%, 88% { transform: translateY(-40px); }
      92%, 100% { transform: translateY(0); }
    }

    .cinema-tile {
      aspect-ratio: 1 / 1.2;
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      transform: scale(1);
      transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .cinema-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cinema-tile::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 12px;
      border: 2px solid transparent;
      transition: all 0.4s ease;
    }

    /* Tile Selection Animation */
    .cinema-tile.selecting {
      animation: tile-select 1.2s ease-out forwards;
    }

    @keyframes tile-select {
      0% { transform: scale(1); }
      30% { transform: scale(1.05); }
      50% { transform: scale(1.08); box-shadow: 0 0 0 3px var(--primary), 0 8px 30px rgba(139, 92, 246, 0.5); }
      100% { transform: scale(1.08); box-shadow: 0 0 0 3px var(--primary), 0 8px 30px rgba(139, 92, 246, 0.5); }
    }

    /* Cursor/Touch Indicator */
    .touch-cursor {
      position: absolute;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.3) 50%, transparent 70%);
      pointer-events: none;
      z-index: 50;
      opacity: 0;
      transform: scale(0.5);
      transition: opacity 0.3s, transform 0.3s;
    }

    .touch-cursor.visible {
      opacity: 1;
      transform: scale(1);
    }

    .touch-cursor.tapping {
      animation: tap-effect 0.4s ease-out;
    }

    @keyframes tap-effect {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(0.8); opacity: 0.8; }
      100% { transform: scale(1.2); opacity: 0; }
    }

    /* Training Screen Overlay */
    .training-overlay {
      position: absolute;
      inset: 0;
      background: var(--bg-dark);
      z-index: 20;
      opacity: 0;
      transform: scale(1.1);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      pointer-events: none;
    }

    .training-overlay.active {
      opacity: 1;
      transform: scale(1);
    }

    .training-header {
      padding: 20px 24px 16px;
      background: linear-gradient(180deg, var(--bg-card) 0%, transparent 100%);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .training-title {
      font-family: 'Fredoka', sans-serif;
      font-size: 18px;
      font-weight: 600;
      color: white;
    }

    .training-subtitle {
      font-size: 13px;
      color: #94a3b8;
      background: rgba(255,255,255,0.05);
      padding: 6px 14px;
      border-radius: 20px;
    }

    .training-content {
      flex: 1;
      padding: 20px 24px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    /* Loading Animation */
    .loading-ring {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: 3px solid rgba(139, 92, 246, 0.2);
      border-top-color: var(--primary);
      animation: spin-ring 1s linear infinite;
      margin-bottom: 16px;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .loading-ring.visible {
      opacity: 1;
    }

    @keyframes spin-ring {
      to { transform: rotate(360deg); }
    }

    .loading-text {
      font-size: 13px;
      color: #94a3b8;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .loading-text.visible {
      opacity: 1;
    }

    /* Game Map - Fullscreen */
    .game-map {
      position: absolute;
      inset: 0;
      border-radius: 0;
      overflow: hidden;
      opacity: 0;
      transform: scale(0.95);
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      z-index: 25;
    }

    .game-map.visible {
      opacity: 1;
      transform: scale(1);
    }

    .map-bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .level-path {
      position: absolute;
      inset: 0;
    }

    .path-lines {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    /* Level Nodes - Whimsical Adventure Style */
    .level-node {
      position: absolute;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(145deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
      border: 4px solid rgba(255,255,255,0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translate(-50%, 50%);
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow:
        0 0 20px rgba(251, 191, 36, 0.5),
        0 6px 20px rgba(0,0,0,0.3),
        inset 0 2px 4px rgba(255,255,255,0.4);
    }

    .level-node::before {
      content: '';
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(251,191,36,0.3) 0%, transparent 70%);
      animation: node-glow 2s ease-in-out infinite;
      opacity: 0.6;
    }

    .level-node:nth-child(2) { width: 44px; height: 44px; }
    .level-node:nth-child(4) { width: 46px; height: 46px; }
    .level-node:nth-child(6) { width: 50px; height: 50px; }

    @keyframes node-glow {
      0%, 100% { transform: scale(1); opacity: 0.4; }
      50% { transform: scale(1.2); opacity: 0.7; }
    }

    .level-num {
      font-weight: 800;
      font-size: 18px;
      color: #1e293b;
      text-shadow: 0 1px 2px rgba(255,255,255,0.5);
      transition: all 0.3s;
      z-index: 1;
    }

    .level-check {
      position: absolute;
      font-size: 24px;
      color: white;
      opacity: 0;
      transform: scale(0);
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
      z-index: 1;
    }

    /* Level States */
    .level-node.current {
      background: linear-gradient(145deg, #c084fc 0%, #a855f7 50%, #7c3aed 100%);
      border-color: white;
      animation: pulse-level 1.2s ease-in-out infinite;
      box-shadow:
        0 0 0 8px rgba(168, 85, 247, 0.3),
        0 0 30px rgba(168, 85, 247, 0.6),
        0 6px 20px rgba(0,0,0,0.3),
        inset 0 2px 4px rgba(255,255,255,0.4);
    }

    .level-node.current .level-num {
      color: white;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .level-node.completed {
      background: linear-gradient(145deg, #34d399 0%, #10b981 50%, #059669 100%);
      border-color: white;
      box-shadow:
        0 0 20px rgba(16, 185, 129, 0.5),
        0 6px 20px rgba(0,0,0,0.3),
        inset 0 2px 4px rgba(255,255,255,0.4);
    }

    .level-node.completed::before {
      background: radial-gradient(circle, rgba(16,185,129,0.4) 0%, transparent 70%);
    }

    .level-node.completed .level-num {
      opacity: 0;
      transform: scale(0);
    }

    .level-node.completed .level-check {
      opacity: 1;
      transform: scale(1);
    }

    @keyframes pulse-level {
      0%, 100% { transform: translate(-50%, 50%) scale(1); }
      50% { transform: translate(-50%, 50%) scale(1.15); }
    }

    /* Floating decorative stars */
    .path-star {
      position: absolute;
      font-size: 16px;
      opacity: 0.8;
      animation: twinkle 2s ease-in-out infinite;
      filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.8));
    }

    .path-star:nth-child(odd) { animation-delay: 0.5s; }
    .path-star:nth-child(even) { animation-delay: 1s; }

    @keyframes twinkle {
      0%, 100% { opacity: 0.5; transform: scale(0.9); }
      50% { opacity: 1; transform: scale(1.1); }
    }

    /* Progress Bar */
    .progress-container {
      padding: 16px 24px 20px;
      background: rgba(15, 23, 42, 0.95);
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .progress-bar {
      flex: 1;
      height: 8px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--primary), #c084fc);
      border-radius: 4px;
      width: 0%;
      transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .progress-text {
      font-size: 13px;
      color: #94a3b8;
      font-weight: 500;
      white-space: nowrap;
    }

    /* Success Celebration */
    .success-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15) 0%, var(--bg-dark) 70%);
      z-index: 30;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease;
    }

    .success-overlay.active {
      opacity: 1;
    }

    .success-icon {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 44px;
      margin-bottom: 24px;
      transform: scale(0);
      transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
    }

    .success-overlay.active .success-icon {
      transform: scale(1);
    }

    .success-title {
      font-family: 'Fredoka', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: white;
      margin-bottom: 10px;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.5s ease 0.2s;
    }

    .success-overlay.active .success-title {
      opacity: 1;
      transform: translateY(0);
    }

    .success-score {
      font-size: 16px;
      color: #10b981;
      font-weight: 600;
      opacity: 0;
      transition: opacity 0.5s ease 0.4s;
    }

    .success-overlay.active .success-score {
      opacity: 1;
    }

    /* Stars */
    .stars-container {
      position: absolute;
      top: 25%;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
    }

    .star {
      font-size: 32px;
      opacity: 0;
      transform: scale(0) rotate(-180deg);
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* Confetti */
    .confetti-container {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .confetti {
      position: absolute;
      width: 10px;
      height: 10px;
      opacity: 0;
    }

    .confetti.active {
      animation: confetti-fall 2.5s ease-out forwards;
    }

    @keyframes confetti-fall {
      0% {
        opacity: 1;
        transform: translateY(-20px) rotate(0deg) scale(1);
      }
      100% {
        opacity: 0;
        transform: translateY(400px) rotate(720deg) scale(0.5);
      }
    }

    .star.visible {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }

    .star:nth-child(1) { transition-delay: 0.1s; }
    .star:nth-child(2) { transition-delay: 0.2s; }
    .star:nth-child(3) { transition-delay: 0.3s; }

    /* Floating elements around iPad */
    .floating-elements {
      position: absolute;
      inset: -40px;
      pointer-events: none;
    }

    .float-item {
      position: absolute;
      font-size: 24px;
      opacity: 0.6;
      animation: float-around 6s ease-in-out infinite;
    }

    .float-item:nth-child(1) { top: 10%; left: -10%; animation-delay: 0s; }
    .float-item:nth-child(2) { top: 30%; right: -15%; animation-delay: 1s; }
    .float-item:nth-child(3) { bottom: 20%; left: -8%; animation-delay: 2s; }
    .float-item:nth-child(4) { bottom: 40%; right: -12%; animation-delay: 0.5s; }
    .float-item:nth-child(5) { top: 60%; left: -15%; animation-delay: 1.5s; }

    @keyframes float-around {
      0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
      50% { transform: translateY(-15px) rotate(10deg); opacity: 0.9; }
    }

    /* Glow effect behind iPad */
    .phone-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 550px;
      height: 450px;
      background: radial-gradient(ellipse, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
      pointer-events: none;
      z-index: -1;
    }

    .partner-logos {
      display: flex;
      gap: 28px;
      align-items: center;
      margin-top: 56px;
      padding-top: 32px;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .partner-logos span {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
      white-space: nowrap;
    }

    .partner-logos-images {
      display: flex;
      gap: 24px;
      align-items: center;
      flex-wrap: wrap;
    }

    .partner-logos img {
      height: 36px;
      opacity: 0.5;
      transition: all 0.3s var(--transition-smooth);
      filter: grayscale(100%);
    }

    .partner-logos img:hover {
      opacity: 1;
      filter: grayscale(0%);
    }

    /* Section Base */
    section {
      padding: 120px 0;
    }

    .section-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 72px;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary-glow);
      color: var(--primary);
      padding: 8px 18px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .section-header h2 {
      font-size: clamp(32px, 4vw, 48px);
      margin-bottom: 18px;
      color: var(--text-dark);
    }

    .section-header p {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* About Section - Fließender Übergang mit Bild-Fade */
    .about {
      position: relative;
      overflow: hidden;
      padding-top: 80px;
      padding-bottom: 60px;
      /* Sanfter Gradient: weiß → cream (kein dunkles Overlay mehr) */
      background:
        linear-gradient(180deg,
          #ffffff 0%,
          #fdfcfb 40%,
          var(--bg-cream) 75%,
          var(--bg-cream) 100%
        );
    }

    /* Bild als separate Layer mit Fade-Mask */
    .about-image-bg {
      position: absolute;
      inset: 0;
      background: url('https://cdn.prod.website-files.com/65b8fd1dd1cc583d2cff3f0b/66620703fa334fe75d0f08b1_13.001.png') right top 10% / 70% auto no-repeat;
      /* Sanft ausfaden in alle Richtungen */
      mask-image:
        radial-gradient(ellipse 100% 90% at 85% 40%,
          rgba(0,0,0,0.5) 0%,
          rgba(0,0,0,0.35) 25%,
          rgba(0,0,0,0.15) 45%,
          transparent 65%
        );
      -webkit-mask-image:
        radial-gradient(ellipse 100% 90% at 85% 40%,
          rgba(0,0,0,0.5) 0%,
          rgba(0,0,0,0.35) 25%,
          rgba(0,0,0,0.15) 45%,
          transparent 65%
        );
      pointer-events: none;
      z-index: 0;
    }

    @media (max-width: 1024px) {
      .about-image-bg {
        background-size: 85% auto;
        background-position: right -5% top 15%;
        mask-image:
          radial-gradient(ellipse 110% 100% at 90% 45%,
            rgba(0,0,0,0.4) 0%,
            rgba(0,0,0,0.25) 30%,
            rgba(0,0,0,0.1) 50%,
            transparent 70%
          );
        -webkit-mask-image:
          radial-gradient(ellipse 110% 100% at 90% 45%,
            rgba(0,0,0,0.4) 0%,
            rgba(0,0,0,0.25) 30%,
            rgba(0,0,0,0.1) 50%,
            transparent 70%
          );
      }
    }

    @media (max-width: 768px) {
      .about-image-bg {
        background-size: 120% auto;
        background-position: center top;
        opacity: 0.4;
        mask-image:
          radial-gradient(ellipse 100% 80% at 50% 30%,
            rgba(0,0,0,0.5) 0%,
            rgba(0,0,0,0.2) 40%,
            transparent 70%
          );
        -webkit-mask-image:
          radial-gradient(ellipse 100% 80% at 50% 30%,
            rgba(0,0,0,0.5) 0%,
            rgba(0,0,0,0.2) 40%,
            transparent 70%
          );
      }
    }

    /* Animated Background Orbs */
    .about-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .about-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.4;
    }

    .about-orb-1 {
      width: 500px;
      height: 500px;
      background: rgba(139, 92, 246, 0.4);
      top: 10%;
      left: -15%;
      animation: float-orb 25s ease-in-out infinite;
    }

    .about-orb-2 {
      width: 400px;
      height: 400px;
      background: rgba(245, 158, 11, 0.25);
      bottom: 5%;
      right: -10%;
      animation: float-orb 20s ease-in-out infinite reverse;
    }

    @keyframes float-orb {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -20px) scale(1.05); }
      66% { transform: translate(-20px, 20px) scale(0.95); }
    }

    /* About Layout - Side by Side */
    .about-layout {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .about-left {
    }


    /* About Header - Dark text for light background */
    .about-header {
      text-align: left;
      margin-bottom: 48px;
    }

    .about-header .section-label {
      margin-bottom: 20px;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(168, 85, 247, 0.18) 100%);
      color: #6d28d9;
      border: 1px solid rgba(139, 92, 246, 0.3);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
    }

    .about-header h2 {
      font-family: 'Fredoka', sans-serif;
      font-size: clamp(34px, 4vw, 52px);
      font-weight: 600;
      color: #1a1625;
      margin-bottom: 20px;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    /* Highlight word in heading */
    .about-header h2 .highlight {
      background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .about-subtitle {
      font-size: 17px;
      color: #4a4260;
      line-height: 1.8;
      max-width: 420px;
      margin-bottom: 28px;
    }

    .about-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
      color: white;
      padding: 14px 28px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
    }

    .about-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
    }

    .about-cta svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .about-cta:hover svg {
      transform: translateX(4px);
    }

    /* Stats - Vertical with shimmer effect */
    .about-stats {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 0;
      background: transparent;
    }

    .stat-item {
      display: flex;
      align-items: baseline;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(139, 92, 246, 0.15);
      position: relative;
    }

    .stat-item:last-child {
      border-bottom: none;
    }

    .stat-item::before {
      content: '';
      position: absolute;
      left: 0;
      bottom: -1px;
      width: 0;
      height: 1px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .stat-item:hover::before {
      width: 100%;
    }

    .stat-number {
      font-family: 'Fredoka', sans-serif;
      font-size: 46px;
      font-weight: 700;
      background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 50%, #a78bfa 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      letter-spacing: -0.02em;
      min-width: 110px;
    }

    .stat-label {
      font-size: 15px;
      color: #3d3855;
      font-weight: 600;
      letter-spacing: 0.01em;
    }

    /* Feature Cards Grid - 2x2 on right side */
    .about-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      background: rgba(255, 255, 255, 0.45);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      padding: 18px;
      border-radius: 28px;
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    .about-card {
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 18px;
      padding: 26px 22px;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .about-card:hover {
      background: rgba(255, 255, 255, 0.65);
      border-color: rgba(139, 92, 246, 0.4);
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 16px 40px rgba(139, 92, 246, 0.15);
    }

    .about-card-icon {
      width: 54px;
      height: 54px;
      background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      box-shadow: 0 6px 16px rgba(139, 92, 246, 0.35);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .about-card:hover .about-card-icon {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(139, 92, 246, 0.45);
    }

    .about-card-icon svg {
      width: 26px;
      height: 26px;
      stroke: white;
      stroke-width: 2;
      fill: none;
    }

    .about-card h3 {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 17px;
      font-weight: 600;
      color: #1a1625;
      margin-bottom: 8px;
    }

    .about-card p {
      font-size: 14px;
      color: #4a4260;
      line-height: 1.6;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .about-left {
        position: static;
        padding-top: 0;
        text-align: center;
      }

      .about-header {
        text-align: center;
      }

      .about-subtitle {
        max-width: 100%;
        margin: 0 auto;
      }

      .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
      }

      .stat-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        padding: 0;
        border-bottom: none;
      }

      .stat-item::before {
        display: none;
      }

      .stat-number {
        min-width: auto;
      }

      .about-cards {
        max-width: 500px;
        margin: 0 auto;
      }
    }

    @media (max-width: 540px) {
      .about-header h2 {
        font-size: clamp(26px, 7vw, 34px);
      }

      .about-stats {
        gap: 24px;
      }

      .stat-number {
        font-size: 32px;
      }

      .about-cards {
        grid-template-columns: 1fr;
        max-width: 340px;
      }
    }

    /* Fixed Beta Bar */
    .beta-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      transform: translateY(100%);
      animation: beta-slide-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) 2s forwards;
    }

    .beta-bar.dismissed {
      animation: beta-slide-out 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;
    }

    @keyframes beta-slide-in {
      to { transform: translateY(0); }
    }

    @keyframes beta-slide-out {
      from { transform: translateY(0); }
      to { transform: translateY(100%); }
    }

    .beta-bar-inner {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 12px 20px;
      background: linear-gradient(135deg, #1e1b4b 0%, #1a1040 100%);
      border-top: 1px solid rgba(139, 92, 246, 0.2);
      box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.25);
      overflow: hidden;
    }

    .beta-bar-shimmer {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .beta-bar-shimmer::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -100%;
      width: 50%;
      height: 200%;
      background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.06), transparent);
      transform: skewX(-20deg);
      animation: bar-shimmer 5s ease-in-out infinite;
    }

    @keyframes bar-shimmer {
      0%, 100% { left: -100%; }
      50% { left: 150%; }
    }

    .beta-bar-left {
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    .beta-bar-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--success);
      box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
      animation: beta-dot-pulse 2.5s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes beta-dot-pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .beta-bar-badge {
      padding: 4px 10px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border-radius: 30px;
      flex-shrink: 0;
    }

    .beta-bar-text {
      color: rgba(255, 255, 255, 0.7);
      font-family: 'Instrument Sans', sans-serif;
      font-size: 13.5px;
      line-height: 1.3;
      margin: 0;
    }

    .beta-bar-text strong {
      color: #fff;
      font-weight: 600;
    }

    .beta-bar-right {
      display: flex;
      align-items: center;
      gap: 10px;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }

    .beta-bar-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 16px;
      background: rgba(245, 158, 11, 0.12);
      border: 1px solid rgba(245, 158, 11, 0.3);
      color: var(--secondary);
      font-family: 'Instrument Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      border-radius: 30px;
      text-decoration: none;
      white-space: nowrap;
      transition: all 0.25s ease;
    }

    .beta-bar-cta:hover {
      background: rgba(245, 158, 11, 0.22);
      border-color: rgba(245, 158, 11, 0.5);
      color: #fbbf24;
      box-shadow: 0 0 16px rgba(245, 158, 11, 0.12);
    }

    .beta-bar-cta svg {
      transition: transform 0.25s ease;
    }

    .beta-bar-cta:hover svg {
      transform: translateX(2px);
    }

    .beta-bar-close {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      background: none;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: rgba(255, 255, 255, 0.35);
      cursor: pointer;
      transition: all 0.2s ease;
      padding: 0;
    }

    .beta-bar-close:hover {
      border-color: rgba(255, 255, 255, 0.25);
      color: rgba(255, 255, 255, 0.7);
      background: rgba(255, 255, 255, 0.05);
    }

    @media (max-width: 640px) {
      .beta-bar-inner {
        flex-wrap: wrap;
        padding: 12px 14px;
        gap: 10px;
      }

      .beta-bar-left {
        flex: 1;
        min-width: 0;
      }

      .beta-bar-text {
        font-size: 12.5px;
      }

      .beta-bar-dot {
        display: none;
      }

      .beta-bar-right {
        width: 100%;
        justify-content: space-between;
      }

      .beta-bar-cta {
        flex: 1;
        justify-content: center;
      }
    }

    /* Concept Section */
    .concept {
      background: linear-gradient(180deg, #faf9f7 0%, #f5f3ef 100%);
      color: var(--text-dark);
      position: relative;
      overflow: hidden;
      padding: 100px 0 40px;
    }

    /* Subtle grain texture */
    .concept::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      opacity: 0.03;
      pointer-events: none;
    }

    /* Decorative shapes */
    .concept::after {
      content: '';
      position: absolute;
      top: -200px;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .concept .section-label {
      background: rgba(139, 92, 246, 0.1);
      color: var(--primary);
    }

    .concept .section-header h2 {
      color: var(--text-dark);
    }

    .concept .section-header p {
      color: var(--text-muted);
    }

    .concept-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .concept-card {
      background: var(--bg-card);
      border-radius: var(--radius-xl);
      padding: 44px 36px;
      text-align: center;
      transition: all 0.4s var(--transition-smooth);
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.04);
    }

    .concept-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--radius-xl);
      padding: 1px;
      background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s;
    }

    .concept-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    }

    .concept-card:hover::before {
      opacity: 1;
    }

    .concept-icon {
      width: 88px;
      height: 88px;
      border-radius: 22px;
      margin: 0 auto 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 44px;
      position: relative;
    }

    .concept-card:nth-child(1) .concept-icon {
      background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
      box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
    }

    .concept-card:nth-child(2) .concept-icon {
      background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
      box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
    }

    .concept-card:nth-child(3) .concept-icon {
      background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
      box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
    }

    .concept-card h3 {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 14px;
      color: white;
    }

    .concept-card p {
      color: #94a3b8;
      font-size: 15px;
      line-height: 1.75;
    }

    /* ========== iPad DEMO MODAL ========== */
    .ipad-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(15, 23, 42, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .ipad-modal.open {
      opacity: 1;
      pointer-events: auto;
    }

    body.modal-open {
      overflow: hidden;
    }

    .ipad-modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
      z-index: 10;
    }

    .ipad-modal-close:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.1);
    }

    .ipad-modal-content {
      position: relative;
      transform: scale(0.9);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .ipad-modal.open .ipad-modal-content {
      transform: scale(1);
    }

    /* Demo Start Button in Section */
    .demo-start-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
      color: white;
      padding: 18px 36px;
      border-radius: 16px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
      transition: all 0.3s ease;
    }

    .demo-start-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 50px rgba(139, 92, 246, 0.5);
    }

    .demo-start-btn svg {
      width: 24px;
      height: 24px;
    }

    /* ========== KONZEPT SECTION - Stacked Cards ========== */

    /* Keyframe animations */
    /* Panels spread out - subtle float animation */
    @keyframes panelFloat1 {
      0%, 100% { transform: translateX(-405px) rotate(-5deg) translateY(0) scale(1.02); }
      50% { transform: translateX(-405px) rotate(-5deg) translateY(-6px) scale(1.02); }
    }
    @keyframes panelFloat2 {
      0%, 100% { transform: translateX(-135px) rotate(-1deg) translateY(0) scale(1.03); }
      50% { transform: translateX(-135px) rotate(-1deg) translateY(-5px) scale(1.03); }
    }
    @keyframes panelFloat3 {
      0%, 100% { transform: translateX(135px) rotate(1deg) translateY(0) scale(1.03); }
      50% { transform: translateX(135px) rotate(1deg) translateY(-7px) scale(1.03); }
    }
    @keyframes panelFloat4 {
      0%, 100% { transform: translateX(405px) rotate(5deg) translateY(0) scale(1.02); }
      50% { transform: translateX(405px) rotate(5deg) translateY(-8px) scale(1.02); }
    }

    @keyframes shimmerSweep {
      0% { transform: translateX(-100%) rotate(25deg); }
      100% { transform: translateX(200%) rotate(25deg); }
    }

    @keyframes iconGlow {
      0%, 100% { box-shadow: 0 4px 16px var(--panel-glow); }
      50% { box-shadow: 0 4px 24px var(--panel-glow), 0 0 20px var(--panel-glow); }
    }

    @keyframes numPulse {
      0%, 100% { opacity: 0.12; }
      50% { opacity: 0.18; }
    }

    /* ========== MAGNETIC CARD DECKS ========== */

    /* Soft decorative orbs for light theme */
    .concept-bg-orbs {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.5;
      animation: orbFloat 25s ease-in-out infinite;
    }

    .orb-1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
      top: -20%;
      left: -15%;
      animation-delay: 0s;
    }

    .orb-2 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
      bottom: -10%;
      right: -10%;
      animation-delay: -8s;
    }

    .orb-3 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
      top: 60%;
      left: 30%;
      animation-delay: -16s;
    }

    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      25% { transform: translate(30px, -20px) scale(1.05); }
      50% { transform: translate(-20px, 30px) scale(0.95); }
      75% { transform: translate(20px, 20px) scale(1.02); }
    }

    /* Main deck container */
    .concept-decks {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 60px;
      margin: 60px auto 0;
      max-width: 1100px;
      position: relative;
      min-height: 380px;
    }

    /* Individual card deck */
    .card-deck {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 0 0 auto;
      width: 280px;
      transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
                  opacity 0.5s ease,
                  filter 0.5s ease;
    }

    /* Push animation when other deck expands */
    .concept-decks.left-expanded .card-deck:last-of-type {
      transform: translateX(200px);
      opacity: 0.6;
      filter: saturate(0.8);
    }

    .concept-decks.right-expanded .card-deck:first-of-type {
      transform: translateX(-200px);
      opacity: 0.6;
      filter: saturate(0.8);
    }

    .concept-decks.left-expanded .deck-divider,
    .concept-decks.right-expanded .deck-divider {
      opacity: 0;
      transform: scale(0.5);
    }

    /* Deck label */
    .deck-label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    .deck-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: rgba(139, 92, 246, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .deck-icon svg {
      width: 16px;
      height: 16px;
      color: var(--primary);
    }

    .deck-platforms .deck-icon {
      background: rgba(6, 182, 212, 0.12);
    }

    .deck-platforms .deck-icon svg {
      color: #0891b2;
    }

    /* The actual stack of cards */
    .deck-stack {
      position: relative;
      width: 260px;
      height: 200px;
      perspective: 1200px;
      transform-style: preserve-3d;
    }

    /* Individual card in deck */
    .deck-card {
      --card-color: hsl(var(--card-hue), var(--card-sat), 55%);
      --card-glow: hsla(var(--card-hue), var(--card-sat), 55%, 0.4);
      --card-bg: hsla(var(--card-hue), var(--card-sat), 20%, 0.6);

      position: absolute;
      width: 100%;
      height: 180px;
      border-radius: 20px;
      cursor: pointer;
      transform-style: preserve-3d;
      transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* Card stacking positions (bottom to top) */
    .deck-card[data-card="3"] {
      z-index: 1;
      transform: translateY(24px) translateZ(-30px) rotateX(2deg);
    }
    .deck-card[data-card="2"] {
      z-index: 2;
      transform: translateY(16px) translateZ(-20px) rotateX(1.5deg);
    }
    .deck-card[data-card="1"] {
      z-index: 3;
      transform: translateY(8px) translateZ(-10px) rotateX(1deg);
    }
    .deck-card[data-card="0"] {
      z-index: 4;
      transform: translateY(0) translateZ(0) rotateX(0);
    }

    /* Platform deck has only 3 cards */
    .deck-platforms .deck-card[data-card="2"] {
      z-index: 1;
      transform: translateY(16px) translateZ(-20px) rotateX(1.5deg);
    }
    .deck-platforms .deck-card[data-card="1"] {
      z-index: 2;
      transform: translateY(8px) translateZ(-10px) rotateX(1deg);
    }
    .deck-platforms .deck-card[data-card="0"] {
      z-index: 3;
      transform: translateY(0) translateZ(0) rotateX(0);
    }

    /* Card edge (3D depth effect) */
    .card-edge {
      position: absolute;
      bottom: -4px;
      left: 4px;
      right: 4px;
      height: 8px;
      background: linear-gradient(180deg,
        hsla(var(--card-hue), var(--card-sat), 30%, 1) 0%,
        hsla(var(--card-hue), var(--card-sat), 20%, 1) 100%
      );
      border-radius: 0 0 16px 16px;
      transform: translateZ(-2px);
      box-shadow: 0 4px 15px hsla(var(--card-hue), var(--card-sat), 20%, 0.4);
    }

    /* Card face - Light theme with rich colors */
    .card-face {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 20px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      background: linear-gradient(
        160deg,
        hsla(var(--card-hue), var(--card-sat), 45%, 1) 0%,
        hsla(var(--card-hue), var(--card-sat), 35%, 1) 100%
      );
      border: 1px solid hsla(var(--card-hue), var(--card-sat), 60%, 0.3);
      box-shadow:
        0 4px 6px rgba(0,0,0,0.05),
        0 15px 50px hsla(var(--card-hue), var(--card-sat), 30%, 0.25),
        inset 0 1px 0 hsla(var(--card-hue), var(--card-sat), 80%, 0.2);
      overflow: hidden;
    }

    /* Shimmer effect */
    .card-shimmer {
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
      );
      transform: skewX(-20deg);
      transition: left 0.8s ease;
      pointer-events: none;
    }

    .deck-card:hover .card-shimmer {
      left: 150%;
    }

    /* Card number watermark */
    .card-number {
      position: absolute;
      top: -15px;
      right: 10px;
      font-family: 'Fredoka', sans-serif;
      font-size: 100px;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.15);
      line-height: 1;
      pointer-events: none;
      transition: all 0.4s ease;
    }

    .deck-card:hover .card-number {
      opacity: 1;
      color: rgba(255, 255, 255, 0.25);
      transform: scale(1.05) rotate(-3deg);
    }

    /* Card icon */
    .card-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--card-color) 0%, hsla(var(--card-hue), var(--card-sat), 40%, 1) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      box-shadow:
        0 8px 24px var(--card-glow),
        inset 0 1px 0 rgba(255,255,255,0.2);
      position: relative;
      z-index: 2;
    }

    .card-icon-wrap svg {
      width: 24px;
      height: 24px;
      color: white;
    }

    /* Card content */
    .deck-card h4 {
      font-family: 'Fredoka', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: white;
      margin: 0 0 6px 0;
      position: relative;
      z-index: 2;
    }

    .deck-card p {
      font-size: 13px;
      color: hsla(var(--card-hue), 20%, 75%, 1);
      line-height: 1.4;
      margin: 0;
      position: relative;
      z-index: 2;
    }

    /* Badge styles */
    .neu-badge {
      --badge-amber: #f59e0b;
      --badge-amber-dark: #d97706;
      --badge-amber-glow: rgba(245, 158, 11, 0.35);

      display: inline-flex;
      align-items: center;
      vertical-align: middle;
      position: relative;
      background: linear-gradient(135deg, var(--badge-amber) 0%, var(--badge-amber-dark) 100%);
      color: white;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 10px;
      font-weight: 700;
      padding: 6px 14px 6px 12px;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-left: 16px;
      box-shadow:
        0 2px 8px var(--badge-amber-glow),
        0 4px 16px rgba(245, 158, 11, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
      transform: translateY(-2px);
      overflow: hidden;
    }

    /* Subtle shine sweep animation */
    .neu-badge::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
      );
      animation: neuBadgeShine 3s ease-in-out infinite;
    }

    @keyframes neuBadgeShine {
      0%, 100% { left: -100%; }
      50%, 60% { left: 100%; }
    }

    /* Sparkle dot */
    .neu-badge::after {
      content: '';
      position: absolute;
      top: 6px;
      right: 6px;
      width: 4px;
      height: 4px;
      background: white;
      border-radius: 50%;
      opacity: 0.9;
      animation: neuBadgeSparkle 2s ease-in-out infinite;
    }

    @keyframes neuBadgeSparkle {
      0%, 100% { opacity: 0.9; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.6); }
    }

    /* Responsive adjustment */
    @media (max-width: 768px) {
      .neu-badge {
        font-size: 9px;
        padding: 5px 11px 5px 9px;
        margin-left: 10px;
        letter-spacing: 1px;
      }
    }

    .card-badge-new {
      position: absolute;
      top: 16px;
      right: 16px;
      background: linear-gradient(135deg, #ec4899, #a855f7);
      color: white;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 9px;
      font-weight: 700;
      padding: 5px 10px;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
      z-index: 10;
      box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
    }

    .card-badge-soon {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255, 255, 255, 0.25);
      color: white;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 9px;
      font-weight: 700;
      padding: 5px 10px;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
      z-index: 10;
      border: 1px solid rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(4px);
    }

    /* Card link */
    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
      padding-top: 12px;
      color: rgba(255, 255, 255, 0.85);
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      position: relative;
      z-index: 2;
      transition: all 0.3s ease;
    }

    .card-link span {
      display: inline-block;
      transition: transform 0.3s ease;
    }

    .card-link:hover {
      color: white;
    }

    .card-link:hover span {
      transform: translateX(4px);
    }

    /* Hover effects on stack */
    .deck-stack:hover .deck-card[data-card="3"] {
      transform: translateY(32px) translateZ(-35px) rotateX(3deg) rotate(-2deg);
    }
    .deck-stack:hover .deck-card[data-card="2"] {
      transform: translateY(20px) translateZ(-22px) rotateX(2deg) rotate(-1deg);
    }
    .deck-stack:hover .deck-card[data-card="1"] {
      transform: translateY(10px) translateZ(-11px) rotateX(1deg) rotate(-0.5deg);
    }
    .deck-stack:hover .deck-card[data-card="0"] {
      transform: translateY(-5px) translateZ(5px) rotateX(-1deg);
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

    .deck-platforms .deck-stack:hover .deck-card[data-card="2"] {
      transform: translateY(24px) translateZ(-25px) rotateX(2.5deg) rotate(-1.5deg);
    }
    .deck-platforms .deck-stack:hover .deck-card[data-card="1"] {
      transform: translateY(12px) translateZ(-12px) rotateX(1.5deg) rotate(-0.5deg);
    }
    .deck-platforms .deck-stack:hover .deck-card[data-card="0"] {
      transform: translateY(-5px) translateZ(5px) rotateX(-1deg);
    }

    /* Deck trigger button - Light theme */
    .deck-trigger {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 32px;
      padding: 14px 24px;
      background: white;
      border: 1px solid var(--border);
      border-radius: 14px;
      color: var(--text-muted);
      font-family: 'Instrument Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    .deck-trigger::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.05));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .deck-trigger:hover::before {
      opacity: 1;
    }

    .deck-trigger:hover {
      border-color: var(--primary-light);
      color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    }

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

    .trigger-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(139, 92, 246, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
      transition: all 0.4s ease;
    }

    .trigger-icon svg {
      width: 14px;
      height: 14px;
      color: var(--primary);
      transition: transform 0.4s ease;
    }

    .deck-trigger:hover .trigger-icon {
      background: var(--primary);
    }

    .deck-trigger:hover .trigger-icon svg {
      color: white;
    }

    .deck-platforms .trigger-icon {
      background: rgba(6, 182, 212, 0.1);
    }

    .deck-platforms .trigger-icon svg {
      color: #0891b2;
    }

    .deck-platforms .deck-trigger:hover .trigger-icon {
      background: #0891b2;
    }

    .deck-platforms .deck-trigger:hover .trigger-icon svg {
      color: white;
    }

    /* Divider between decks - Light theme */
    .deck-divider {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 60px 0;
      opacity: 0.6;
      transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .divider-line {
      width: 1px;
      height: 60px;
      background: linear-gradient(180deg, transparent, var(--border), transparent);
    }

    .divider-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
    }

    /* ========== HORIZONTAL FAN EXPANDED STATE ========== */

    /* Left deck (Bestandteile) - fans LEFT - Training first (left) to Knobelbox last (right) */
    .card-deck[data-deck="bestandteile"].expanded .deck-stack {
      width: 260px;
      height: 200px;
    }

    .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="0"] {
      transform: translateX(-340px) translateY(0) rotate(-5deg) !important;
      z-index: 4;
    }
    .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="1"] {
      transform: translateX(-113px) translateY(0) rotate(-2deg) !important;
      z-index: 3;
    }
    .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="2"] {
      transform: translateX(113px) translateY(0) rotate(2deg) !important;
      z-index: 2;
    }
    .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="3"] {
      transform: translateX(340px) translateY(0) rotate(5deg) !important;
      z-index: 1;
    }

    /* Right deck (Plattformen) - fans RIGHT */
    .card-deck[data-deck="plattformen"].expanded .deck-stack {
      width: 260px;
      height: 200px;
    }

    .card-deck[data-deck="plattformen"].expanded .deck-card[data-card="0"] {
      transform: translateX(-220px) translateY(0) rotate(-4deg) !important;
      z-index: 3;
    }
    .card-deck[data-deck="plattformen"].expanded .deck-card[data-card="1"] {
      transform: translateX(0px) translateY(0) rotate(0deg) !important;
      z-index: 2;
    }
    .card-deck[data-deck="plattformen"].expanded .deck-card[data-card="2"] {
      transform: translateX(220px) translateY(0) rotate(4deg) !important;
      z-index: 1;
    }

    /* Hover lift effect on expanded cards */
    .card-deck.expanded .deck-card {
      filter: brightness(1);
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.2s ease;
    }

    .card-deck.expanded .deck-card:hover {
      z-index: 10 !important;
      filter: brightness(1.15);
    }

    .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="0"]:hover {
      transform: translateX(-340px) translateY(-15px) rotate(-5deg) scale(1.05) !important;
    }
    .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="1"]:hover {
      transform: translateX(-113px) translateY(-15px) rotate(-2deg) scale(1.05) !important;
    }
    .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="2"]:hover {
      transform: translateX(113px) translateY(-15px) rotate(2deg) scale(1.05) !important;
    }
    .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="3"]:hover {
      transform: translateX(340px) translateY(-15px) rotate(5deg) scale(1.05) !important;
    }

    .card-deck[data-deck="plattformen"].expanded .deck-card[data-card="0"]:hover {
      transform: translateX(-220px) translateY(-15px) rotate(-4deg) scale(1.05) !important;
    }
    .card-deck[data-deck="plattformen"].expanded .deck-card[data-card="1"]:hover {
      transform: translateX(0px) translateY(-15px) rotate(0deg) scale(1.05) !important;
    }
    .card-deck[data-deck="plattformen"].expanded .deck-card[data-card="2"]:hover {
      transform: translateX(220px) translateY(-15px) rotate(4deg) scale(1.05) !important;
    }

    /* Left deck (Bestandteile) - right-align text when expanded */
    .card-deck[data-deck="bestandteile"].expanded .card-face {
      align-items: flex-end;
      text-align: right;
    }

    .card-deck[data-deck="bestandteile"].expanded .card-number {
      right: auto;
      left: 10px;
    }

    /* Button state when expanded */
    .card-deck.expanded .trigger-icon svg {
      transform: rotate(45deg);
    }

    .card-deck.expanded .trigger-text::after {
      content: 'Einklappen';
    }

    .card-deck.expanded .trigger-text {
      font-size: 0;
    }

    .card-deck.expanded .trigger-text::after {
      font-size: 14px;
    }

    /* Card "Mehr erfahren" link */
    .card-more-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 12px;
      padding: 8px 14px;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: white;
      text-decoration: none;
      opacity: 0;
      transform: translateY(8px);
      transition: all 0.3s ease;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .card-more-link svg {
      width: 14px;
      height: 14px;
      transition: transform 0.2s ease;
    }

    .card-more-link:hover {
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.35);
      transform: translateY(-1px);
    }

    .card-more-link:hover svg {
      transform: translateX(3px);
    }

    /* Show on expanded deck */
    .card-deck.expanded .card-more-link {
      opacity: 1;
      transform: translateY(0);
    }

    /* Right-align for bestandteile deck */
    .card-deck[data-deck="bestandteile"].expanded .card-more-link {
      justify-content: flex-end;
    }

    /* CTA */
    .concept-cta {
      text-align: center;
      margin-top: 60px;
    }

    /* ========== FULLSCREEN CARD FLIP EXPERIENCE ========== */

    /* Fullscreen overlay */
    .concept-fullscreen-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0);
      backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);
      z-index: -1;
      pointer-events: none;
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .concept.fullscreen-active .concept-fullscreen-overlay {
      background: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      z-index: 9998;
      pointer-events: auto;
    }

    /* Close button */
    .fullscreen-close {
      position: fixed;
      top: 24px;
      right: 24px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      font-size: 28px;
      cursor: pointer;
      z-index: 10001;
      opacity: 0;
      transform: scale(0.8) rotate(-90deg);
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }

    .concept.fullscreen-active .fullscreen-close {
      opacity: 1;
      transform: scale(1) rotate(0deg);
      pointer-events: auto;
      transition-delay: 0.5s;
    }

    .fullscreen-close:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.1) rotate(90deg);
    }

    /* Fullscreen cards container - Gallery style */
    .fullscreen-cards-container {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 100px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .concept.fullscreen-active .fullscreen-cards-container {
      opacity: 1;
      pointer-events: auto;
    }

    /* Individual fullscreen card - Gallery */
    .fullscreen-card {
      position: absolute;
      width: min(500px, 85vw);
      height: min(600px, 80vh);
      perspective: 1500px;
      cursor: default;
      opacity: 0;
      transform: scale(0.85) translateX(100px);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }

    .fullscreen-card.active {
      opacity: 1;
      transform: scale(1) translateX(0);
      pointer-events: auto;
      z-index: 10;
    }

    .fullscreen-card.prev {
      opacity: 0.3;
      transform: scale(0.8) translateX(-120%);
      pointer-events: none;
    }

    .fullscreen-card.next {
      opacity: 0.3;
      transform: scale(0.8) translateX(120%);
      pointer-events: none;
    }

    .fullscreen-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .concept.fullscreen-active .fullscreen-card.active .fullscreen-card-inner {
      transform: rotateY(180deg);
      transition-delay: 0.2s;
    }

    /* Gallery navigation arrows */
    .gallery-nav {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      font-size: 24px;
      cursor: pointer;
      z-index: 10001;
      opacity: 0;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .gallery-nav.prev { left: 24px; }
    .gallery-nav.next { right: 24px; }

    .concept.fullscreen-active .gallery-nav {
      opacity: 1;
      pointer-events: auto;
    }

    .gallery-nav:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-50%) scale(1.1);
    }

    .gallery-nav:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .gallery-nav:disabled:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-50%) scale(1);
    }

    .gallery-nav svg {
      width: 24px;
      height: 24px;
    }

    /* Gallery dots indicator */
    .gallery-dots {
      position: fixed;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10001;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .concept.fullscreen-active .gallery-dots {
      opacity: 1;
      pointer-events: auto;
    }

    .gallery-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
    }

    .gallery-dot.active {
      background: white;
      transform: scale(1.2);
    }

    .gallery-dot:hover:not(.active) {
      background: rgba(255, 255, 255, 0.5);
    }

    /* Card faces */
    .fullscreen-card-front,
    .fullscreen-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      border-radius: 28px;
      overflow: hidden;
    }

    .fullscreen-card-front {
      background: linear-gradient(
        160deg,
        hsla(var(--fs-card-hue), var(--fs-card-sat), 45%, 1) 0%,
        hsla(var(--fs-card-hue), var(--fs-card-sat), 35%, 1) 100%
      );
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .fullscreen-card-front svg {
      width: 80px;
      height: 80px;
      color: rgba(255, 255, 255, 0.4);
    }

    /* Card back - the detailed view */
    .fullscreen-card-back {
      transform: rotateY(180deg);
      background: linear-gradient(
        160deg,
        hsla(var(--fs-card-hue), var(--fs-card-sat), 12%, 1) 0%,
        hsla(var(--fs-card-hue), var(--fs-card-sat), 8%, 1) 100%
      );
      padding: 40px;
      display: flex;
      flex-direction: column;
      border: 1px solid hsla(var(--fs-card-hue), var(--fs-card-sat), 40%, 0.3);
      box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 hsla(var(--fs-card-hue), var(--fs-card-sat), 60%, 0.1);
    }

    /* Decorative gradient orb on back */
    .fullscreen-card-back::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -30%;
      width: 80%;
      height: 100%;
      background: radial-gradient(
        ellipse,
        hsla(var(--fs-card-hue), var(--fs-card-sat), 50%, 0.15) 0%,
        transparent 70%
      );
      pointer-events: none;
      z-index: 0;
    }

    /* Frosted glass background images */
    .fullscreen-card-back::after {
      content: '';
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      filter: blur(1px) saturate(0.7);
      z-index: 0;
      border-radius: 28px;
      pointer-events: none;
      transition: opacity 0.6s ease;
      -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.3) 20%,
        rgba(0,0,0,0.6) 45%,
        rgba(0,0,0,0.85) 70%,
        rgba(0,0,0,1) 100%
      );
      mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.3) 20%,
        rgba(0,0,0,0.6) 45%,
        rgba(0,0,0,0.85) 70%,
        rgba(0,0,0,1) 100%
      );
    }

    .concept.fullscreen-active .fullscreen-card-back::after {
      opacity: 0.55;
    }

    /* Individual background images per card */
    .fullscreen-card:nth-child(1) .fullscreen-card-back::after {
      background-image: url('/images/training-bg.png');
    }
    .fullscreen-card:nth-child(2) .fullscreen-card-back::after {
      background-image: url('/images/quiz-bg.png');
    }
    /* Card 3 (Elefantenaufgabe) - no background image */
    .fullscreen-card:nth-child(4) .fullscreen-card-back::after {
      background-image: url('/images/knobelbox-bg.png');
    }

    /* Beta badge fix for fullscreen cards */
    .fullscreen-card-back .card-badge-new {
      position: absolute !important;
      top: 24px !important;
      left: 28px !important;
      right: auto !important;
      width: auto !important;
      height: auto !important;
      flex: none !important;
      align-self: auto !important;
    }

    /* Large icon on back */
    .fullscreen-card-icon {
      width: 72px;
      height: 72px;
      border-radius: 20px;
      background: linear-gradient(
        135deg,
        hsla(var(--fs-card-hue), var(--fs-card-sat), 50%, 1) 0%,
        hsla(var(--fs-card-hue), var(--fs-card-sat), 40%, 1) 100%
      );
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      box-shadow: 0 12px 40px hsla(var(--fs-card-hue), var(--fs-card-sat), 40%, 0.4);
      position: relative;
      z-index: 1;
    }

    .fullscreen-card-icon svg {
      width: 36px;
      height: 36px;
      color: white;
    }

    /* Card number badge */
    .fullscreen-card-number {
      position: absolute;
      top: 24px;
      right: 28px;
      font-family: 'Fredoka', sans-serif;
      font-size: 120px;
      font-weight: 900;
      color: hsla(var(--fs-card-hue), var(--fs-card-sat), 50%, 0.08);
      line-height: 1;
      pointer-events: none;
    }

    .fullscreen-card-back h3 {
      font-family: 'Fredoka', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: white;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .fullscreen-card-back .card-subtitle {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: hsla(var(--fs-card-hue), var(--fs-card-sat), 70%, 1);
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .fullscreen-card-back p {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.7);
      flex-grow: 1;
      position: relative;
      z-index: 1;
    }

    /* CTA Button on card back */
    .fullscreen-card-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 24px;
      background: linear-gradient(
        135deg,
        hsla(var(--fs-card-hue), var(--fs-card-sat), 50%, 1) 0%,
        hsla(var(--fs-card-hue), var(--fs-card-sat), 40%, 1) 100%
      );
      border: none;
      border-radius: 12px;
      color: white;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: auto;
      align-self: flex-start;
      position: relative;
      z-index: 1;
      box-shadow: 0 8px 24px hsla(var(--fs-card-hue), var(--fs-card-sat), 40%, 0.3);
    }

    .fullscreen-card-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px hsla(var(--fs-card-hue), var(--fs-card-sat), 40%, 0.5);
    }

    .fullscreen-card-cta svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .fullscreen-card-cta:hover svg {
      transform: translateX(4px);
    }

    /* "Mehr erfahren" trigger button */
    .fullscreen-trigger {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 32px;
      background: linear-gradient(135deg, var(--primary) 0%, #a78bfa 100%);
      border: none;
      border-radius: 14px;
      color: white;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow:
        0 8px 32px rgba(139, 92, 246, 0.35),
        0 2px 8px rgba(139, 92, 246, 0.2);
      margin-top: 40px;
    }

    .fullscreen-trigger:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow:
        0 16px 48px rgba(139, 92, 246, 0.45),
        0 4px 12px rgba(139, 92, 246, 0.3);
    }

    .fullscreen-trigger svg {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
    }

    .fullscreen-trigger:hover svg {
      transform: translateX(4px);
    }

    /* Responsive fullscreen - Laptop with limited height */
    @media (max-width: 1400px), (max-height: 900px) {
      .fullscreen-card-back {
        padding: 28px;
      }

      .fullscreen-card-back h3 {
        font-size: 24px;
        margin-bottom: 8px;
      }

      .fullscreen-card-back .card-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
      }

      .fullscreen-card-back p {
        font-size: 14px;
        line-height: 1.5;
      }

      .fullscreen-card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
        border-radius: 14px;
      }

      .fullscreen-card-icon svg {
        width: 26px;
        height: 26px;
      }

      .fullscreen-card-number {
        font-size: 80px;
      }

      .fullscreen-card-cta {
        padding: 12px 20px;
        font-size: 14px;
        margin-top: 12px;
      }
    }

    /* Small laptops / iPad Pro landscape */
    @media (max-height: 750px) {
      .fullscreen-card-back {
        padding: 20px;
      }

      .fullscreen-card-back h3 {
        font-size: 20px;
        margin-bottom: 6px;
      }

      .fullscreen-card-back .card-subtitle {
        font-size: 11px;
        margin-bottom: 8px;
      }

      .fullscreen-card-back p {
        font-size: 13px;
        line-height: 1.45;
      }

      .fullscreen-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
        border-radius: 12px;
      }

      .fullscreen-card-icon svg {
        width: 22px;
        height: 22px;
      }

      .fullscreen-card-number {
        font-size: 60px;
        top: 16px;
        right: 20px;
      }

      .fullscreen-card-cta {
        padding: 10px 16px;
        font-size: 13px;
        margin-top: 10px;
      }

      .fullscreen-card-back .card-badge-new {
        top: 16px !important;
        left: 20px !important;
        font-size: 8px;
        padding: 4px 8px;
      }
    }

    /* Responsive fullscreen - tablet/iPad portrait */
    @media (max-width: 900px) {
      .fullscreen-cards-container {
        padding: 60px 80px;
      }

      .fullscreen-card {
        width: min(420px, 80vw);
        height: min(520px, 75vh);
      }

      .gallery-nav {
        width: 48px;
        height: 48px;
      }

      .gallery-nav.prev { left: 16px; }
      .gallery-nav.next { right: 16px; }

      .fullscreen-card-back {
        padding: 24px;
      }

      .fullscreen-card-back h3 {
        font-size: 22px;
        margin-bottom: 8px;
      }

      .fullscreen-card-back .card-subtitle {
        font-size: 11px;
        margin-bottom: 10px;
      }

      .fullscreen-card-back p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 16px;
      }

      .fullscreen-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
      }

      .fullscreen-card-icon svg {
        width: 24px;
        height: 24px;
      }

      .fullscreen-card-number {
        font-size: 70px;
      }

      .fullscreen-card-cta {
        padding: 12px 18px;
        font-size: 14px;
        margin-top: auto;
      }

      .fullscreen-close {
        top: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 24px;
      }
    }

    @media (max-width: 500px) {
      .fullscreen-cards-container {
        padding: 50px 16px;
      }

      .fullscreen-card {
        width: 90vw;
        height: 70vh;
      }

      .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
      }

      .gallery-nav.prev { left: 8px; }
      .gallery-nav.next { right: 8px; }

      .fullscreen-card.prev,
      .fullscreen-card.next {
        opacity: 0;
      }

      .fullscreen-card-back {
        padding: 18px;
      }

      .fullscreen-card-back h3 {
        font-size: 18px;
      }

      .fullscreen-card-back p {
        font-size: 13px;
      }

      .fullscreen-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
      }

      .fullscreen-card-icon svg {
        width: 20px;
        height: 20px;
      }

      .fullscreen-trigger {
        padding: 14px 24px;
        font-size: 14px;
      }
    }

    /* ========== RESPONSIVE ========== */

    /* Tablet landscape - reduced spread */
    @media (max-width: 1200px) {
      .concept-decks {
        gap: 40px;
        max-width: 900px;
      }

      .card-deck {
        width: 240px;
      }

      .deck-stack {
        width: 220px;
      }

      .deck-card {
        height: 160px;
      }

      .card-face {
        padding: 20px;
      }

      .card-icon-wrap {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
      }

      .card-icon-wrap svg {
        width: 20px;
        height: 20px;
      }

      .deck-card h4 {
        font-size: 17px;
      }

      .deck-card p {
        font-size: 12px;
      }

      .card-number {
        font-size: 70px;
        top: -10px;
      }

      /* Reduced fan spread for tablet landscape */
      .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="0"] {
        transform: translateX(-240px) translateY(0) rotate(-4deg) !important;
      }
      .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="1"] {
        transform: translateX(-80px) translateY(0) rotate(-1.5deg) !important;
      }
      .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="2"] {
        transform: translateX(80px) translateY(0) rotate(1.5deg) !important;
      }
      .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="3"] {
        transform: translateX(240px) translateY(0) rotate(4deg) !important;
      }

      .card-deck[data-deck="plattformen"].expanded .deck-card[data-card="0"] {
        transform: translateX(-160px) translateY(0) rotate(-3deg) !important;
      }
      .card-deck[data-deck="plattformen"].expanded .deck-card[data-card="1"] {
        transform: translateX(0px) translateY(0) rotate(0deg) !important;
      }
      .card-deck[data-deck="plattformen"].expanded .deck-card[data-card="2"] {
        transform: translateX(160px) translateY(0) rotate(3deg) !important;
      }

      /* Hover states */
      .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="0"]:hover {
        transform: translateX(-240px) translateY(-10px) rotate(-4deg) scale(1.03) !important;
      }
      .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="1"]:hover {
        transform: translateX(-80px) translateY(-10px) rotate(-1.5deg) scale(1.03) !important;
      }
      .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="2"]:hover {
        transform: translateX(80px) translateY(-10px) rotate(1.5deg) scale(1.03) !important;
      }
      .card-deck[data-deck="bestandteile"].expanded .deck-card[data-card="3"]:hover {
        transform: translateX(240px) translateY(-10px) rotate(4deg) scale(1.03) !important;
      }

      .card-deck[data-deck="plattformen"].expanded .deck-card[data-card="0"]:hover {
        transform: translateX(-160px) translateY(-10px) rotate(-3deg) scale(1.03) !important;
      }
      .card-deck[data-deck="plattformen"].expanded .deck-card[data-card="1"]:hover {
        transform: translateX(0px) translateY(-10px) rotate(0deg) scale(1.03) !important;
      }
      .card-deck[data-deck="plattformen"].expanded .deck-card[data-card="2"]:hover {
        transform: translateX(160px) translateY(-10px) rotate(3deg) scale(1.03) !important;
      }

      /* Reduced push effect */
      .concept-decks.left-expanded .card-deck:last-of-type {
        transform: translateX(180px);
      }
      .concept-decks.right-expanded .card-deck:first-of-type {
        transform: translateX(-180px);
      }
    }

    /* iPad / Tablet portrait - vertical card layout */
    @media (max-width: 1024px) {
      .concept-decks {
        flex-direction: column;
        align-items: center;
        gap: 60px;
        min-height: auto;
        padding: 0 20px;
      }

      /* Disable push effect on tablet */
      .concept-decks.left-expanded .card-deck:last-of-type,
      .concept-decks.right-expanded .card-deck:first-of-type {
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
      }

      .deck-divider {
        flex-direction: row;
        padding: 0;
        width: 200px;
      }

      .divider-line {
        width: 80px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
      }

      .card-deck {
        width: 100%;
        max-width: 400px;
      }

      .deck-stack {
        width: 100%;
        max-width: 340px;
        height: 180px;
      }

      .deck-card {
        height: 160px;
      }

      /* Vertical fan on tablet - cards stack downward when expanded */
      .card-deck.expanded .deck-stack {
        height: auto !important;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .card-deck.expanded .deck-card {
        position: relative !important;
        transform: none !important;
        margin-bottom: 0;
        opacity: 1 !important;
      }

      .card-deck.expanded .deck-card:hover {
        transform: translateY(-4px) scale(1.02) !important;
      }

      /* Restore card stacking for collapsed state */
      .card-deck:not(.expanded) .deck-card {
        position: absolute;
      }
    }

    @media (max-width: 600px) {
      .concept-decks {
        gap: 50px;
        margin-top: 40px;
      }

      .card-deck {
        max-width: 100%;
      }

      .deck-stack {
        max-width: 300px;
      }

      .deck-card {
        height: 150px;
      }

      .card-number {
        font-size: 60px;
        top: -8px;
      }

      .card-face {
        padding: 18px;
      }

      .card-icon-wrap {
        width: 36px;
        height: 36px;
        border-radius: 10px;
      }

      .card-icon-wrap svg {
        width: 18px;
        height: 18px;
      }

      .deck-card h4 {
        font-size: 16px;
        margin-bottom: 4px;
      }

      .deck-card p {
        font-size: 12px;
      }

      .deck-label {
        font-size: 11px;
        margin-bottom: 20px;
      }

      .deck-icon {
        width: 28px;
        height: 28px;
      }

      .deck-icon svg {
        width: 14px;
        height: 14px;
      }

      .deck-trigger {
        padding: 10px 18px;
        font-size: 13px;
      }
    }

    @media (max-width: 400px) {
      .deck-stack {
        max-width: 260px;
      }

      .deck-card {
        height: 140px;
      }

      .card-number {
        font-size: 50px;
      }

      .card-face {
        padding: 16px;
      }

      .deck-card h4 {
        font-size: 15px;
      }

      .deck-card p {
        font-size: 11px;
      }
    }

    /* ========== INTERACTIVE iPad DEMO ========== */
    .ipad-demo-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      perspective: 1200px;
    }

    .ipad-frame {
      position: relative;
      background: linear-gradient(145deg, #1a1a1f 0%, #2d2d35 50%, #1a1a1f 100%);
      border-radius: 44px;
      padding: 18px;
      box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
      transform: rotateX(2deg);
      transition: transform 0.5s ease;
    }

    .ipad-frame:hover {
      transform: rotateX(0deg) scale(1.01);
    }

    .ipad-notch {
      position: absolute;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      width: 10px;
      height: 10px;
      background: #0a0a0c;
      border-radius: 50%;
      box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
      z-index: 10;
    }

    .ipad-screen {
      width: 580px;
      height: 420px;
      background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
      border-radius: 28px;
      overflow: hidden;
      position: relative;
    }

    /* Demo Home Screen */
    .demo-home {
      position: absolute;
      inset: 0;
      padding: 32px;
      display: flex;
      flex-direction: column;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .demo-home.hidden {
      opacity: 0;
      transform: scale(0.95);
      pointer-events: none;
    }

    .demo-home-header {
      text-align: center;
      margin-bottom: 28px;
    }

    .demo-home-title {
      font-family: 'Fredoka', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: white;
      margin-bottom: 6px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .demo-home-subtitle {
      font-size: 13px;
      color: rgba(255,255,255,0.8);
    }

    .demo-tiles {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      flex: 1;
    }

    .demo-tile {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 24px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .demo-tile::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%);
      pointer-events: none;
    }

    .demo-tile.active {
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .demo-tile.active:hover {
      transform: translateY(-4px) scale(1.02);
      background: rgba(255, 255, 255, 0.35);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .demo-tile.locked {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .demo-tile-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      position: relative;
    }

    .demo-tile.active .demo-tile-icon {
      background: rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .demo-tile.locked .demo-tile-icon {
      background: rgba(0, 0, 0, 0.2);
    }

    .demo-tile-lock {
      position: absolute;
      bottom: -4px;
      right: -4px;
      width: 24px;
      height: 24px;
      background: #374151;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      border: 2px solid rgba(255,255,255,0.1);
    }

    .demo-tile-title {
      font-weight: 600;
      font-size: 15px;
      color: white;
      text-align: center;
    }

    .demo-tile.locked .demo-tile-title {
      color: rgba(255, 255, 255, 0.6);
    }

    /* Demo Level Screen */
    .demo-level {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
      padding: 20px;
      display: flex;
      flex-direction: column;
      opacity: 0;
      transform: scale(1.05);
      pointer-events: none;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .demo-level.active {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
    }

    .level-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .level-back {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: white;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: all 0.2s ease;
      font-size: 18px;
    }

    .level-back:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .level-title {
      flex: 1;
      font-family: 'Fredoka', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: #1e293b;
    }

    .level-progress {
      font-size: 13px;
      color: #64748b;
      background: white;
      padding: 6px 12px;
      border-radius: 20px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .level-reset {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: white;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: all 0.2s ease;
      font-size: 18px;
      color: #64748b;
    }

    .level-reset:hover {
      transform: scale(1.05) rotate(180deg);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      color: #8b5cf6;
    }

    /* Towers Area */
    .towers-container {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 12px;
      padding: 10px 0 20px;
    }

    .tower {
      display: flex;
      flex-direction: column;
      gap: 6px;
      align-items: center;
    }

    .tower-base {
      width: 56px;
      height: 8px;
      background: linear-gradient(180deg, #94a3b8 0%, #64748b 100%);
      border-radius: 4px;
      margin-top: 4px;
    }

    .block-slot {
      width: 52px;
      height: 36px;
      border-radius: 8px;
      border: 2px dashed #cbd5e1;
      background: rgba(255,255,255,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }

    .block-slot.drag-over {
      border-color: #8b5cf6;
      background: rgba(139, 92, 246, 0.1);
      transform: scale(1.05);
    }

    .block-slot.filled {
      border: none;
      background: transparent;
    }

    .block-slot.invalid {
      border-color: #ef4444;
      background: rgba(239, 68, 68, 0.1);
      animation: shake 0.3s ease;
    }

    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      25% { transform: translateX(-4px); }
      75% { transform: translateX(4px); }
    }

    /* Blocks */
    .block {
      width: 48px;
      height: 32px;
      border-radius: 6px;
      cursor: grab;
      transition: all 0.2s ease;
      box-shadow: 0 3px 8px rgba(0,0,0,0.15);
      position: relative;
    }

    .block::before {
      content: '';
      position: absolute;
      inset: 2px;
      background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 50%);
      border-radius: 4px;
      pointer-events: none;
    }

    .block.purple {
      background: linear-gradient(180deg, #a78bfa 0%, #8b5cf6 100%);
    }

    .block.orange {
      background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    }

    .block.green {
      background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
    }

    .block:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    }

    .block.dragging {
      opacity: 0.8;
      cursor: grabbing;
      transform: scale(1.1);
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      z-index: 100;
    }

    .block.placed {
      cursor: default;
      animation: placeBlock 0.3s ease;
    }

    @keyframes placeBlock {
      0% { transform: scale(1.2); }
      50% { transform: scale(0.95); }
      100% { transform: scale(1); }
    }

    /* Blocks Pool */
    .blocks-pool {
      background: white;
      border-radius: 16px;
      padding: 16px;
      display: flex;
      justify-content: center;
      gap: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      flex-wrap: wrap;
    }

    .pool-label {
      width: 100%;
      text-align: center;
      font-size: 12px;
      color: #64748b;
      margin-bottom: 4px;
    }

    /* Success State */
    .level-success {
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.95);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .level-success.show {
      opacity: 1;
      pointer-events: auto;
    }

    .success-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      animation: successPop 0.5s ease;
      box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
    }

    @keyframes successPop {
      0% { transform: scale(0); }
      50% { transform: scale(1.2); }
      100% { transform: scale(1); }
    }

    .success-text {
      font-family: 'Fredoka', sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: #1e293b;
    }

    .success-btn {
      background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
      color: white;
      border: none;
      padding: 12px 28px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    }

    .success-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    }

    /* Large screens: Bigger iPad */
    @media (min-width: 1200px) {
      .ipad-screen {
        width: 720px;
        height: 520px;
      }

      .demo-home {
        padding: 40px;
      }

      .demo-home-title {
        font-size: 26px;
      }

      .demo-tiles {
        gap: 20px;
      }

      .demo-tile {
        padding: 32px 20px;
        border-radius: 24px;
      }

      .demo-tile-icon {
        width: 72px;
        height: 72px;
        font-size: 32px;
      }

      .towers-container {
        gap: 16px;
      }

      .block-slot {
        width: 60px;
        height: 42px;
      }

      .block {
        width: 56px;
        height: 38px;
      }

      .tower-base {
        width: 64px;
      }
    }

    /* Error state for blocks */
    .block.error {
      animation: blockError 0.5s ease;
      box-shadow: 0 0 20px rgba(239, 68, 68, 0.6) !important;
    }

    @keyframes blockError {
      0%, 100% { transform: translateX(0); }
      20% { transform: translateX(-6px); }
      40% { transform: translateX(6px); }
      60% { transform: translateX(-4px); }
      80% { transform: translateX(4px); }
    }

    /* Check button */
    .check-btn {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
      color: white;
      border: none;
      padding: 14px 32px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      box-shadow: 0 6px 24px rgba(139, 92, 246, 0.5);
      transition: all 0.3s ease;
      opacity: 0;
      pointer-events: none;
      z-index: 10;
    }

    .check-btn.visible {
      opacity: 1;
      pointer-events: auto;
      animation: checkBtnPop 0.4s ease;
    }

    @keyframes checkBtnPop {
      0% { transform: translateX(-50%) scale(0.8); opacity: 0; }
      50% { transform: translateX(-50%) scale(1.05); }
      100% { transform: translateX(-50%) scale(1); opacity: 1; }
    }

    .check-btn:hover {
      transform: translateX(-50%) translateY(-2px);
      box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
    }

    /* Mobile: No iPad Frame */
    @media (max-width: 700px) {
      .ipad-frame {
        padding: 0;
        background: none;
        box-shadow: none;
        border-radius: 24px;
        transform: none;
      }

      .ipad-frame:hover {
        transform: none;
      }

      .ipad-notch {
        display: none;
      }

      .ipad-screen {
        width: 100%;
        max-width: 400px;
        height: 480px;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.2);
      }

      .demo-tiles {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
      }

      .demo-tile {
        padding: 16px 10px;
      }

      .demo-tile-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
      }

      .demo-tile-title {
        font-size: 12px;
      }

      .towers-container {
        gap: 6px;
      }

      .tower-base {
        width: 44px;
      }

      .block-slot {
        width: 40px;
        height: 28px;
      }

      .block {
        width: 36px;
        height: 24px;
      }
    }

    /* Stats Banner - Übergang zwischen About und Timeline */
    /* ========== LIQUID GLASS STATS ========== */
    .stats-banner {
      background: linear-gradient(
        180deg,
        #f5f4f1 0%,
        var(--bg-cream) 15%,
        var(--bg-cream) 85%,
        #f5f4f1 100%
      );
      padding: 70px 0 80px;
      position: relative;
      overflow: hidden;
    }

    /* Elegant decorative edge lines */
    .stats-banner-edge {
      position: absolute;
      left: 0;
      right: 0;
      height: 1px;
      pointer-events: none;
      z-index: 3;
    }

    .stats-banner-edge.top {
      top: 0;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(139, 92, 246, 0.15) 20%,
        rgba(139, 92, 246, 0.25) 50%,
        rgba(139, 92, 246, 0.15) 80%,
        transparent 100%
      );
    }

    .stats-banner-edge.bottom {
      bottom: 0;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(139, 92, 246, 0.1) 20%,
        rgba(139, 92, 246, 0.2) 50%,
        rgba(139, 92, 246, 0.1) 80%,
        transparent 100%
      );
    }

    /* Inner shadow overlays for depth */
    .stats-shadow-top,
    .stats-shadow-bottom {
      position: absolute;
      left: 0;
      right: 0;
      height: 60px;
      pointer-events: none;
      z-index: 2;
    }

    .stats-shadow-top {
      top: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, transparent 100%);
    }

    .stats-shadow-bottom {
      bottom: 0;
      background: linear-gradient(0deg, rgba(0,0,0,0.04) 0%, transparent 100%);
    }

    /* Animated background blobs */
    .stats-banner::before,
    .stats-banner::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.5;
      animation: liquidFloat 8s ease-in-out infinite;
    }

    .stats-banner::before {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
      top: -150px;
      left: 10%;
      animation-delay: 0s;
    }

    .stats-banner::after {
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(251, 191, 36, 0.35) 0%, transparent 70%);
      bottom: -120px;
      right: 15%;
      animation-delay: -4s;
    }

    @keyframes liquidFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      25% { transform: translate(30px, -20px) scale(1.05); }
      50% { transform: translate(-20px, 15px) scale(0.95); }
      75% { transform: translate(15px, 25px) scale(1.02); }
    }

    .stats-row {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 0;
      position: relative;
      z-index: 1;
      /* Glass card container */
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.65) 50%,
        rgba(255, 255, 255, 0.75) 100%
      );
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 28px;
      padding: 8px;
      max-width: 750px;
      margin: 0 auto;
      /* Liquid glass border */
      border: 1px solid rgba(255, 255, 255, 0.8);
      box-shadow:
        0 8px 32px rgba(139, 92, 246, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(139, 92, 246, 0.05);
      /* Shine effect */
      background-image:
        linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.85) 0%,
          rgba(255, 255, 255, 0.65) 50%,
          rgba(255, 255, 255, 0.75) 100%
        ),
        linear-gradient(
          105deg,
          transparent 40%,
          rgba(255, 255, 255, 0.5) 45%,
          rgba(255, 255, 255, 0.8) 50%,
          rgba(255, 255, 255, 0.5) 55%,
          transparent 60%
        );
      background-size: 100% 100%, 200% 100%;
      animation: glassShine 6s ease-in-out infinite;
    }

    @keyframes glassShine {
      0%, 100% { background-position: 0 0, -100% 0; }
      50% { background-position: 0 0, 200% 0; }
    }

    .stats-banner .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 32px 44px;
      position: relative;
      flex: 1;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .stats-banner .stat-item:first-child {
      border-radius: 20px 0 0 20px;
    }

    .stats-banner .stat-item:last-child {
      border-radius: 0 20px 20px 0;
    }

    .stats-banner .stat-item:hover {
      background: rgba(139, 92, 246, 0.08);
      transform: translateY(-2px);
    }

    .stats-banner .stat-number {
      font-family: 'Fredoka', sans-serif;
      font-size: clamp(44px, 5vw, 58px);
      font-weight: 700;
      background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 40%, #a78bfa 80%, #c4b5fd 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 10px;
      filter: drop-shadow(0 2px 4px rgba(139, 92, 246, 0.2));
      transition: transform 0.3s ease;
    }

    .stats-banner .stat-item:hover .stat-number {
      transform: scale(1.05);
    }

    .stats-banner .stat-label {
      font-size: 14px;
      font-weight: 600;
      color: #5b5675;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      opacity: 0.85;
    }

    .stat-divider {
      width: 1px;
      align-self: stretch;
      margin: 20px 0;
      background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(139, 92, 246, 0.25) 20%,
        rgba(139, 92, 246, 0.4) 50%,
        rgba(139, 92, 246, 0.25) 80%,
        transparent 100%
      );
      position: relative;
    }

    .stat-divider.mobile-only {
      display: none;
    }

    .stat-divider::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 6px;
      height: 6px;
      background: linear-gradient(135deg, #a78bfa, #8b5cf6);
      border-radius: 50%;
      box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
    }

    @media (max-width: 700px) {
      .stats-banner {
        padding: 50px 20px 60px;
      }

      .stats-row {
        flex-direction: column;
        gap: 0;
        padding: 6px;
        border-radius: 24px;
      }

      .stats-banner .stat-item {
        padding: 24px 32px;
        border-radius: 0 !important;
      }

      .stats-banner .stat-item:first-child {
        border-radius: 18px 18px 0 0 !important;
      }

      .stats-banner .stat-item:last-child {
        border-radius: 0 0 18px 18px !important;
      }

      .stat-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
        background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(139, 92, 246, 0.3) 20%,
          rgba(139, 92, 246, 0.5) 50%,
          rgba(139, 92, 246, 0.3) 80%,
          transparent 100%
        );
      }

      .stat-divider::after {
        display: none;
      }

      .stat-divider.mobile-only {
        display: block;
      }
    }

    /* ========== JOURNEY SECTION - Modern Redesign ========== */
    .journey {
      position: relative;
      padding: 60px 0 80px;
      overflow: hidden;
      background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
    }

    /* Animated Background */
    .journey-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .journey-gradient {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 70% 100%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    }

    .journey-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 0%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 0%, transparent 70%);
    }

    .journey-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      animation: journeyFloat 20s ease-in-out infinite;
    }

    .journey-glow-1 {
      width: 500px;
      height: 500px;
      top: -10%;
      right: -5%;
      background: rgba(139, 92, 246, 0.2);
      animation-delay: 0s;
    }

    .journey-glow-2 {
      width: 400px;
      height: 400px;
      bottom: -15%;
      left: -5%;
      background: rgba(245, 158, 11, 0.15);
      animation-delay: -10s;
    }

    @keyframes journeyFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(30px, -30px) scale(1.1); }
    }

    /* Header */
    .journey-header {
      text-align: center;
      margin-bottom: 70px;
      position: relative;
      z-index: 2;
    }

    .journey-header .section-label {
      background: linear-gradient(135deg, #a78bfa, #c4b5fd);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 16px;
      display: inline-block;
    }

    .journey-header h2 {
      color: #f1f5f9;
      font-size: clamp(32px, 5vw, 52px);
      margin-bottom: 16px;
      font-weight: 600;
    }

    .journey-header p {
      color: #94a3b8;
      font-size: 18px;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Progress Line */
    .journey-progress {
      position: relative;
      max-width: 1000px;
      margin: 0 auto 40px;
      padding: 0 40px;
    }

    .journey-line {
      position: relative;
      height: 4px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
      overflow: hidden;
    }

    .journey-line-fill {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 58%;
      background: linear-gradient(90deg, #10b981, #8b5cf6, #a78bfa);
      border-radius: 2px;
      animation: linePulse 3s ease-in-out infinite;
    }

    .journey-line-glow {
      position: absolute;
      left: 56%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 20px;
      height: 20px;
      background: #8b5cf6;
      border-radius: 50%;
      box-shadow: 0 0 20px #8b5cf6, 0 0 40px rgba(139, 92, 246, 0.5);
      animation: glowPulse 2s ease-in-out infinite;
    }

    @keyframes linePulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.8; }
    }

    @keyframes glowPulse {
      0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 20px #8b5cf6, 0 0 40px rgba(139, 92, 246, 0.5); }
      50% { transform: translate(-50%, -50%) scale(1.2); box-shadow: 0 0 30px #8b5cf6, 0 0 60px rgba(139, 92, 246, 0.7); }
    }

    /* Cards Container */
    .journey-cards {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    /* Individual Card */
    .journey-card {
      position: relative;
      transition: transform 0.4s var(--transition-smooth);
    }

    .journey-card.reveal {
      transition-delay: calc(var(--delay, 0) * 0.1s);
    }

    .card-connector {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 16px;
    }

    .connector-dot {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      border: 2px solid rgba(255, 255, 255, 0.3);
      position: relative;
      z-index: 2;
      transition: all 0.3s var(--transition-smooth);
    }

    .connector-line {
      width: 2px;
      height: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
    }

    /* Completed State */
    .journey-card.completed .connector-dot {
      background: linear-gradient(135deg, #10b981, #34d399);
      border-color: #10b981;
      box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
    }

    .journey-card.completed .connector-line {
      background: linear-gradient(180deg, rgba(16, 185, 129, 0.4), transparent);
    }

    /* Current State */
    .journey-card.current .connector-dot {
      background: linear-gradient(135deg, #8b5cf6, #a78bfa);
      border-color: #8b5cf6;
      box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
      animation: currentDotPulse 2s ease-in-out infinite;
    }

    @keyframes currentDotPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.15); }
    }

    .journey-card.current .connector-line {
      background: linear-gradient(180deg, rgba(139, 92, 246, 0.5), transparent);
    }

    /* Future State */
    .journey-card.future .connector-dot {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
    }

    /* Card Inner */
    .card-inner {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 24px 16px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: all 0.4s var(--transition-smooth);
    }

    .journey-card:hover .card-inner {
      transform: translateY(-8px);
      border-color: rgba(255, 255, 255, 0.15);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .journey-card.completed .card-inner {
      background: rgba(16, 185, 129, 0.05);
      border-color: rgba(16, 185, 129, 0.2);
    }

    .journey-card.completed:hover .card-inner {
      background: rgba(16, 185, 129, 0.08);
      border-color: rgba(16, 185, 129, 0.3);
    }

    .journey-card.current .card-inner {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.05));
      border-color: rgba(139, 92, 246, 0.3);
      box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
    }

    .journey-card.current:hover .card-inner {
      box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
    }

    .journey-card.future .card-inner {
      opacity: 0.6;
    }

    .journey-card.future:hover .card-inner {
      opacity: 0.8;
    }

    /* Pulse Effect for Current */
    .card-pulse {
      position: absolute;
      inset: -2px;
      border-radius: 22px;
      background: linear-gradient(135deg, #8b5cf6, #a78bfa);
      opacity: 0;
      animation: cardPulse 3s ease-in-out infinite;
      z-index: -1;
    }

    @keyframes cardPulse {
      0%, 100% { opacity: 0; transform: scale(1); }
      50% { opacity: 0.3; transform: scale(1.02); }
    }

    /* Badge */
    .card-badge {
      width: 52px;
      height: 52px;
      margin: 0 auto 16px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s var(--transition-smooth);
    }

    .card-badge svg {
      width: 24px;
      height: 24px;
      stroke: #94a3b8;
      transition: all 0.3s var(--transition-smooth);
    }

    .journey-card.completed .card-badge {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.1));
      border-color: rgba(16, 185, 129, 0.3);
    }

    .journey-card.completed .card-badge svg {
      stroke: #10b981;
    }

    .journey-card.current .card-badge {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(167, 139, 250, 0.2));
      border-color: rgba(139, 92, 246, 0.4);
      box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    }

    .journey-card.current .card-badge svg {
      stroke: #a78bfa;
    }

    .journey-card:hover .card-badge {
      transform: scale(1.1) rotate(-3deg);
    }

    /* Content */
    .card-content {
      position: relative;
    }

    .card-date {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #64748b;
      margin-bottom: 8px;
    }

    .journey-card.completed .card-date {
      color: #10b981;
    }

    .journey-card.current .card-date {
      color: #a78bfa;
      background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .card-title {
      font-family: 'Fredoka', sans-serif;
      font-size: 17px;
      font-weight: 600;
      color: #e2e8f0;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .journey-card.future .card-title {
      color: #94a3b8;
    }

    .card-desc {
      font-size: 13px;
      color: #64748b;
      line-height: 1.5;
    }

    /* Celebration Emoji */
    .card-celebration {
      position: absolute;
      top: 12px;
      right: 12px;
      font-size: 18px;
      opacity: 0;
      transform: scale(0) rotate(-20deg);
      transition: all 0.4s var(--transition-bounce);
    }

    .journey-card.completed:hover .card-celebration {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }

    /* CTA Button */
    .card-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      padding: 10px 18px;
      background: linear-gradient(135deg, #8b5cf6, #7c3aed);
      color: white;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 10px;
      transition: all 0.3s var(--transition-smooth);
      box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    }

    .card-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
      background: linear-gradient(135deg, #7c3aed, #6d28d9);
    }

    .card-cta svg {
      width: 16px;
      height: 16px;
      stroke: white;
      transition: transform 0.3s var(--transition-smooth);
    }

    .card-cta:hover svg {
      transform: translateX(4px);
    }

    /* Responsive: Tablet */
    @media (max-width: 1100px) {
      .journey-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 700px;
      }

      .journey-progress {
        display: none;
      }
    }

    /* Responsive: Mobile */
    @media (max-width: 700px) {
      .journey {
        padding: 50px 0 60px;
      }

      .journey-header h2 {
        font-size: 28px;
      }

      .journey-header p {
        font-size: 16px;
        padding: 0 20px;
      }

      .journey-cards {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 0 16px;
      }

      .card-inner {
        padding: 20px 14px;
      }

      .card-badge {
        width: 44px;
        height: 44px;
        border-radius: 12px;
      }

      .card-badge svg {
        width: 20px;
        height: 20px;
      }

      .card-title {
        font-size: 15px;
      }

      .card-desc {
        font-size: 12px;
      }

      .card-cta {
        padding: 8px 14px;
        font-size: 12px;
      }
    }

    @media (max-width: 480px) {
      .journey-cards {
        grid-template-columns: 1fr;
        max-width: 320px;
      }

      .card-connector {
        display: none;
      }

      .card-inner {
        padding: 24px 20px;
      }
    }

    /* Legacy timeline-track reference (hide old) */
    .timeline-track {
      padding: 0 clamp(24px, 5vw, 60px);
      max-width: 1400px;
      margin: 0 auto;
    }

    .timeline-items {
      display: flex;
      justify-content: space-between;
      position: relative;
      z-index: 1;
      gap: 0;
      padding: 0;
    }

    /* The elegant horizontal line - inside items container for correct alignment */
    .timeline-items::before {
      content: '';
      position: absolute;
      top: 32px;
      /* Align exactly with first and last marker centers */
      left: calc(8.33%);
      right: calc(8.33%);
      height: 2px;
      background: linear-gradient(90deg,
        var(--success) 0%,
        var(--success) 30%,
        rgba(139, 92, 246, 0.4) 45%,
        rgba(139, 92, 246, 0.15) 70%,
        rgba(139, 92, 246, 0.08) 100%
      );
      border-radius: 2px;
      z-index: 0;
    }

    /* Hide the old line element */
    .timeline-line {
      display: none;
    }

    .timeline-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 1 1 0;
      max-width: none;
      min-width: 0;
      cursor: default;
      padding: 0 8px;
    }

    /* Elegant markers */
    .timeline-marker {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      position: relative;
      transition: all 0.5s var(--transition-smooth);
      background: white;
      box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    }

    /* Inner colored circle */
    .timeline-marker::before {
      content: '';
      position: absolute;
      inset: 6px;
      border-radius: 50%;
      transition: all 0.4s var(--transition-smooth);
    }

    /* Completed milestone - soft green */
    .timeline-item.completed .timeline-marker::before {
      background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    }

    .timeline-item.completed .timeline-marker svg {
      width: 22px;
      height: 22px;
      stroke: var(--success);
      stroke-width: 2.5;
      position: relative;
      z-index: 1;
    }

    /* Current milestone - vibrant purple */
    .timeline-item.current .timeline-marker {
      box-shadow:
        0 8px 30px rgba(139, 92, 246, 0.25),
        0 2px 8px rgba(139, 92, 246, 0.15);
      animation: float-marker 3s ease-in-out infinite;
    }

    .timeline-item.current .timeline-marker::before {
      background: linear-gradient(135deg, var(--primary), #a78bfa);
    }

    .timeline-item.current .timeline-marker::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 2px dashed var(--primary-light);
      opacity: 0.5;
      animation: rotate-ring 12s linear infinite;
    }

    .timeline-item.current .timeline-marker svg {
      width: 24px;
      height: 24px;
      stroke: white;
      stroke-width: 2;
      position: relative;
      z-index: 1;
    }

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

    @keyframes rotate-ring {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* Event milestone - warm orange */
    .timeline-item.event .timeline-marker {
      box-shadow:
        0 6px 25px rgba(245, 158, 11, 0.2),
        0 2px 6px rgba(245, 158, 11, 0.1);
    }

    .timeline-item.event .timeline-marker::before {
      background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    }

    .timeline-item.event .timeline-marker svg {
      width: 22px;
      height: 22px;
      stroke: #d97706;
      stroke-width: 2;
      position: relative;
      z-index: 1;
    }

    /* Future milestone - subtle and muted */
    .timeline-item.future .timeline-marker {
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    }

    .timeline-item.future .timeline-marker::before {
      background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    }

    .timeline-item.future .timeline-marker svg {
      width: 20px;
      height: 20px;
      stroke: #9ca3af;
      stroke-width: 2;
      position: relative;
      z-index: 1;
    }

    /* Beta/Coming Soon milestone - special purple gradient */
    .timeline-item.beta .timeline-marker {
      background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
      box-shadow:
        0 8px 30px rgba(139, 92, 246, 0.35),
        0 2px 8px rgba(139, 92, 246, 0.2);
      animation: pulse-beta 2s ease-in-out infinite;
    }

    .timeline-item.beta .timeline-marker::before {
      background: rgba(255, 255, 255, 0.2);
    }

    .timeline-item.beta .timeline-marker::after {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(167, 139, 250, 0.1));
      z-index: -1;
      animation: pulse-ring 2s ease-in-out infinite;
    }

    .timeline-item.beta .timeline-marker svg {
      width: 24px;
      height: 24px;
      stroke: white;
      stroke-width: 2;
      position: relative;
      z-index: 1;
    }

    @keyframes pulse-beta {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    @keyframes pulse-ring {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50% { opacity: 0.8; transform: scale(1.1); }
    }

    .timeline-item.beta .timeline-date {
      color: var(--primary);
      font-weight: 700;
    }

    .timeline-item.beta .timeline-title {
      color: var(--primary);
    }

    /* Date labels */
    .timeline-date {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 10px;
      text-align: center;
    }

    .timeline-item.completed .timeline-date {
      color: var(--success);
    }

    .timeline-item.event .timeline-date {
      color: #d97706;
    }

    .timeline-item.future .timeline-date {
      color: #9ca3af;
    }

    /* Content wrapper */
    .timeline-content {
      text-align: center;
      max-width: 140px;
      margin: 0 auto;
    }

    /* Titles */
    .timeline-title {
      font-family: 'Fredoka', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--text-dark);
      text-align: center;
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .timeline-item.future .timeline-title {
      color: #6b7280;
    }

    /* Descriptions */
    .timeline-desc {
      font-size: 13px;
      color: var(--text-muted);
      text-align: center;
      line-height: 1.55;
    }

    .timeline-item.future .timeline-desc {
      color: #9ca3af;
    }

    /* Event badge - refined pill */
    .timeline-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
      color: #92400e;
      font-size: 10px;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 20px;
      margin-top: 12px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
    }

    .timeline-badge svg {
      width: 11px;
      height: 11px;
      stroke-width: 2.5;
    }

    .timeline-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: white;
      color: var(--primary);
      font-size: 11px;
      font-weight: 700;
      padding: 8px 14px;
      border-radius: 20px;
      margin-top: 12px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(139, 92, 246, 0.15);
      border: 1.5px solid rgba(139, 92, 246, 0.2);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .timeline-cta:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
      border-color: var(--primary);
    }

    .timeline-cta svg {
      width: 14px;
      height: 14px;
      stroke-width: 2.5;
    }

    /* Hover effects */
    .timeline-item:hover .timeline-marker {
      transform: scale(1.12) translateY(-4px);
      box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .timeline-item.current:hover .timeline-marker {
      animation: none;
      transform: scale(1.15) translateY(-6px);
    }

    /* Extra large screens */
    @media (min-width: 1600px) {
      .timeline-track {
        max-width: 1500px;
      }

      .timeline-marker {
        width: 72px;
        height: 72px;
        margin-bottom: 28px;
      }

      .timeline-items::before {
        top: 36px;
      }

      .timeline-content {
        max-width: 160px;
      }

      .timeline-title {
        font-size: 18px;
      }

      .timeline-desc {
        font-size: 14px;
      }
    }

    /* Medium screens */
    @media (max-width: 1100px) {
      .timeline-marker {
        width: 58px;
        height: 58px;
        margin-bottom: 18px;
      }

      .timeline-items::before {
        top: 29px;
      }

      .timeline-content {
        max-width: 120px;
      }

      .timeline-title {
        font-size: 14px;
      }

      .timeline-desc {
        font-size: 11px;
      }
    }

    /* Tablet - 2 rows of 3 */
    @media (max-width: 900px) {
      .timeline-track {
        max-width: 650px;
        padding: 0 20px;
      }

      .timeline-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 36px 24px;
      }

      .timeline-items::before {
        display: none;
      }

      .timeline-item {
        flex: 0 0 calc(33.333% - 18px);
        padding: 0;
      }

      .timeline-content {
        max-width: 140px;
      }

      .timeline-marker {
        width: 54px;
        height: 54px;
      }

      .timeline-title {
        font-size: 15px;
      }

      .timeline-desc {
        font-size: 12px;
      }
    }

    /* Smaller tablets */
    @media (max-width: 750px) {
      .timeline-track {
        max-width: 550px;
      }

      .timeline-items {
        gap: 28px 16px;
      }

      .timeline-marker {
        width: 48px;
        height: 48px;
      }

      .timeline-content {
        max-width: 130px;
      }

      .timeline-title {
        font-size: 14px;
      }
    }

    /* Mobile - Beautiful vertical card timeline */
    @media (max-width: 700px) {
      .timeline {
        padding: 30px 0 80px;
      }

      .timeline-track {
        padding: 0 20px;
      }

      .timeline-line {
        display: block;
        top: 20px;
        bottom: 20px;
        left: 39px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg,
          var(--success) 0%,
          var(--success) 25%,
          var(--primary) 40%,
          rgba(139, 92, 246, 0.3) 60%,
          rgba(139, 92, 246, 0.1) 100%
        );
      }

      .timeline-line-progress {
        display: none;
      }

      .timeline-items {
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-width: none;
      }

      .timeline-item {
        flex: none;
        flex-direction: row;
        align-items: stretch;
        max-width: none;
        min-width: 0;
        gap: 20px;
        padding: 16px 0;
        position: relative;
      }

      .timeline-item::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 0;
        width: 20px;
        background: transparent;
      }

      .timeline-marker {
        position: relative;
        flex-shrink: 0;
        margin-bottom: 0;
        width: 44px;
        height: 44px;
        z-index: 2;
      }

      .timeline-marker::before {
        inset: 5px;
      }

      .timeline-item.completed .timeline-marker svg,
      .timeline-item.future .timeline-marker svg {
        width: 18px;
        height: 18px;
      }

      .timeline-item.current .timeline-marker svg,
      .timeline-item.beta .timeline-marker svg {
        width: 20px;
        height: 20px;
      }

      .timeline-content {
        flex: 1;
        background: white;
        padding: 16px 20px;
        border-radius: 14px;
        box-shadow:
          0 2px 8px rgba(0, 0, 0, 0.04),
          0 4px 16px rgba(0, 0, 0, 0.03);
        text-align: left;
        border: 1px solid rgba(139, 92, 246, 0.08);
        transition: all 0.3s ease;
      }

      .timeline-item.current .timeline-content {
        border-color: rgba(139, 92, 246, 0.2);
        box-shadow:
          0 2px 8px rgba(139, 92, 246, 0.08),
          0 8px 24px rgba(139, 92, 246, 0.06);
      }

      .timeline-item.beta .timeline-content {
        border-color: rgba(139, 92, 246, 0.25);
        background: linear-gradient(135deg, white 0%, rgba(139, 92, 246, 0.03) 100%);
      }

      .timeline-date {
        font-size: 11px;
        margin-bottom: 4px;
      }

      .timeline-title {
        font-size: 15px;
        text-align: left;
        margin-bottom: 4px;
      }

      .timeline-desc {
        font-size: 13px;
        text-align: left;
        line-height: 1.4;
      }

      .timeline-cta {
        margin-top: 10px;
        font-size: 10px;
        padding: 7px 12px;
      }

      /* Hide some descriptions on very small screens */
      @media (max-width: 400px) {
        .timeline-item.completed .timeline-desc {
          display: none;
        }

        .timeline-content {
          padding: 12px 16px;
        }
      }
    }

    /* ========== TESTIMONIALS - SPLIT LAYOUT ========== */
    .testimonials-floating {
      position: relative;
      padding: 70px 0 80px;
      background:
        linear-gradient(180deg,
          rgba(0,0,0,0.04) 0%,
          transparent 8%,
          transparent 92%,
          rgba(0,0,0,0.03) 100%
        ),
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #ebe5db 0%, #f0ebe3 15%, var(--bg-cream) 50%, #f0ebe3 85%, #ebe5db 100%);
      overflow: hidden;
    }

    /* Animated background blobs for depth */
    .testimonials-floating::before,
    .testimonials-floating::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0.5;
      pointer-events: none;
      animation: testimonialFloat 10s ease-in-out infinite;
    }

    .testimonials-floating::before {
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
      top: -120px;
      left: 5%;
      animation-delay: 0s;
    }

    .testimonials-floating::after {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
      bottom: -100px;
      right: 10%;
      animation-delay: -5s;
    }

    @keyframes testimonialFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      25% { transform: translate(25px, -15px) scale(1.05); }
      50% { transform: translate(-15px, 10px) scale(0.95); }
      75% { transform: translate(10px, 5px) scale(1.02); }
    }

    /* Edge accents - stronger like stats-banner */
    .testimonials-edge {
      position: absolute;
      left: 0;
      right: 0;
      height: 1px;
      pointer-events: none;
      z-index: 3;
    }

    .testimonials-edge.top {
      top: 0;
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(139, 92, 246, 0.15) 20%,
        rgba(139, 92, 246, 0.25) 50%,
        rgba(139, 92, 246, 0.15) 80%,
        transparent 100%
      );
    }

    .testimonials-edge.bottom {
      bottom: 0;
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(139, 92, 246, 0.1) 20%,
        rgba(139, 92, 246, 0.2) 50%,
        rgba(139, 92, 246, 0.1) 80%,
        transparent 100%
      );
    }

    /* Inner shadow overlays for depth */
    .testimonials-shadow-top,
    .testimonials-shadow-bottom {
      position: absolute;
      left: 0;
      right: 0;
      height: 60px;
      pointer-events: none;
      z-index: 2;
    }

    .testimonials-shadow-top {
      top: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, transparent 100%);
    }

    .testimonials-shadow-bottom {
      bottom: 0;
      background: linear-gradient(0deg, rgba(0,0,0,0.04) 0%, transparent 100%);
    }

    /* Main Container - Two Column Grid */
    .testimonials-container {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    /* Left Side - Hero Quote */
    .testimonial-hero {
      position: relative;
    }

    .testimonial-hero-quote {
      position: relative;
      padding-left: 30px;
    }

    /* Large decorative quotation mark */
    .testimonial-hero-quote::before {
      content: '"';
      position: absolute;
      top: -30px;
      left: -10px;
      font-family: 'Fredoka', sans-serif;
      font-size: 140px;
      font-weight: 300;
      line-height: 1;
      color: rgba(139, 92, 246, 0.12);
      pointer-events: none;
    }

    .testimonial-hero-text {
      font-family: 'Fredoka', sans-serif;
      font-size: 30px;
      font-weight: 500;
      line-height: 1.45;
      color: var(--text-dark);
      margin: 0;
      font-style: italic;
      letter-spacing: -0.01em;
    }

    .testimonial-hero-source {
      margin-top: 24px;
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    /* Right Side - Floating Quotes Area */
    .testimonial-rotator {
      position: relative;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Individual floating quote - blurry by default */
    .floating-quote {
      position: absolute;
      padding: 20px 24px;
      background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.5) 100%
      );
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
      filter: blur(2.5px);
      opacity: 0.5;
      transform: scale(0.95);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1;
    }

    /* Small quotation mark */
    .floating-quote::before {
      content: '"';
      position: absolute;
      top: 10px;
      left: 14px;
      font-family: 'Fredoka', sans-serif;
      font-size: 32px;
      font-weight: 300;
      line-height: 1;
      color: rgba(139, 92, 246, 0.12);
      transition: all 0.6s ease;
    }

    .floating-quote blockquote {
      font-family: 'Fredoka', sans-serif;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.6;
      color: rgba(60, 50, 70, 0.7);
      margin: 0;
      padding-left: 6px;
      font-style: normal;
    }

    /* Floating positions - centered overlapping layout */
    .floating-quote:nth-child(1) {
      top: 5%;
      left: 10%;
      max-width: 280px;
    }

    .floating-quote:nth-child(2) {
      top: 0;
      right: 5%;
      max-width: 260px;
    }

    .floating-quote:nth-child(3) {
      top: 35%;
      left: 5%;
      max-width: 290px;
    }

    .floating-quote:nth-child(4) {
      top: 30%;
      right: 0;
      max-width: 270px;
    }

    .floating-quote:nth-child(5) {
      bottom: 5%;
      left: 15%;
      max-width: 300px;
    }

    .floating-quote:nth-child(6) {
      bottom: 0;
      right: 10%;
      max-width: 280px;
    }

    /* Active quote - sharp and prominent */
    .floating-quote.active {
      filter: blur(0);
      opacity: 1;
      transform: scale(1.02);
      z-index: 10;
      background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.88) 100%
      );
      border-color: rgba(139, 92, 246, 0.15);
      box-shadow:
        0 15px 50px rgba(139, 92, 246, 0.12),
        0 5px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    }

    .floating-quote.active::before {
      color: rgba(139, 92, 246, 0.25);
    }

    .floating-quote.active blockquote {
      color: var(--text-dark);
      font-size: 16px;
    }

    /* Progress dots - under the floating area */
    .testimonial-dots {
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .testimonial-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(139, 92, 246, 0.2);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .testimonial-dot.active {
      background: rgba(139, 92, 246, 0.55);
      transform: scale(1.25);
    }

    .testimonial-dot:hover {
      background: rgba(139, 92, 246, 0.4);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .testimonials-floating {
        padding: 60px 0 70px;
      }

      .testimonials-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
      }

      .testimonial-hero-text {
        font-size: 22px;
      }

      .testimonial-hero-quote::before {
        font-size: 90px;
        top: -18px;
      }

      .testimonial-rotator {
        min-height: 160px;
      }

      /* Stack quotes on mobile - only active visible */
      .floating-quote {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        max-width: 100% !important;
        display: none;
        padding: 22px 26px;
      }

      .floating-quote.active {
        display: block;
        filter: blur(0);
        opacity: 1;
        transform: none;
      }

      .floating-quote.active blockquote {
        font-size: 15px;
      }

      .testimonial-dots {
        position: relative;
        bottom: auto;
        margin-top: 16px;
      }
    }

    @media (max-width: 500px) {
      .testimonials-floating {
        padding: 60px 0 80px;
      }

      .testimonials-container {
        gap: 40px;
        padding: 0 16px;
      }

      .testimonial-hero-text {
        font-size: 20px;
      }

      .testimonial-hero-quote {
        padding-left: 20px;
      }

      .testimonial-hero-quote::before {
        font-size: 80px;
        top: -15px;
        left: -5px;
      }

      .testimonial-rotator {
        min-height: 220px;
      }

      .floating-quote {
        padding: 24px 24px;
      }

      .floating-quote blockquote {
        font-size: 15px;
      }

      .floating-quote::before {
        font-size: 36px;
        top: 16px;
        left: 18px;
      }
    }

    /* ============================================
       MITMACHEN SECTION
       ============================================ */
    .mitmachen {
      background: linear-gradient(180deg, #faf9f7 0%, #f5f3ef 100%);
      color: var(--text-dark);
      position: relative;
      padding: 100px 0;
      overflow: hidden;
    }

    .mitmachen-edge {
      position: absolute;
      left: 0;
      right: 0;
      height: 1px;
      pointer-events: none;
      z-index: 3;
    }

    .mitmachen-edge.top {
      top: 0;
      background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06) 50%, transparent);
    }

    .mitmachen-edge.bottom {
      bottom: 0;
      background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06) 50%, transparent);
    }

    /* Subtle decorative blobs */
    .mitmachen::before,
    .mitmachen::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
    }

    .mitmachen::before {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
      top: -120px;
      right: 5%;
    }

    .mitmachen::after {
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
      bottom: -100px;
      left: 10%;
    }

    /* Outer card */
    .mitmachen-card {
      background: #fff;
      border-radius: 28px;
      padding: 56px;
      box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.03),
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 20px 60px rgba(0, 0, 0, 0.06);
      border: 1px solid rgba(0, 0, 0, 0.04);
      position: relative;
      z-index: 2;
    }

    /* Two-column grid inside card */
    .mitmachen-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }

    /* Left - Text content */
    .mitmachen-left {
      max-width: 480px;
    }

    .mitmachen-eyebrow {
      display: inline-flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .mitmachen-eyebrow span {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--primary);
      background: rgba(139, 92, 246, 0.08);
      padding: 6px 14px;
      border-radius: 6px;
    }

    .mitmachen-left h2 {
      font-size: clamp(30px, 3.5vw, 42px);
      font-weight: 700;
      line-height: 1.18;
      color: var(--text-dark);
      margin-bottom: 16px;
    }

    .mitmachen-left h2 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--primary), #a78bfa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .mitmachen-left > p {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      color: #64748b;
    }

    /* Feature tags */
    .mitmachen-features {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .feature-tag {
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: #475569;
      padding: 7px 14px;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 8px;
    }

    .feature-tag svg {
      width: 15px;
      height: 15px;
      color: var(--success);
    }

    /* Trust section */
    .mitmachen-trust-bar {
      margin-top: 36px;
      padding-top: 24px;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .trust-bar-label {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #94a3b8;
      margin-bottom: 14px;
    }

    .trust-bar-logos {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .trust-bar-logos img {
      height: 36px;
      width: auto;
      opacity: 0.55;
      filter: grayscale(30%);
      transition: all 0.3s ease;
    }

    .trust-bar-logos img:hover {
      opacity: 1;
      filter: grayscale(0%);
    }

    /* Right - Inner form card */
    .mitmachen-right {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      background: #f8f9fb;
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 6px 24px rgba(0, 0, 0, 0.04);
    }

    /* Gradient accent bar at top */
    .form-card-accent {
      height: 6px;
      background: linear-gradient(90deg, var(--primary), #a78bfa, var(--secondary), #fb923c);
      background-size: 200% 100%;
      animation: accentShimmer 6s ease-in-out infinite;
    }

    @keyframes accentShimmer {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    /* Card body */
    .form-card-body {
      padding: 40px 36px 32px;
    }

    .form-heading {
      text-align: center;
      margin-bottom: 32px;
    }

    .form-heading-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 18px;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.08));
      border: 1px solid rgba(139, 92, 246, 0.12);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .form-heading-icon svg {
      width: 26px;
      height: 26px;
      color: var(--primary);
    }

    .form-heading h3 {
      font-size: 26px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 6px;
    }

    .form-heading p {
      font-size: 15px;
      color: #94a3b8;
    }

    /* Form - stacked: label, input, button */
    .mitmachen-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .mitmachen-form .form-group {
      margin: 0;
    }

    .form-row-2col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    @media (max-width: 400px) {
      .form-row-2col {
        grid-template-columns: 1fr;
      }
    }

    .mitmachen-form label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 8px;
      letter-spacing: 0.01em;
    }

    .form-input-wrap {
      position: relative;
    }

    .form-input-wrap .input-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      color: #94a3b8;
      pointer-events: none;
      transition: color 0.2s ease;
    }

    .form-input-wrap:focus-within .input-icon {
      color: var(--primary);
    }

    .mitmachen-form input {
      width: 100%;
      padding: 16px 18px 16px 44px;
      border: 1.5px solid #e2e8f0;
      border-radius: 14px;
      font-size: 15px;
      background: #fafbfc;
      color: var(--text-dark);
      transition: all 0.25s ease;
    }

    .mitmachen-form input:focus {
      outline: none;
      border-color: var(--primary);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
    }

    .mitmachen-form input::placeholder {
      color: #b0b8c4;
    }

    /* School Autocomplete Dropdown */
    .school-autocomplete-wrap {
      position: relative;
    }

    .school-dropdown {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      right: 0;
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      z-index: 100;
      transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                  opacity 0.2s ease,
                  box-shadow 0.3s ease;
      pointer-events: none;
    }

    .school-dropdown.open {
      max-height: 296px;
      opacity: 1;
      pointer-events: auto;
      border-color: var(--primary-light);
      box-shadow:
        0 12px 40px rgba(139, 92, 246, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .school-dropdown-list {
      max-height: 288px;
      overflow-y: auto;
      padding: 6px;
      scroll-behavior: smooth;
      overscroll-behavior: contain;
    }

    .school-dropdown-list::-webkit-scrollbar {
      width: 6px;
    }

    .school-dropdown-list::-webkit-scrollbar-track {
      background: transparent;
    }

    .school-dropdown-list::-webkit-scrollbar-thumb {
      background: #d1d5db;
      border-radius: 3px;
    }

    .school-dropdown-list::-webkit-scrollbar-thumb:hover {
      background: #9ca3af;
    }

    .school-item {
      display: flex;
      align-items: baseline;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.15s ease;
      border: none;
      background: none;
      width: 100%;
      text-align: left;
      font-family: inherit;
    }

    .school-item:hover,
    .school-item.active {
      background: #f3f0ff;
    }

    .school-item-name {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-dark);
      line-height: 1.35;
      flex: 1;
      min-width: 0;
    }

    .school-item-name mark {
      background: none;
      color: var(--primary);
      font-weight: 700;
    }

    .school-item-city {
      font-size: 12px;
      color: #94a3b8;
      font-weight: 500;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .school-item-city mark {
      background: none;
      color: #6366f1;
      font-weight: 600;
    }

    .school-dropdown-empty {
      padding: 14px 16px;
      text-align: left;
      color: #475569;
      font-size: 13px;
      line-height: 1.5;
      background: #fef9e7;
      border-left: 4px solid #f59e0b;
      border-radius: 0 8px 8px 0;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .school-dropdown-empty::before {
      content: "💡";
      font-size: 18px;
      flex-shrink: 0;
      line-height: 1.2;
    }

    .school-dropdown-empty-body {
      flex: 1;
      min-width: 0;
    }

    .school-dropdown-empty strong {
      display: block;
      font-size: 14px;
      color: #1f2937;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .school-dropdown-empty span {
      display: block;
      font-size: 13px;
      color: #475569;
      line-height: 1.45;
    }

    .school-dropdown-hint {
      padding: 8px 14px;
      font-size: 11px;
      color: #b0b8c4;
      border-top: 1px solid #f1f5f9;
      text-align: center;
      letter-spacing: 0.01em;
    }

    .school-dropdown-hint kbd {
      display: inline-block;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
      border-radius: 4px;
      padding: 0px 4px;
      font-size: 10px;
      font-family: inherit;
      color: #64748b;
      margin: 0 1px;
    }

    /* Submit button - full width, prominent */
    .form-submit-row {
      display: none;
    }

    .mitmachen-submit {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 16px 28px;
      background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 14px;
      cursor: pointer;
      transition: all 0.3s var(--transition-smooth);
      position: relative;
      overflow: hidden;
    }

    .mitmachen-submit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .mitmachen-submit:hover::before {
      opacity: 1;
    }

    .mitmachen-submit:hover {
      transform: translateY(-2px);
      box-shadow:
        0 4px 12px rgba(139, 92, 246, 0.25),
        0 12px 32px rgba(139, 92, 246, 0.2);
    }

    .mitmachen-submit span,
    .mitmachen-submit svg {
      position: relative;
      z-index: 1;
    }

    .mitmachen-submit svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .mitmachen-submit:hover svg {
      transform: translateX(4px);
    }

    /* Trust row below button */
    .form-trust-row {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #f1f5f9;
    }

    .form-trust-item {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 500;
      color: #94a3b8;
    }

    .form-trust-item svg {
      width: 14px;
      height: 14px;
      color: var(--success);
    }

    /* SH Hint - subtle banner at card bottom */
    .mitmachen-sh-hint {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 40px;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.04), rgba(245, 158, 11, 0.04));
      border-top: 1px solid rgba(0, 0, 0, 0.04);
    }

    .mitmachen-sh-hint svg {
      width: 15px;
      height: 15px;
      color: var(--secondary);
      flex-shrink: 0;
    }

    .mitmachen-sh-hint span {
      font-size: 0.82rem;
      color: #64748b;
      line-height: 1.4;
    }

    .form-security {
      display: none;
    }

    /* Backwards compat */
    .mitmachen-info .section-label {
      margin-bottom: 24px;
    }

    .mitmachen-info h3 {
      font-size: clamp(28px, 3vw, 38px);
      margin-bottom: 20px;
    }

    .mitmachen-info > p {
      color: var(--text-muted);
      margin-bottom: 20px;
      font-size: 17px;
      line-height: 1.75;
    }

    .mitmachen-steps {
      margin-top: 40px;
    }

    .mitmachen-step {
      display: flex;
      gap: 20px;
      margin-bottom: 28px;
      align-items: flex-start;
    }

    .step-number {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--primary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 18px;
      flex-shrink: 0;
      box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
    }

    .step-text h4 {
      font-family: 'Instrument Sans', sans-serif;
      font-weight: 600;
      margin-bottom: 6px;
      font-size: 17px;
    }

    .step-text p {
      font-size: 15px;
      margin: 0;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* FAQ Section */
    .faq {
      background: white;
    }

    .faq-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 40px;
    }

    @media (max-width: 768px) {
      .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
      }
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 28px 0;
      background: none;
      border: none;
      font-size: 18px;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      font-family: 'Fredoka', sans-serif;
      color: var(--text-dark);
      transition: color 0.2s;
      gap: 20px;
    }

    .faq-question:hover {
      color: var(--primary);
    }

    .faq-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--bg-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: all 0.3s var(--transition-smooth);
      flex-shrink: 0;
      color: var(--text-muted);
    }

    .faq-item.active .faq-icon {
      background: var(--primary);
      color: white;
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s var(--transition-smooth);
    }

    .faq-item.active .faq-answer {
      max-height: 400px;
    }

    .faq-answer p {
      padding-bottom: 28px;
      color: var(--text-muted);
      line-height: 1.8;
      font-size: 16px;
    }

    /* Sammlung Section */
    .sammlung {
      background: white;
      padding-top: 40px;
      padding-bottom: 0;
    }

    .sammlung-cta {
      text-align: center;
      padding: 72px 60px 40px;
      position: relative;
    }

    .sammlung-number {
      font-family: 'Fredoka', sans-serif;
      font-size: 72px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 8px;
    }

    .sammlung-cta h3 {
      font-size: 28px;
      margin-bottom: 16px;
    }

    .sammlung-cta > p {
      color: var(--text-muted);
      margin-bottom: 36px;
      font-size: 18px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .sammlung-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .sammlung-grid-wrapper {
      position: relative;
      overflow: hidden;
      max-width: 960px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .sammlung-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .sammlung-card {
      border-radius: 14px;
      overflow: hidden;
      background: #f4f2ee;
      aspect-ratio: 3 / 4;
      position: relative;
      transition: transform 0.3s ease;
    }

    .sammlung-card:hover {
      transform: none;
    }

    .sammlung-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .sammlung-card-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 32px 14px 14px;
      background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
      color: white;
    }

    .sammlung-card-name {
      font-family: 'Instrument Sans', sans-serif;
      font-weight: 600;
      font-size: 13px;
      line-height: 1.3;
    }

    .sammlung-card-date {
      font-size: 11px;
      opacity: 0.7;
      margin-top: 3px;
    }

    .sammlung-fade {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 50%;
      background: linear-gradient(0deg, white 0%, rgba(255,255,255,0.95) 25%, rgba(255,255,255,0.6) 50%, transparent 100%);
      pointer-events: none;
      z-index: 2;
    }

    @media (max-width: 600px) {
      .sammlung-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      .sammlung-card-name {
        font-size: 12px;
      }
    }

    /* Footer */
    footer {
      background: var(--bg-dark);
      color: var(--text-light);
      padding: 80px 0 40px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .footer-brand .logo {
      color: white;
      margin-bottom: 20px;
      display: inline-flex;
    }


    .footer-brand p {
      color: #94a3b8;
      font-size: 15px;
      max-width: 280px;
      line-height: 1.7;
    }

    .footer-links h4 {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 24px;
      color: #64748b;
    }

    .footer-links a {
      display: block;
      color: #cbd5e1;
      text-decoration: none;
      padding: 10px 0;
      font-size: 15px;
      transition: all 0.2s;
    }

    .footer-links a:hover {
      color: white;
      transform: translateX(4px);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 40px;
      border-top: 1px solid #334155;
    }

    .footer-bottom p {
      color: #64748b;
      font-size: 14px;
    }

    .footer-bottom a {
      color: #64748b;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-bottom a:hover {
      color: var(--primary-light);
    }

    .footer-bottom-links {
      display: flex;
      gap: 8px;
    }

    .footer-bottom-links span {
      color: #475569;
    }

    /* Floating Quick Access Module - Horizontal Expand */
    .quick-access {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 999;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0;
      animation: quickAccessEntrance 0.5s var(--transition-smooth) 0.5s both;
    }

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

    /* Horizontal expandable panel */
    .quick-access-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 16px;
      padding: 6px;
      margin-right: 10px;
      box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.6);
      transform-origin: right center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .quick-access.collapsed .quick-access-content {
      opacity: 0;
      transform: scaleX(0) translateX(20px);
      pointer-events: none;
      width: 0;
      padding: 0;
      margin-right: 0;
    }

    /* Compact horizontal links */
    .quick-access-content a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      background: linear-gradient(135deg, #f8f7f4 0%, #f0eef3 100%);
      border-radius: 12px;
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 600;
      font-size: 13px;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
      transition: all 0.25s var(--transition-smooth);
    }

    .quick-access-content a::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--primary) 0%, #a78bfa 100%);
      opacity: 0;
      transition: opacity 0.25s;
    }

    .quick-access-content a > * {
      position: relative;
      z-index: 1;
    }

    .quick-access-content a:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
    }

    .quick-access-content a:hover::before {
      opacity: 1;
    }

    .quick-access-content a:hover .link-name,
    .quick-access-content a:hover .link-icon svg {
      color: white;
      stroke: white;
    }

    .quick-access-content a .link-icon {
      width: 26px;
      height: 26px;
      border-radius: 7px;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.25s;
    }

    .quick-access-content a:hover .link-icon {
      background: rgba(255, 255, 255, 0.2);
    }

    .quick-access-content a .link-icon svg {
      width: 14px;
      height: 14px;
      stroke: var(--primary);
      stroke-width: 2.5;
      transition: all 0.25s;
    }

    .quick-access-content a .link-name {
      font-weight: 600;
      font-size: 13px;
      transition: color 0.25s;
    }

    .quick-access-content a .link-text {
      display: flex;
      align-items: center;
    }

    .quick-access-content a .link-hint {
      display: none;
    }

    /* Toggle button */
    .quick-access-toggle {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      border: none;
      background: linear-gradient(135deg, var(--primary) 0%, #9333ea 100%);
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
      box-shadow:
        0 4px 16px rgba(139, 92, 246, 0.35),
        0 2px 4px rgba(139, 92, 246, 0.2);
      transition: all 0.3s var(--transition-smooth);
    }

    .quick-access-toggle:hover {
      transform: scale(1.05);
      box-shadow:
        0 6px 20px rgba(139, 92, 246, 0.4),
        0 2px 6px rgba(139, 92, 246, 0.25);
    }

    .quick-access-toggle:active {
      transform: scale(0.95);
    }

    /* Icon morphing */
    .quick-access-toggle .toggle-icon {
      position: relative;
      width: 20px;
      height: 20px;
    }

    .quick-access-toggle .icon-open,
    .quick-access-toggle .icon-close {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s var(--transition-smooth);
    }

    .quick-access-toggle .icon-open svg,
    .quick-access-toggle .icon-close svg {
      width: 18px;
      height: 18px;
      stroke-width: 2.5;
    }

    /* Expanded: show chevron right (close) */
    .quick-access-toggle .icon-close {
      opacity: 1;
      transform: rotate(0deg);
    }

    .quick-access-toggle .icon-open {
      opacity: 0;
      transform: rotate(-90deg);
    }

    /* Collapsed: show link icon (open) */
    .quick-access.collapsed .quick-access-toggle .icon-close {
      opacity: 0;
      transform: rotate(90deg);
    }

    .quick-access.collapsed .quick-access-toggle .icon-open {
      opacity: 1;
      transform: rotate(0deg);
    }

    /* Pulse when collapsed */
    .quick-access.collapsed .quick-access-toggle {
      animation: fabPulse 2.5s ease-in-out infinite;
    }

    @keyframes fabPulse {
      0%, 100% { box-shadow: 0 4px 16px rgba(139, 92, 246, 0.35), 0 2px 4px rgba(139, 92, 246, 0.2); }
      50% { box-shadow: 0 6px 24px rgba(139, 92, 246, 0.5), 0 2px 8px rgba(139, 92, 246, 0.3); }
    }

    /* Hide hint for horizontal layout */
    .quick-access-hint {
      display: none;
    }

    @media (max-width: 500px) {
      .quick-access {
        bottom: 16px;
        right: 16px;
        left: 16px;
      }

      .quick-access-content {
        flex: 1;
        justify-content: flex-end;
        padding: 5px;
        gap: 6px;
      }

      .quick-access-content a {
        padding: 8px 10px;
        gap: 6px;
      }

      .quick-access-content a .link-icon {
        width: 24px;
        height: 24px;
      }

      .quick-access-content a .link-name {
        font-size: 12px;
      }

      .quick-access-toggle {
        width: 44px;
        height: 44px;
        border-radius: 12px;
      }
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 56px;
      }

      .mitmachen-card {
        padding: 40px;
        border-radius: 24px;
      }

      .mitmachen-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .mitmachen-left {
        max-width: 100%;
        text-align: center;
      }

      .mitmachen-features {
        justify-content: center;
      }

      .mitmachen-trust-bar {
        text-align: center;
      }

      .trust-bar-logos {
        justify-content: center;
      }

      .mitmachen-right {
        max-width: 480px;
        margin: 0 auto;
      }

      .form-card-body {
        padding: 36px 32px 28px;
      }

      .hero-visual {
        order: -1;
      }

      .hero-image-wrapper {
        transform: none;
      }

      .hero-image-wrapper:hover {
        transform: none;
      }

      .concept-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
      }

      .footer-content {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-desktop {
        display: none;
      }

      .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hero {
        padding: 130px 0 80px;
      }

      section {
        padding: 80px 0;
      }

      .section-header {
        margin-bottom: 48px;
      }

      .mitmachen {
        padding: 70px 0;
      }

      .mitmachen-left h2 {
        font-size: 28px;
      }

      .trust-bar-logos {
        gap: 18px;
      }

      .trust-bar-logos img {
        height: 30px;
      }

      .mitmachen-right {
        border-radius: 18px;
      }

      .form-card-body {
        padding: 32px 24px 24px;
      }

      .form-heading-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        margin-bottom: 14px;
      }

      .form-heading-icon svg {
        width: 22px;
        height: 22px;
      }

      .form-heading h3 {
        font-size: 22px;
      }

      .form-trust-row {
        gap: 12px;
      }

      .form-trust-item {
        font-size: 11px;
      }

      .mitmachen-sh-hint {
        padding: 12px 24px;
      }

      .mitmachen-form {
        flex-direction: column;
        gap: 0;
        padding: 4px;
      }

      .form-submit-row {
        width: 100%;
      }

      .mitmachen-submit {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
      }

      .mitmachen-features {
        gap: 8px;
      }

      .feature-tag {
        font-size: 12px;
        padding: 6px 12px;
      }

      .sammlung-cta {
        padding: 48px 24px 32px;
      }

      .sammlung-number {
        font-size: 56px;
      }

      .sammlung-grid-wrapper {
        padding: 0 16px;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }

      .partner-logos {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      .partner-logos-images {
        gap: 20px;
      }

      .phone-cinema {
        width: 340px;
        transform: scale(0.95);
        transform-origin: center top;
      }

      .phone-frame {
        border-radius: 22px;
        padding: 10px;
        transform: none;
      }

      .phone-frame:hover {
        transform: none;
      }

      .phone-screen {
        border-radius: 14px;
      }

      .floating-elements {
        display: none;
      }

      .phone-glow {
        width: 400px;
        height: 350px;
      }

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

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

    @media (max-width: 480px) {
      .phone-cinema {
        width: 280px;
        transform: scale(0.9);
      }

      .question-card {
        padding: 20px;
        max-width: 240px;
      }

      .question-math {
        font-size: 28px;
      }

      .answer-btn {
        padding: 10px 6px;
        font-size: 16px;
      }
    }

    /* ============================================
       Training iPad Carousel
       ============================================ */

    .training-carousel-section {
      padding: 0 0 100px;
      position: relative;
      width: 100%;
      overflow: visible;
    }

    .training-carousel-wrap {
      position: relative;
      width: 100%;
      padding: 0 52px;
      overflow: visible;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 2%, black 15%, black 85%, transparent 98%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, transparent 2%, black 15%, black 85%, transparent 98%, transparent 100%);
    }

    .training-carousel-track {
      display: flex;
      gap: 14px;
      padding: 20px 0 32px;
    }

    .training-ipad {
      flex: 0 0 calc(20% - 12px);
      min-width: 0;
      transition: transform 0.4s var(--transition-smooth);
    }

    .training-ipad-frame {
      position: relative;
      background: linear-gradient(160deg, #3a3a44 0%, #222228 100%);
      border-radius: 10px;
      padding: 3px;
      box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 20px 40px -10px rgba(0, 0, 0, 0.10);
      transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
    }

    .training-ipad-frame::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 2px;
      transform: translateY(-50%);
      width: 1.5px;
      height: 1.5px;
      background: #444;
      border-radius: 50%;
    }

    .training-ipad-frame img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 7px;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .training-ipad:hover .training-ipad-frame {
      transform: translateY(-3px);
      box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.10),
        0 16px 36px rgba(0, 0, 0, 0.14),
        0 24px 50px -10px rgba(0, 0, 0, 0.12),
        0 0 20px rgba(139, 92, 246, 0.06);
    }

    .training-carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: var(--text-dark);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s var(--transition-smooth);
      z-index: 2;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .training-carousel-arrow:hover {
      background: #fff;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
      border-color: var(--primary-light);
    }

    .training-carousel-arrow:active {
      transform: translateY(-50%) scale(0.92);
    }

    .training-carousel-arrow.prev { left: 6px; }
    .training-carousel-arrow.next { right: 6px; }

    .training-carousel-arrow:disabled {
      opacity: 0.3;
      cursor: default;
      pointer-events: none;
    }

    .training-carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }

    .training-carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 100px;
      border: none;
      background: #d1d5db;
      cursor: pointer;
      padding: 0;
      transition: all 0.3s var(--transition-smooth);
    }

    .training-carousel-dot:hover {
      background: #9ca3af;
    }

    .training-carousel-dot.active {
      width: 24px;
      background: var(--primary);
    }

    @media (max-width: 1100px) {
      .training-ipad {
        flex: 0 0 calc(25% - 11px);
      }
    }

    @media (max-width: 800px) {
      .training-ipad {
        flex: 0 0 calc(33.333% - 10px);
      }

      .training-carousel-wrap {
        padding: 0 44px;
      }
    }

    @media (max-width: 550px) {
      .training-ipad {
        flex: 0 0 calc(50% - 7px);
      }

      .training-carousel-wrap {
        padding: 0 38px;
      }

      .training-carousel-arrow {
        width: 28px;
        height: 28px;
      }
    }

    /* ============================================
       Analytics Showcase - Premium Theater Design
       ============================================ */

    .analytics-showcase {
      margin-top: 0;
      padding: 10px 0 80px;
      position: relative;
      overflow: hidden;
    }

    /* Ambient background glow */
    .analytics-showcase::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 900px;
      height: 600px;
      background: radial-gradient(ellipse, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .analytics-inner {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 60px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Left side - Editorial text */
    .analytics-text {
      position: relative;
      z-index: 2;
    }

    .analytics-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .analytics-eyebrow::before {
      content: '';
      width: 24px;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
      border-radius: 2px;
    }

    .audience-label {
      text-align: center;
      margin-bottom: 30px;
    }

    .audience-label .analytics-eyebrow {
      margin-bottom: 0;
    }

    .analytics-text h3 {
      font-family: 'Fredoka', sans-serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 600;
      line-height: 1.15;
      color: var(--text-dark);
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .analytics-text h3 span {
      background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .analytics-text p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--text-muted);
      margin-bottom: 32px;
      max-width: 420px;
    }

    /* Feature list */
    .analytics-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .analytics-feature {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 20px;
      background: white;
      border-radius: var(--radius-md);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.03);
      transition: all 0.3s var(--transition-smooth);
    }

    .analytics-feature:hover {
      transform: translateX(6px);
      box-shadow: 0 8px 24px rgba(139, 92, 246, 0.12), 0 0 0 1px rgba(139, 92, 246, 0.1);
    }

    .feature-icon-wrap {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .feature-icon-wrap svg {
      width: 20px;
      height: 20px;
    }

    .feature-icon-wrap.purple {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
      color: var(--primary);
    }

    .feature-icon-wrap.orange {
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
      color: var(--secondary);
    }

    .feature-icon-wrap.green {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
      color: var(--success);
    }

    .feature-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .feature-text strong {
      font-weight: 600;
      color: var(--text-dark);
      font-size: 0.95rem;
    }

    .feature-text span {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* Right side - Device showcase */
    .device-theater {
      position: relative;
      perspective: 1500px;
      min-height: 500px;
    }

    /* Floating decorative elements */
    .theater-decoration {
      position: absolute;
      pointer-events: none;
      z-index: 10;
    }

    .insight-card {
      background: white;
      padding: 10px 14px;
      border-radius: 10px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.03);
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-dark);
      animation: insightFloat 6s ease-in-out infinite;
      white-space: nowrap;
    }

    .insight-icon {
      font-size: 14px;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      flex-shrink: 0;
    }

    .insight-icon.warning {
      background: rgba(245, 158, 11, 0.15);
    }

    .insight-icon.info {
      background: rgba(139, 92, 246, 0.15);
    }

    .insight-icon.success {
      background: rgba(16, 185, 129, 0.15);
      font-size: 12px;
      color: var(--success);
    }

    .insight-icon.star {
      background: rgba(245, 158, 11, 0.15);
    }

    .insight-icon.transfer {
      background: rgba(239, 68, 68, 0.15);
    }

    .insight-icon.trend {
      background: rgba(6, 182, 212, 0.15);
    }

    .insight-text {
      color: var(--text-dark);
      font-weight: 500;
    }

    .insight-card.insight-1 {
      top: 2%;
      right: 8%;
      animation-delay: 0s;
    }

    .insight-card.insight-2 {
      bottom: 20%;
      left: -8%;
      animation-delay: -1.5s;
    }

    .insight-card.insight-3 {
      top: 30%;
      right: -5%;
      animation-delay: -3s;
    }

    .insight-card.insight-4 {
      bottom: 40%;
      left: -3%;
      animation-delay: -4.5s;
    }

    .insight-card.insight-5 {
      top: 55%;
      right: 0%;
      animation-delay: -2s;
    }

    @keyframes insightFloat {
      0%, 100% { transform: translateY(0) scale(1); opacity: 0.95; }
      50% { transform: translateY(-10px) scale(1.02); opacity: 1; }
    }

    /* Main device frame */
    .device-main {
      position: absolute;
      top: 0;
      left: 0;
      width: 75%;
      transform: rotateY(-8deg) rotateX(2deg);
      transform-style: preserve-3d;
      animation: deviceHover 8s ease-in-out infinite;
      z-index: 2;
    }

    .device-secondary {
      position: absolute;
      bottom: -10%;
      right: -5%;
      width: 55%;
      transform: rotateY(8deg) rotateX(-2deg) translateZ(-50px);
      transform-style: preserve-3d;
      animation: deviceHover 8s ease-in-out infinite;
      animation-delay: -4s;
      z-index: 1;
    }

    @keyframes deviceHover {
      0%, 100% {
        transform: rotateY(-8deg) rotateX(2deg) translateY(0);
      }
      50% {
        transform: rotateY(-6deg) rotateX(3deg) translateY(-15px);
      }
    }

    .device-secondary {
      animation-name: deviceHoverAlt;
    }

    @keyframes deviceHoverAlt {
      0%, 100% {
        transform: rotateY(8deg) rotateX(-2deg) translateZ(-50px) translateY(0);
      }
      50% {
        transform: rotateY(10deg) rotateX(-1deg) translateZ(-50px) translateY(-10px);
      }
    }

    .device-frame {
      position: relative;
      background: linear-gradient(165deg, #2d2d3a 0%, #1a1a24 100%);
      border-radius: 20px;
      padding: 10px;
      box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.4),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    }

    .device-frame::before {
      content: '';
      position: absolute;
      top: 5px;
      left: 50%;
      transform: translateX(-50%);
      width: 6px;
      height: 6px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50%;
    }

    .device-frame::after {
      content: '';
      position: absolute;
      inset: 10px;
      border-radius: 14px;
      box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
      pointer-events: none;
      z-index: 10;
    }

    .device-screen {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
    }

    .device-screen img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Screen reflection overlay */
    .device-screen::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        transparent 100%
      );
      pointer-events: none;
    }

    .device-label {
      position: absolute;
      bottom: -35px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-muted);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .device-label::before {
      content: '';
      width: 4px;
      height: 4px;
      background: var(--primary);
      border-radius: 50%;
    }

    /* Responsive */
    @media (max-width: 1000px) {
      .analytics-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
      }

      .analytics-text {
        order: 1;
      }

      .analytics-text p {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }

      .analytics-eyebrow {
        justify-content: center;
      }

      .analytics-features {
        max-width: 400px;
        margin: 0 auto;
      }

      .device-theater {
        order: 2;
        min-height: 400px;
        max-width: 600px;
        margin: 0 auto;
      }

      .device-main {
        position: relative;
        width: 85%;
        margin: 0 auto;
        transform: rotateY(0) rotateX(0);
      }

      .device-secondary {
        position: absolute;
        width: 50%;
        bottom: -15%;
        right: 0;
        transform: rotateY(0) rotateX(0) translateZ(0);
      }

      .insight-card.insight-5 {
        display: none;
      }

      .insight-card.insight-1 {
        top: -8%;
        right: 5%;
      }

      .insight-card.insight-3 {
        top: auto;
        bottom: 0%;
        right: 10%;
      }

      @keyframes deviceHover {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
      }

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

    @media (max-width: 600px) {
      .analytics-showcase {
        margin-top: 20px;
        padding: 20px 0 70px;
      }

      .analytics-text h3 {
        font-size: 1.75rem;
      }

      .analytics-text p {
        font-size: 1rem;
      }

      .analytics-feature {
        padding: 12px 16px;
      }

      .feature-icon-wrap {
        width: 36px;
        height: 36px;
        border-radius: 10px;
      }

      .feature-icon-wrap svg {
        width: 18px;
        height: 18px;
      }

      .device-theater {
        min-height: 320px;
      }

      .device-main {
        width: 90%;
      }

      .device-secondary {
        width: 55%;
        bottom: -10%;
      }

      .device-frame {
        border-radius: 16px;
        padding: 8px;
      }

      .device-screen {
        border-radius: 12px;
      }

      .device-label {
        font-size: 0.8rem;
        bottom: -30px;
      }

      .insight-card {
        padding: 8px 10px;
        font-size: 11px;
      }

      .insight-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
      }
    }

    /* ============================================
       PLATFORM STRIP
       ============================================ */

    .platform-strip {
      padding: 60px 0 40px;
      position: relative;
      text-align: center;
    }

    .platform-strip-label {
      font-size: 0.95rem;
      color: #64748b;
      letter-spacing: 0.04em;
      margin-bottom: 28px;
      font-weight: 500;
    }

    .platform-cards {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .platform-card {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 28px;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(139, 92, 246, 0.12);
      border-radius: 16px;
      backdrop-filter: blur(8px);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .platform-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.04) 0%, rgba(99, 102, 241, 0.02) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .platform-card:hover {
      border-color: rgba(139, 92, 246, 0.25);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(139, 92, 246, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .platform-card:hover::before {
      opacity: 1;
    }

    .platform-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    .platform-icon.app {
      background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
      box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    }

    .platform-icon.itslearning {
      background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
      box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    }

    .platform-icon.web {
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

    .platform-icon svg {
      width: 22px;
      height: 22px;
      color: #fff;
      stroke: currentColor;
      fill: none;
    }

    .platform-info {
      display: flex;
      flex-direction: column;
      text-align: left;
      position: relative;
      z-index: 1;
    }

    .platform-name {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.3;
    }

    .platform-desc {
      font-size: 0.8rem;
      color: #64748b;
      line-height: 1.3;
    }

    @media (max-width: 768px) {
      .platform-strip {
        padding: 40px 0 30px;
      }

      .platform-cards {
        gap: 12px;
      }

      .platform-card {
        padding: 14px 20px;
        gap: 12px;
      }

      .platform-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
      }

      .platform-icon svg {
        width: 18px;
        height: 18px;
      }
    }

    @media (max-width: 480px) {
      .platform-cards {
        flex-direction: column;
        align-items: center;
      }

      .platform-card {
        width: 100%;
        max-width: 320px;
      }
    }

    /* ============================================
       APP SHOWCASE SECTION
       ============================================ */
    /* ==========================================
       APP SHOWCASE - IMMERSIVE 3D GALLERY
       ========================================== */
    .app-showcase {
      position: relative;
      padding: 120px 0 140px;
      overflow: hidden;
      background: linear-gradient(180deg, var(--bg-dark) 0%, #050810 40%, #080c18 60%, var(--bg-dark) 100%);
    }

    .app-showcase-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .app-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.35;
    }

    .app-glow-1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
      top: 10%;
      left: 50%;
      transform: translateX(-50%);
      animation: glowPulse 8s ease-in-out infinite;
    }

    .app-glow-2 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.8) 0%, transparent 70%);
      bottom: 20%;
      left: 10%;
      animation: glowDrift 15s ease-in-out infinite;
    }

    .app-glow-3 {
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
      top: 30%;
      right: 5%;
      animation: glowDrift 20s ease-in-out infinite reverse;
    }

    @keyframes glowPulse {
      0%, 100% { opacity: 0.35; transform: translateX(-50%) scale(1); }
      50% { opacity: 0.5; transform: translateX(-50%) scale(1.1); }
    }

    @keyframes glowDrift {
      0%, 100% { transform: translate(0, 0); }
      33% { transform: translate(30px, -20px); }
      66% { transform: translate(-20px, 20px); }
    }

    /* Grid Layout */
    .app-showcase .container {
      max-width: 1500px;
    }

    .app-showcase-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 80px;
      align-items: center;
    }

    /* Left Column - Glassmorphism Card */
    .app-showcase-left-wrapper {
      position: relative;
      z-index: 10;
    }

    .app-showcase-left-wrapper::before {
      content: '';
      position: absolute;
      inset: -30px;
      background: rgba(8, 12, 24, 0.85);
      filter: blur(30px);
      border-radius: 50px;
      z-index: -1;
    }

    .app-showcase-left {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 44px;
      background: rgba(30, 41, 59, 0.85);
      backdrop-filter: blur(60px) saturate(180%);
      -webkit-backdrop-filter: blur(60px) saturate(180%);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 28px;
      position: relative;
      box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255,255,255,0.05) inset,
        0 1px 0 rgba(255,255,255,0.1) inset;
    }

    .app-showcase-left::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 28px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.05) 30%, transparent 60%);
      pointer-events: none;
    }

    .app-showcase-left::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
      border-radius: 28px 28px 0 0;
    }

    /* App Header with Icon */
    .app-header-row {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .app-icon-wrapper {
      position: relative;
      flex-shrink: 0;
    }

    .app-icon {
      width: 72px;
      height: 72px;
      border-radius: 18px;
      box-shadow:
        0 8px 24px rgba(139, 92, 246, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255,255,255,0.1) inset;
      animation: iconFloat 4s ease-in-out infinite;
      position: relative;
      z-index: 2;
    }

    .app-icon-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100px;
      height: 72px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, rgba(99, 102, 241, 0.2) 40%, transparent 70%);
      filter: blur(20px);
      animation: glowPulse 3s ease-in-out infinite;
      z-index: 1;
    }

    @keyframes iconFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    @keyframes glowPulse {
      0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
      50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
    }

    .app-header-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
      justify-content: center;
    }

    .app-subtitle {
      font-size: 1rem;
      color: #94a3b8;
      margin: 0;
      letter-spacing: 0.02em;
    }

    .app-title {
      font-family: 'Fredoka', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 600;
      color: var(--text-light);
      margin: 0;
      line-height: 1.2;
    }

    .app-title .highlight {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .app-intro {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0;
    }

    /* Feature Info Desktop - Premium Card Design */
    .app-feature-info-desktop {
      margin-top: 20px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
      position: relative;
    }

    /* Progress Pills - Premium Style */
    .feature-progress {
      display: flex;
      gap: 8px;
      margin-bottom: 24px;
    }

    .feature-progress-segment {
      flex: 1;
      height: 6px;
      background: rgba(255,255,255,0.06);
      border-radius: 3px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    }

    .feature-progress-segment::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.03);
      border-radius: 3px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .feature-progress-segment:hover::before {
      opacity: 1;
    }

    .feature-progress-segment .progress-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--primary) 0%, #818cf8 100%);
      border-radius: 3px;
      transition: width 0.1s linear;
      box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
    }

    .feature-progress-segment.active .progress-fill {
      width: 100%;
      animation: progressFill 5s linear forwards;
    }

    .feature-progress-segment.completed .progress-fill {
      width: 100%;
      animation: none;
      box-shadow: none;
      opacity: 0.6;
    }

    @keyframes progressFill {
      from { width: 0%; }
      to { width: 100%; }
    }

    /* Feature Card Area */
    .feature-content-area {
      position: relative;
      min-height: 180px;
    }

    /* Premium Feature Card */
    .feature-slide {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      opacity: 0;
      transform: translateY(12px) scale(0.98);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }

    .feature-slide.active {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
      position: relative;
    }

    .feature-card-inner {
      background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      padding: 24px;
      padding-bottom: 60px;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(10px);
    }

    /* Subtle corner accent */
    .feature-card-inner::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 120px;
      height: 120px;
      background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Card Content - Editorial Style */
    .feature-card-content {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
      z-index: 1;
    }

    /* Top row: Number + Tag */
    .feature-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .feature-num {
      font-family: 'Instrument Sans', system-ui, sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 1;
      background: linear-gradient(135deg, var(--primary) 0%, #a5b4fc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      opacity: 0.9;
    }

    .feature-tag {
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: #94a3b8;
      padding: 5px 10px;
      background: rgba(255,255,255,0.05);
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,0.08);
    }

    /* Main headline */
    .feature-headline {
      font-size: 1.5rem;
      font-weight: 700;
      color: #f1f5f9;
      margin: 0 0 6px 0;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    /* Tagline */
    .feature-tagline {
      font-size: 0.9rem;
      color: #94a3b8;
      margin: 0;
      line-height: 1.5;
      max-width: 280px;
    }

    /* Accent line */
    .feature-accent {
      width: 32px;
      height: 3px;
      background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
      border-radius: 2px;
      margin-top: 14px;
    }

    /* Feature Navigation Arrows - Bottom Right in Card */
    .feature-nav {
      position: absolute;
      bottom: 20px;
      right: 20px;
      display: flex;
      gap: 6px;
      z-index: 10;
    }

    .feature-arrow {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.08);
      color: #94a3b8;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .feature-arrow:hover {
      background: rgba(255,255,255,0.15);
      border-color: rgba(255,255,255,0.25);
      color: #f1f5f9;
    }

    .feature-arrow:active {
      transform: scale(0.92);
    }

    .feature-arrow svg {
      width: 14px;
      height: 14px;
    }

    /* Right Column */
    .app-showcase-right {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* 3D Gallery */
    .app-gallery {
      position: relative;
      width: 100%;
      margin: 0 auto 30px;
      padding: 0 50px;
      perspective: 1500px;
    }

    .gallery-track {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      height: 380px;
    }

    .gallery-slide {
      position: absolute;
      width: min(520px, 90%);
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }

    /* Slide positions */
    .gallery-slide[data-position="center"] {
      transform: translateX(0) scale(1) rotateY(0deg);
      z-index: 10;
      opacity: 1;
    }

    .gallery-slide[data-position="left"] {
      transform: translateX(-75%) scale(0.75) rotateY(25deg);
      z-index: 5;
      opacity: 0.5;
      filter: brightness(0.6);
    }

    .gallery-slide[data-position="right"] {
      transform: translateX(75%) scale(0.75) rotateY(-25deg);
      z-index: 5;
      opacity: 0.5;
      filter: brightness(0.6);
    }

    .gallery-slide[data-position="far-left"] {
      transform: translateX(-140%) scale(0.5) rotateY(35deg);
      z-index: 1;
      opacity: 0;
      pointer-events: none;
    }

    .gallery-slide[data-position="far-right"] {
      transform: translateX(140%) scale(0.5) rotateY(-35deg);
      z-index: 1;
      opacity: 0;
      pointer-events: none;
    }

    .gallery-slide[data-position="hidden"] {
      transform: translateX(0) scale(0.3);
      z-index: 0;
      opacity: 0;
      pointer-events: none;
    }

    .gallery-slide:hover:not([data-position="center"]) {
      opacity: 0.7;
      filter: brightness(0.75);
    }

    /* Device Frame */
    .gallery-device {
      position: relative;
    }

    .gallery-device-frame {
      position: relative;
      aspect-ratio: 4 / 2.7;
      background: linear-gradient(145deg, #1a1f2e 0%, #0d1117 100%);
      border-radius: 20px;
      padding: 10px;
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.06),
        0 30px 60px -15px rgba(0,0,0,0.6),
        0 0 100px -30px rgba(99, 102, 241, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.05);
    }

    .gallery-slide[data-position="center"] .gallery-device-frame {
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        0 40px 80px -20px rgba(0,0,0,0.7),
        0 0 120px -20px rgba(99, 102, 241, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.08);
    }

    .gallery-device-frame::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 4px;
      background: rgba(255,255,255,0.1);
      border-radius: 2px;
    }

    .gallery-device-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 45%;
      border-radius: 12px;
    }

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

    .feature-badge {
      display: inline-block;
      padding: 6px 16px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 30px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--primary-light);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .feature-name {
      font-family: 'Fredoka', sans-serif;
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 600;
      color: var(--text-light);
      margin: 0 0 10px;
    }

    .feature-desc {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* Dots */
    .app-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
    }

    .app-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,0.2);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 0;
    }

    .app-dot:hover {
      background: rgba(255,255,255,0.4);
      transform: scale(1.2);
    }

    .app-dot.active {
      background: var(--primary);
      transform: scale(1.3);
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
    }

    /* App Store Badges - Compact Inline Style */
    .app-badges-inline {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .app-badge-mini {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      text-decoration: none;
      color: #f1f5f9;
      font-size: 0.85rem;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .app-badge-mini:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.2);
      transform: translateY(-2px);
      color: #fff;
    }

    .app-badge-mini svg {
      width: 18px;
      height: 18px;
      color: #cbd5e1;
    }

    .coming-soon-tag {
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #fbbf24;
      padding: 6px 12px;
      background: rgba(245, 158, 11, 0.15);
      border: 1px solid rgba(245, 158, 11, 0.3);
      border-radius: 6px;
    }

    .app-beta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 22px;
      background: rgba(139, 92, 246, 0.15);
      border: 1px solid rgba(139, 92, 246, 0.3);
      border-radius: 10px;
      color: #c4b5fd;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    .app-beta-btn:hover {
      background: rgba(139, 92, 246, 0.25);
      border-color: rgba(139, 92, 246, 0.5);
      color: #ddd6fe;
    }

    /* App Store Badges - Old (keeping for backwards compat) */
    .app-badges {
      display: none;
    }

    .app-badge .badge-small {
      font-size: 0.7rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .app-badge .badge-large {
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--text-light);
    }

    /* Responsive */
    @media (max-width: 1300px) {
      .app-showcase-grid {
        gap: 60px;
      }

      .app-showcase-left {
        padding: 32px;
      }

      .gallery-slide {
        width: 420px;
      }

      .gallery-track {
        height: 320px;
      }
    }

    @media (max-width: 1100px) {
      .app-showcase {
        padding: 100px 0 120px;
      }

      .app-showcase-grid {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .app-showcase-left-wrapper {
        max-width: 500px;
        margin: 0 auto;
      }

      .app-showcase-left {
        text-align: center;
        align-items: center;
        padding: 36px;
      }

      .app-feature-info-desktop {
        text-align: center;
      }

      .feature-card-inner {
        padding: 20px;
        text-align: center;
      }

      .feature-card-top {
        justify-content: center;
        gap: 16px;
      }

      .feature-headline,
      .feature-tagline {
        text-align: center;
      }

      .feature-tagline {
        max-width: none;
      }

      .feature-accent {
        margin-left: auto;
        margin-right: auto;
      }

      .feature-nav {
        bottom: 16px;
        right: 16px;
      }

      .app-badges-inline {
        justify-content: center;
      }

      .app-gallery {
        padding: 0 40px;
      }

      .gallery-slide {
        width: 480px;
      }

      .gallery-track {
        height: 360px;
      }

      .gallery-slide[data-position="left"],
      .gallery-slide[data-position="right"] {
        transform: translateX(-65%) scale(0.7) rotateY(20deg);
        opacity: 0.4;
      }

      .gallery-slide[data-position="right"] {
        transform: translateX(65%) scale(0.7) rotateY(-20deg);
      }

    }

    @media (max-width: 768px) {
      .app-showcase {
        padding: 80px 0 100px;
      }

      .app-showcase-grid {
        gap: 40px;
      }

      .app-showcase-left {
        padding: 28px;
        border-radius: 20px;
      }

      .app-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
      }

      .app-icon-glow {
        width: 90px;
        height: 90px;
      }

      .app-header-row {
        gap: 16px;
      }

      .app-gallery {
        padding: 0 50px;
      }

      .gallery-slide {
        width: 380px;
      }

      .gallery-track {
        height: 290px;
      }

      .gallery-slide[data-position="left"],
      .gallery-slide[data-position="right"] {
        opacity: 0.3;
        transform: translateX(-55%) scale(0.65) rotateY(15deg);
      }

      .gallery-slide[data-position="right"] {
        transform: translateX(55%) scale(0.65) rotateY(-15deg);
      }

      .gallery-device-frame {
        border-radius: 16px;
        padding: 8px;
      }

      .gallery-device-frame img {
        border-radius: 10px;
      }

      .app-feature-info-desktop {
        min-height: auto;
      }

      .feature-card-inner {
        padding: 18px;
        padding-bottom: 54px;
        border-radius: 16px;
      }

      .feature-num {
        font-size: 1.8rem;
      }

      .feature-headline {
        font-size: 1.3rem;
      }

      .feature-tagline {
        font-size: 0.85rem;
      }

      .feature-content-area {
        min-height: 145px;
      }
    }

    @media (max-width: 600px) {
      .app-showcase {
        padding: 60px 0 80px;
      }

      .app-showcase-left-wrapper {
        max-width: none;
      }

      .app-showcase-left-wrapper::before {
        inset: -20px;
      }

      .app-showcase-left {
        padding: 24px;
        background: rgba(30, 41, 59, 0.9);
        border-radius: 18px;
      }

      .app-title {
        font-size: 1.6rem;
      }

      .app-intro {
        font-size: 0.95rem;
      }

      .app-header-row {
        gap: 14px;
      }

      .app-subtitle {
        font-size: 0.85rem;
      }

      .app-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
      }

      .app-icon-glow {
        width: 80px;
        height: 80px;
      }

      .feature-content-area {
        min-height: 170px;
      }

      .feature-card-inner {
        padding: 16px;
        padding-bottom: 50px;
        border-radius: 14px;
      }

      .feature-nav {
        bottom: 12px;
        right: 12px;
      }

      .feature-arrow {
        width: 28px;
        height: 28px;
        border-radius: 6px;
      }

      .feature-arrow svg {
        width: 12px;
        height: 12px;
      }

      .feature-num {
        font-size: 1.6rem;
      }

      .feature-headline {
        font-size: 1.2rem;
      }

      .feature-tagline {
        font-size: 0.8rem;
        line-height: 1.45;
      }

      .feature-tag {
        font-size: 0.6rem;
        padding: 4px 8px;
      }

      .feature-accent {
        margin-top: 10px;
        width: 24px;
      }

      .feature-progress {
        gap: 4px;
        margin-bottom: 16px;
      }

      .app-gallery {
        padding: 0 16px;
      }

      .gallery-slide {
        width: 300px;
      }

      .gallery-track {
        height: 240px;
      }

      .gallery-slide[data-position="left"],
      .gallery-slide[data-position="right"] {
        display: none;
      }

      .gallery-device-frame {
        border-radius: 14px;
        padding: 6px;
      }

      .gallery-device-frame::before {
        width: 30px;
        height: 3px;
        top: 5px;
      }

      .feature-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
      }

      .app-badges-inline {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .app-badge-mini {
        padding: 8px 14px;
        font-size: 0.8rem;
      }

      .coming-soon-tag {
        font-size: 0.65rem;
        padding: 5px 10px;
      }
    }

    /* ========================================
       ENGAGEMENT POPUP - Mitmachen Style
       ======================================== */
    .engagement-popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.6);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s var(--transition-smooth), visibility 0.5s;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .engagement-popup-overlay.visible {
      opacity: 1;
      visibility: visible;
    }

    /* Subtle decorative blobs in overlay */
    .engagement-popup-overlay::before,
    .engagement-popup-overlay::after {
      content: '';
      position: fixed;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.8s ease 0.2s;
    }

    .engagement-popup-overlay.visible::before,
    .engagement-popup-overlay.visible::after {
      opacity: 1;
    }

    .engagement-popup-overlay::before {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
      top: -150px;
      right: 10%;
    }

    .engagement-popup-overlay::after {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
      bottom: -100px;
      left: 15%;
    }

    .engagement-popup {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      background: #f8f9fb;
      border: 1px solid rgba(0, 0, 0, 0.06);
      max-width: 420px;
      width: 100%;
      box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.03),
        0 4px 16px rgba(0, 0, 0, 0.06),
        0 24px 60px rgba(0, 0, 0, 0.12);
      transform: translateY(40px) scale(0.94);
      opacity: 0;
      transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                  opacity 0.4s ease;
    }

    .engagement-popup-overlay.visible .engagement-popup {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    /* Rainbow gradient accent bar - same as form-card-accent */
    .engagement-popup-accent {
      height: 6px;
      background: linear-gradient(90deg, var(--primary), #a78bfa, var(--secondary), #fb923c);
      background-size: 200% 100%;
      animation: popupAccentShimmer 6s ease-in-out infinite;
    }

    @keyframes popupAccentShimmer {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    /* Close button */
    .engagement-popup-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(0, 0, 0, 0.06);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s var(--transition-smooth);
      z-index: 10;
    }

    .engagement-popup-close:hover {
      background: rgba(0, 0, 0, 0.08);
      transform: scale(1.08);
    }

    .engagement-popup-close svg {
      width: 14px;
      height: 14px;
      stroke: #64748b;
      stroke-width: 2.5;
    }

    /* Body - same as form-card-body */
    .engagement-popup-body {
      padding: 40px 36px 32px;
    }

    /* Heading - same as form-heading */
    .engagement-popup-heading {
      text-align: center;
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(16px);
      animation: popupFadeUp 0.5s ease forwards 0.15s;
    }

    @keyframes popupFadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .engagement-popup-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 18px;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.08));
      border: 1px solid rgba(139, 92, 246, 0.12);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .engagement-popup-icon svg {
      width: 26px;
      height: 26px;
      color: var(--primary);
    }

    .engagement-popup-heading h3 {
      font-family: 'Fredoka', sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 6px;
    }

    .engagement-popup-heading p {
      font-size: 15px;
      color: #94a3b8;
    }

    /* Form - same as mitmachen-form */
    .engagement-popup-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
      opacity: 0;
      transform: translateY(16px);
      animation: popupFadeUp 0.5s ease forwards 0.25s;
    }

    .engagement-popup-form label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .engagement-popup-input-wrap {
      position: relative;
    }

    .engagement-popup-input-wrap .input-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      color: #94a3b8;
      pointer-events: none;
    }

    .engagement-popup-input {
      width: 100%;
      padding: 16px 18px 16px 44px;
      border: 1.5px solid #e2e8f0;
      border-radius: 14px;
      font-size: 15px;
      font-family: 'Instrument Sans', sans-serif;
      background: #fff;
      transition: all 0.25s ease;
      color: var(--text-dark);
    }

    .engagement-popup-input:focus {
      outline: none;
      border-color: var(--primary);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
    }

    .engagement-popup-input::placeholder {
      color: #b0b8c4;
    }

    /* Submit button - same as mitmachen-submit */
    .engagement-popup-submit {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 16px 28px;
      background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
      color: white;
      font-size: 15px;
      font-weight: 600;
      font-family: 'Instrument Sans', sans-serif;
      border: none;
      border-radius: 14px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.35s var(--transition-smooth);
    }

    .engagement-popup-submit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    .engagement-popup-submit:hover::before {
      opacity: 1;
    }

    .engagement-popup-submit:hover {
      transform: translateY(-2px);
      box-shadow:
        0 4px 12px rgba(139, 92, 246, 0.25),
        0 12px 32px rgba(139, 92, 246, 0.2);
    }

    .engagement-popup-submit span,
    .engagement-popup-submit svg {
      position: relative;
      z-index: 1;
    }

    .engagement-popup-submit svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .engagement-popup-submit:hover svg {
      transform: translateX(4px);
    }

    /* Trust row - same as form-trust-row */
    .engagement-popup-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      opacity: 0;
      animation: popupFadeUp 0.5s ease forwards 0.35s;
    }

    .engagement-popup-trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 500;
      color: #64748b;
    }

    .engagement-popup-trust-item svg {
      width: 15px;
      height: 15px;
      color: var(--success);
    }

    /* Skip link */
    .engagement-popup-skip {
      text-align: center;
      margin-top: 16px;
      opacity: 0;
      animation: popupFadeUp 0.5s ease forwards 0.4s;
    }

    .engagement-popup-skip button {
      background: none;
      border: none;
      color: #94a3b8;
      font-size: 13px;
      font-family: 'Instrument Sans', sans-serif;
      cursor: pointer;
      padding: 8px 16px;
      border-radius: 8px;
      transition: all 0.2s;
    }

    .engagement-popup-skip button:hover {
      color: var(--text-dark);
      background: rgba(0, 0, 0, 0.03);
    }

    /* SH Hint - same as mitmachen-sh-hint */
    .engagement-popup-sh-hint {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 36px;
      background: rgba(0, 0, 0, 0.02);
      border-top: 1px solid rgba(0, 0, 0, 0.04);
      opacity: 0;
      animation: popupFadeUp 0.5s ease forwards 0.45s;
    }

    .engagement-popup-sh-hint svg {
      width: 15px;
      height: 15px;
      color: var(--secondary);
      flex-shrink: 0;
    }

    .engagement-popup-sh-hint span {
      font-size: 0.82rem;
      color: #64748b;
      line-height: 1.4;
    }

    /* Mobile adjustments */
    @media (max-width: 540px) {
      .engagement-popup-overlay {
        padding: 0;
        align-items: flex-end;
      }

      .engagement-popup-overlay::before,
      .engagement-popup-overlay::after {
        display: none;
      }

      .engagement-popup {
        border-radius: 24px 24px 0 0;
        max-width: 100%;
        transform: translateY(100%);
      }

      .engagement-popup-overlay.visible .engagement-popup {
        transform: translateY(0);
      }

      .engagement-popup-body {
        padding: 32px 24px 24px;
      }

      .engagement-popup-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        margin-bottom: 14px;
      }

      .engagement-popup-icon svg {
        width: 22px;
        height: 22px;
      }

      .engagement-popup-heading h3 {
        font-size: 22px;
      }

      .engagement-popup-trust {
        gap: 12px;
      }

      .engagement-popup-trust-item {
        font-size: 11px;
      }

      .engagement-popup-sh-hint {
        padding: 12px 24px;
      }
    }

    /* ══════════════════════════════════
       MOBILE PHONE OPTIMIZATIONS
       ══════════════════════════════════ */
    @media (max-width: 600px) {
      /* 1. Hide iPad animation + Ausprobieren link in hero */
      .hero-visual { display: none !important; }
      .try-link { display: none !important; }

      /* 2. Hide "Kostenlos" badge */
      .hero-badge { display: none !important; }

      /* 3. "Jetzt starten" button spacing in Projekt section */
      .about-cta { margin-top: 20px; }

      /* 4. Bestandteile cards: vertical stack, centered (collapsed AND expanded) */
      .deck-stack {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 14px !important;
        height: auto !important;
        width: 100% !important;
        perspective: none !important;
      }
      .deck-card {
        position: relative !important;
        transform: none !important;
        width: 100% !important;
        max-width: 300px !important;
      }
      .deck-card:hover {
        transform: translateY(-4px) scale(1.02) !important;
      }
      .card-edge { display: none !important; }

      /* 5. Hide screenshots in "Lernfortschritt im Blick" */
      .device-theater { display: none !important; }

      /* 6. Mitmachen form: fix alignment */
      .mitmachen-card { padding: 24px !important; }
      .mitmachen-right {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 16px !important;
      }
      .form-card-body { padding: 24px 18px 20px !important; }
      .mitmachen-form {
        flex-direction: column !important;
        padding: 4px !important;
      }
      .form-submit-row {
        width: 100% !important;
      }
      .mitmachen-grid {
        gap: 28px !important;
      }
    }

  
    /* === Akteur-Trennung — Rollen-Labels (2026-05-15) === */
    .partner-logos-roles {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: flex-start;
      margin-top: 18px;
    }
    .partner-role,
    .trust-bar-role {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
    }
    .partner-role-label,
    .trust-bar-role-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(15, 23, 42, 0.55);
      white-space: nowrap;
    }
    .partner-logos-roles img,
    .mitmachen-trust-bar-roles img {
      height: 36px;
      width: auto;
      opacity: 0.85;
      filter: grayscale(20%);
      transition: opacity 0.2s ease, filter 0.2s ease;
    }
    .partner-logos-roles img:hover,
    .mitmachen-trust-bar-roles img:hover {
      opacity: 1;
      filter: none;
    }
    .mitmachen-trust-bar-roles {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      align-items: flex-end;
      margin-top: 14px;
    }
    @media (max-width: 720px) {
      .partner-logos-roles,
      .mitmachen-trust-bar-roles {
        gap: 16px;
      }
      .partner-role-label,
      .trust-bar-role-label {
        font-size: 10px;
      }
      .partner-logos-roles img,
      .mitmachen-trust-bar-roles img {
        height: 28px;
      }
    }

    /* === Event Pill (sticky, bottom-center, slim) === */
    .mz-event-pill {
      position: fixed;
      left: 50%;
      bottom: 22px;
      transform: translateX(-50%) translateY(120%);
      max-width: calc(100vw - 32px);
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 8px 8px 8px 18px;
      background: #fefdf8;
      border: 1px solid #e8e0c8;
      border-radius: 999px;
      box-shadow:
        0 18px 50px -14px rgba(11, 15, 26, 0.22),
        0 4px 12px -2px rgba(11, 15, 26, 0.08);
      z-index: 9998;
      opacity: 0;
      pointer-events: none;
      transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
      font-family: 'Instrument Sans', sans-serif;
    }
    .mz-event-pill[hidden] { display: none; }
    .mz-event-pill.open {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .mz-event-pill-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #ea580c;
      flex-shrink: 0;
      box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12);
    }
    .mz-event-pill-eyebrow {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: #8a7d65;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .mz-event-pill-sep {
      color: #c8c0a8;
      font-size: 13px;
    }
    .mz-event-pill-title {
      font-family: 'Fredoka', sans-serif;
      font-size: 14.5px;
      font-weight: 600;
      color: #0b0f1a;
      letter-spacing: -0.1px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .mz-event-pill-cta {
      flex-shrink: 0;
      padding: 9px 18px;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 13.5px;
      font-weight: 600;
      color: #fefdf8;
      background: #0b0f1a;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      transition: background 0.18s, transform 0.12s;
      white-space: nowrap;
    }
    .mz-event-pill-cta:hover { background: #1f2937; }
    .mz-event-pill-cta:active { transform: scale(0.97); }
    .mz-event-pill-close {
      flex-shrink: 0;
      width: 32px; height: 32px;
      border: none; background: transparent;
      color: #8a7d65;
      cursor: pointer;
      border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      transition: background 0.18s, color 0.18s;
    }
    .mz-event-pill-close:hover { background: #efe9d6; color: #4b3f2a; }
    .mz-event-pill-close svg { width: 16px; height: 16px; }

    @media (max-width: 760px) {
      .mz-event-pill {
        bottom: 14px;
        gap: 8px;
        padding: 7px 7px 7px 14px;
        border-radius: 18px;
        flex-wrap: wrap;
        max-width: calc(100vw - 24px);
      }
      .mz-event-pill-sep { display: none; }
      .mz-event-pill-title {
        font-size: 13.5px;
        flex: 1 1 100%;
        order: 3;
        white-space: normal;
        line-height: 1.3;
        padding: 2px 6px 6px;
      }
      .mz-event-pill-eyebrow { font-size: 10.5px; }
      .mz-event-pill-cta { order: 4; flex: 1; }
      .mz-event-pill-close { order: 5; }
    }

    /* === Event Modal === */
    .mz-event-modal-backdrop {
      position: fixed; inset: 0;
      background: rgba(11, 15, 26, 0.5);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      padding: 20px;
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.22s ease;
    }
    .mz-event-modal-backdrop[hidden] { display: none; }
    .mz-event-modal-backdrop.open { opacity: 1; }
    .mz-event-modal {
      position: relative;
      width: 100%;
      max-width: 460px;
      background: #fefdf8;
      border: 1px solid #e8e0c8;
      border-radius: 14px;
      padding: 32px 30px 28px;
      box-shadow:
        0 24px 80px -16px rgba(11, 15, 26, 0.35);
      transform: translateY(12px);
      transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .mz-event-modal-backdrop.open .mz-event-modal { transform: translateY(0); }
    .mz-event-modal-close {
      position: absolute;
      top: 12px; right: 12px;
      width: 32px; height: 32px;
      border: none; background: transparent;
      color: #8a7d65;
      cursor: pointer;
      border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      transition: background 0.18s, color 0.18s;
    }
    .mz-event-modal-close:hover { background: #efe9d6; color: #4b3f2a; }
    .mz-event-modal-close svg { width: 17px; height: 17px; }
    .mz-event-modal-eyebrow {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: #8a7d65;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 10px;
      padding-right: 32px;
    }
    .mz-event-modal-title {
      font-family: 'Fredoka', sans-serif;
      font-size: 22px;
      font-weight: 600;
      line-height: 1.22;
      letter-spacing: -0.3px;
      color: #0b0f1a;
      margin: 0 0 8px;
    }
    .mz-event-modal-desc {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 14px;
      color: #4b5563;
      line-height: 1.55;
      margin: 0 0 18px;
    }
    .mz-event-modal-form { display: flex; flex-direction: column; gap: 10px; }
    .mz-event-modal-form input[type="email"] {
      padding: 12px 14px;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 14.5px;
      color: #0b0f1a;
      border: 1px solid #d9d1bf;
      border-radius: 9px;
      background: #fffefa;
      transition: border-color 0.18s, box-shadow 0.18s;
    }
    .mz-event-modal-form input[type="email"]::placeholder { color: #a8a08e; }
    .mz-event-modal-form input[type="email"]:focus {
      outline: none;
      border-color: #ea580c;
      box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
    }
    .mz-event-modal-submit {
      padding: 12px 22px;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 14.5px;
      font-weight: 600;
      color: #fefdf8;
      background: #0b0f1a;
      border: none;
      border-radius: 9px;
      cursor: pointer;
      transition: background 0.18s, transform 0.12s;
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    }
    .mz-event-modal-submit:hover:not(:disabled) { background: #1f2937; }
    .mz-event-modal-submit:active { transform: scale(0.98); }
    .mz-event-modal-submit:disabled { opacity: 0.7; cursor: wait; }
    .mz-event-modal-submit-spinner {
      width: 14px; height: 14px;
      border: 2px solid rgba(255,255,255,0.35);
      border-top-color: #fefdf8;
      border-radius: 50%;
      animation: mzEventSpin 0.8s linear infinite;
    }
    @keyframes mzEventSpin { to { transform: rotate(360deg); } }
    .mz-event-modal-error {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 13px;
      color: #b91c1c;
      margin: 4px 0 0;
    }
    .mz-event-modal-fine {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 12px;
      color: #8a7d65;
      line-height: 1.5;
      margin: 6px 0 0;
    }
    .mz-event-modal-fine a { color: #ea580c; text-decoration: none; }
    .mz-event-modal-fine a:hover { text-decoration: underline; }
    .mz-event-modal-success { padding: 4px 0 2px; }
    .mz-event-modal-success-text {
      font-family: 'Instrument Sans', sans-serif;
      font-size: 14px;
      color: #4b5563;
      line-height: 1.55;
      margin: 0;
    }
    @media (max-width: 480px) {
      .mz-event-modal { padding: 28px 22px 24px; border-radius: 14px; }
      .mz-event-modal-title { font-size: 20px; }
    }

/* ===== Blog-Vertiefungs-CTAs (dezente Textlinks zu /blog-Artikeln) ===== */
.blog-cta{display:flex;align-items:center;flex-wrap:wrap;gap:8px 10px;margin-top:22px;text-decoration:none;line-height:1.4;max-width:500px}
.blog-cta .bc-title{font-family:'Instrument Sans',system-ui,sans-serif;font-size:14.5px;font-weight:600;color:#6d28d9;text-decoration:underline;text-decoration-color:rgba(139,92,246,.35);text-underline-offset:4px;transition:color .25s,text-decoration-color .25s}
.blog-cta .bc-arrow{display:inline-block;vertical-align:-2.5px;margin-left:3px;width:15px;height:15px;stroke:#7c3aed;stroke-width:2.2;fill:none;stroke-linecap:round;stroke-linejoin:round;transition:transform .25s}
.blog-cta:hover .bc-title{color:#4c1d95;text-decoration-color:#7c3aed}
.blog-cta:hover .bc-arrow{transform:translateX(3px)}
.blog-cta-stack{display:flex;flex-direction:column;gap:4px;margin-top:28px}
@media (max-width:768px){.about-header .blog-cta{justify-content:center}}
.blog-cta-stack .blog-cta{margin-top:0;max-width:none}

      .cover-band {
        position: relative;
        overflow: hidden;
        background: #f8f7f4;
        padding: 18px 0;
      }
      .cover-band::before,
      .cover-band::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 28px;
        z-index: 2;
        pointer-events: none;
      }
      .cover-band::before {
        top: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.04) 40%, transparent 100%);
      }
      .cover-band::after {
        bottom: 0;
        background: linear-gradient(0deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.04) 40%, transparent 100%);
      }
      .cover-band-row {
        display: flex;
        gap: 6px;
      }
      .cover-band-row + .cover-band-row {
        margin-top: 6px;
      }
      .cover-band-row.offset {
        margin-left: -48px;
      }
      .cover-band-tile {
        flex: 0 0 auto;
        width: 90px;
        height: 120px;
        border-radius: 8px;
        overflow: hidden;
        background: #ece7dd;
      }
      .cover-band-tile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      @media (max-width: 600px) {
        .cover-band { padding: 14px 0; }
        .cover-band-tile { width: 72px; height: 96px; border-radius: 6px; }
        .cover-band-row { gap: 5px; }
        .cover-band-row + .cover-band-row { margin-top: 5px; }
        .cover-band-row.offset { margin-left: -38px; }
      }
    

#konzept{position:relative;background:var(--bg-light);overflow:visible;isolation:isolate}
#konzept::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(ellipse 560px 420px at 18% 12%, rgba(139,92,246,.13), transparent 68%),
    radial-gradient(ellipse 680px 480px at 78% 18%, rgba(244,114,182,.10), transparent 70%),
    radial-gradient(ellipse 740px 520px at 42% 44%, rgba(56,189,248,.12), transparent 72%),
    radial-gradient(ellipse 650px 460px at 82% 67%, rgba(16,185,129,.10), transparent 72%),
    radial-gradient(ellipse 620px 420px at 44% 88%, rgba(245,158,11,.09), transparent 70%);
}
#konzept .mz-flow-arrow{
  display:none;
  position:absolute;
  z-index:1;
  pointer-events:none;
  opacity:.52;
  filter:drop-shadow(0 10px 22px rgba(99,102,241,.10));
}
#konzept .mz-native{background:transparent!important;position:relative;overflow:visible;isolation:isolate;z-index:2}
#konzept .mz-native::before{
  content:"";
  position:absolute;
  inset:6% -12%;
  z-index:0;
  pointer-events:none;
  opacity:.7;
  background:radial-gradient(ellipse 58% 44% at 50% 50%, rgba(255,255,255,.58), transparent 72%);
}
#konzept .mz-native>.sec{position:relative;z-index:1}
#konzept .mz-native .sec{overflow:visible!important}
#konzept .mz-native .grid>*{min-width:0}
#konzept .mz-native .blob{opacity:.32!important;filter:blur(92px)!important}
#konzept .mz-native .eyebrow{
  gap:0!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
  font-family:'Instrument Sans',system-ui,sans-serif!important;
  font-size:12px!important;
  font-weight:700!important;
  letter-spacing:.11em!important;
  line-height:1.2!important;
  text-transform:uppercase!important;
  color:var(--primary)!important;
}
#konzept .mz-native .eyebrow .dot{display:none!important}
#konzept .mzs-auswertung .dash-fade{background:linear-gradient(rgba(250,251,252,0),rgba(250,251,252,.92) 62%,var(--bg-light))!important}
@media(min-width:1024px){
  #konzept .mz-flow-arrow{display:block}
  #konzept .mz-flow-arrow-1{width:min(480px,31vw);left:calc(50% - 330px);top:630px}
  #konzept .mz-flow-arrow-2{width:min(430px,32vw);left:calc(50% - 520px);top:1180px;opacity:.46}
  #konzept .mzs-adaptiv .sec{padding-bottom:64px}
  #konzept .mzs-mazio .sec{padding-top:56px;padding-bottom:64px}
  #konzept .mzs-mazio .grid{align-items:center!important}
  #konzept .mzs-mazio .grid>div:first-child{order:2}
  #konzept .mzs-mazio .grid>div:last-child{order:1;padding-top:56px}
  #konzept .mzs-auswertung .sec{padding-top:56px;padding-bottom:36px}
  #konzept .mzs-auswertung .dash-collapse{max-height:520px}
  #konzept .mzs-auswertung .dash-fade{
    height:260px!important;
    background:linear-gradient(rgba(250,251,252,0),rgba(250,251,252,.78) 42%,rgba(250,251,252,.98) 78%,var(--bg-light))!important;
  }
  #konzept .mzs-auswertung .dash-more{margin-top:-58px!important}
  #konzept ~ .sammlung{padding-top:0}
  #konzept ~ .sammlung .sammlung-cta{padding-top:44px}
}
@media(max-width:820px){
  #konzept .mz-native .sec{max-width:100%;padding:72px 28px;overflow:hidden!important}
  #konzept .mzs-adaptiv h2,#konzept .mzs-mazio h2,#konzept .mzs-auswertung h2{font-size:clamp(28px,8vw,36px)}
  #konzept .mzs-adaptiv .lead,#konzept .mzs-mazio .lead,#konzept .mzs-auswertung .lead{font-size:16px}
  #konzept .mzs-adaptiv .cat-head{align-items:flex-start;flex-direction:column}
  #konzept .mzs-adaptiv .cat-status{align-self:flex-start}
  #konzept .mzs-adaptiv #mWindow,#konzept .mzs-adaptiv #mCanvas{width:100%!important}
  #konzept .mzs-adaptiv .stage{padding:24px 16px;overflow:hidden}
  #konzept .mzs-adaptiv .board-wrap{height:270px;transform:scale(.84);transform-origin:top center}
  #konzept .mzs-adaptiv .legend{gap:10px;flex-wrap:wrap}
}
@media(max-width:420px){
  #konzept .mz-native .sec{padding-left:28px;padding-right:28px}
  #konzept .mzs-adaptiv .board-wrap{height:252px;transform:scale(.78)}
  #konzept .mzs-adaptiv .legend span{font-size:12px}
}
.mzs-adaptiv{--ink:#1b1840;--muted:#5b577a;--indigo:#6366f1;--violet:#8b5cf6;--violet-d:#5b21b6;
    --green:#10b981;--amber:#f59e0b;--red:#ef4444;}.mzs-adaptiv *{box-sizing:border-box}.mzs-adaptiv{margin:0;font-family:'Instrument Sans',system-ui,sans-serif;color:var(--ink);-webkit-font-smoothing:antialiased;background:#eef0fb}.mzs-adaptiv .sec{position:relative;max-width:1180px;margin:0 auto;padding:96px 28px;overflow:hidden}.mzs-adaptiv .blob{position:absolute;border-radius:50%;filter:blur(70px);opacity:.55;z-index:0;pointer-events:none}.mzs-adaptiv .b1{width:560px;height:560px;left:-160px;top:-120px;background:radial-gradient(circle,#c7c4ff,transparent 70%)}.mzs-adaptiv .b2{width:520px;height:520px;right:-140px;top:40px;background:radial-gradient(circle,#ffd0ec,transparent 70%)}.mzs-adaptiv .b3{width:520px;height:520px;left:30%;bottom:-200px;background:radial-gradient(circle,#bfe3ff,transparent 70%)}.mzs-adaptiv .grid{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1.04fr;gap:54px;align-items:center}.mzs-adaptiv .glass{position:relative;background:rgba(255,255,255,.5);backdrop-filter:blur(20px) saturate(1.5);
    -webkit-backdrop-filter:blur(20px) saturate(1.5);border:1px solid rgba(255,255,255,.7);border-radius:22px;
    box-shadow:0 20px 50px -28px rgba(70,60,160,.5),inset 0 1px 0 rgba(255,255,255,.85)}.mzs-adaptiv .glass::after{content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;
    background:linear-gradient(150deg,rgba(255,255,255,.5),rgba(255,255,255,0) 42%)}.mzs-adaptiv /* LEFT */
  .eyebrow{display:inline-flex;align-items:center;gap:9px;font-family:'Fredoka';font-weight:600;font-size:13px;
    letter-spacing:.03em;color:var(--violet-d);padding:9px 16px;border-radius:999px;background:rgba(255,255,255,.55);
    border:1px solid rgba(255,255,255,.7);box-shadow:0 6px 18px -10px rgba(99,102,241,.5)}.mzs-adaptiv .eyebrow .dot{width:8px;height:8px;border-radius:50%;background:var(--green);animation:mzs-adaptiv_pulse 2s infinite}@keyframes mzs-adaptiv_pulse{0%,100%{box-shadow:0 0 0 3px rgba(16,185,129,.25)}50%{box-shadow:0 0 0 7px rgba(16,185,129,0)}}@keyframes mzs-adaptiv_pulseV{0%,100%{box-shadow:0 0 0 3px rgba(139,92,246,.28)}50%{box-shadow:0 0 0 6px rgba(139,92,246,0)}}.mzs-adaptiv h2{font-family:'Fredoka';font-weight:600;font-size:clamp(30px,3.5vw,42px);line-height:1.08;letter-spacing:-.02em;margin:20px 0 14px}.mzs-adaptiv h2 .hl{background:linear-gradient(120deg,var(--indigo),var(--violet));-webkit-background-clip:text;background-clip:text;color:transparent}.mzs-adaptiv .lead{font-size:17px;line-height:1.6;color:var(--muted);margin:0 0 22px;max-width:470px}.mzs-adaptiv .lead b{color:var(--ink);font-weight:600}.mzs-adaptiv .cat{padding:20px 22px 22px;max-width:460px}.mzs-adaptiv .cat-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;gap:12px}.mzs-adaptiv .cat-title{font-family:'Fredoka';font-weight:600;font-size:16px}.mzs-adaptiv .cat-sub{font-size:12.5px;color:var(--muted);margin-top:1px}.mzs-adaptiv .cat-status{display:flex;align-items:center;gap:8px;font-size:12.5px;font-weight:600;color:var(--muted);
    background:rgba(255,255,255,.55);padding:6px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.7);white-space:nowrap}.mzs-adaptiv .sdot{width:8px;height:8px;border-radius:50%;background:var(--violet);flex:0 0 8px;animation:mzs-adaptiv_pulseV 1.4s infinite}.mzs-adaptiv /* RIGHT */
  .stage{padding:28px}.mzs-adaptiv .stage-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}.mzs-adaptiv .stage-q{font-family:'Fredoka';font-weight:600;font-size:15px;color:var(--ink);background:rgba(255,255,255,.6);
    padding:8px 14px;border-radius:11px;border:1px solid rgba(255,255,255,.8)}.mzs-adaptiv .stage-tag{font-size:11px;font-weight:700;letter-spacing:.04em;color:var(--violet-d);background:rgba(139,92,246,.12);padding:6px 11px;border-radius:8px}.mzs-adaptiv .board-wrap{display:flex;justify-content:center}.mzs-adaptiv .board{position:relative;display:grid;gap:8px;touch-action:none}.mzs-adaptiv .cell{border-radius:9px;background:rgba(255,255,255,.4);border:1px solid rgba(255,255,255,.6);
    box-shadow:inset 0 1px 1px rgba(255,255,255,.7);transition:background .35s,opacity .35s,transform .25s,box-shadow .35s}.mzs-adaptiv .cell.axis{background:rgba(245,158,11,.14);border-color:rgba(245,158,11,.3)}.mzs-adaptiv .cell.src{background:linear-gradient(158deg,#8487f7,#5b54e8);border-color:rgba(91,84,232,.5);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.45),0 6px 14px -4px rgba(99,102,241,.6)}.mzs-adaptiv .cell.ok{background:linear-gradient(158deg,#34d399,#059669);border-color:rgba(5,150,105,.5);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.45),0 6px 14px -4px rgba(16,185,129,.6);animation:mzs-adaptiv_pop .32s ease}.mzs-adaptiv .cell.bad{background:linear-gradient(158deg,#f87171,#dc2626);border-color:rgba(220,38,38,.5);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.4),0 6px 14px -4px rgba(239,68,68,.55);animation:mzs-adaptiv_pop .32s ease}@keyframes mzs-adaptiv_pop{0%{transform:scale(.4)}60%{transform:scale(1.12)}100%{transform:scale(1)}}.mzs-adaptiv .cell.shake{animation:mzs-adaptiv_shk .42s}@keyframes mzs-adaptiv_shk{0%,100%{transform:translateX(0)}25%{transform:translateX(-3px)}75%{transform:translateX(3px)}}.mzs-adaptiv .axisline{position:absolute;top:-8px;bottom:-8px;width:0;border-left:2.5px dashed var(--amber);pointer-events:none;z-index:2;opacity:.85}.mzs-adaptiv .cursor{position:absolute;left:0;top:0;width:30px;height:30px;z-index:5;pointer-events:none;opacity:0;
    transition:transform .42s cubic-bezier(.3,.7,.3,1),opacity .3s;will-change:transform}.mzs-adaptiv .cdot{display:block;width:100%;height:100%;border-radius:50%;background:rgba(255,255,255,.35);
    backdrop-filter:blur(3px);border:2px solid rgba(99,102,241,.85);box-shadow:0 6px 16px rgba(99,102,241,.45)}.mzs-adaptiv .cursor.tap .cdot{animation:mzs-adaptiv_tap .3s}@keyframes mzs-adaptiv_tap{50%{transform:scale(.6)}}.mzs-adaptiv .stage{transition:box-shadow .55s ease}.mzs-adaptiv .stage.is-bad{box-shadow:0 0 0 1.5px rgba(239,68,68,.26),0 12px 38px -8px rgba(239,68,68,.4),0 20px 50px -28px rgba(70,60,160,.42),inset 0 1px 0 rgba(255,255,255,.85)}.mzs-adaptiv .stage.is-ok{animation:mzs-adaptiv_okGlow .9s cubic-bezier(.2,.8,.3,1) forwards}@keyframes mzs-adaptiv_okGlow{0%{box-shadow:0 20px 50px -28px rgba(70,60,160,.5),inset 0 1px 0 rgba(255,255,255,.85)}45%{box-shadow:0 0 0 2px rgba(16,185,129,.5),0 18px 54px 0 rgba(16,185,129,.55),0 20px 50px -28px rgba(70,60,160,.5),inset 0 1px 0 rgba(255,255,255,.9)}100%{box-shadow:0 0 0 1.5px rgba(16,185,129,.34),0 14px 44px -6px rgba(16,185,129,.46),0 20px 50px -28px rgba(70,60,160,.5),inset 0 1px 0 rgba(255,255,255,.9)}}.mzs-adaptiv .legend{display:flex;gap:20px;justify-content:center;margin-top:20px}.mzs-adaptiv .legend span{display:flex;align-items:center;gap:7px;font-size:12.5px;color:var(--muted);font-weight:500}.mzs-adaptiv .legend i{width:14px;height:14px;border-radius:5px;display:inline-block;box-shadow:inset 0 1px 0 rgba(255,255,255,.5)}.mzs-adaptiv .rstat{display:flex;align-items:center;gap:9px;margin-top:16px}.mzs-adaptiv .rstat .rdot{width:8px;height:8px;border-radius:50%;background:var(--violet);flex:none;transition:background .3s}.mzs-adaptiv .rstat span{font-size:13px;font-weight:500;color:#4b4870}
  @media(max-width:880px){.mzs-adaptiv .grid{grid-template-columns:1fr;gap:38px}.mzs-adaptiv .blob{opacity:.4}}

  

.mzs-mazio{--ink:#1b1840;--muted:#5b577a;--indigo:#6366f1;--violet:#8b5cf6;--violet-d:#5b21b6;
    --green:#10b981;--amber:#f59e0b;--red:#ef4444;}.mzs-mazio *{box-sizing:border-box}.mzs-mazio{margin:0;font-family:'Instrument Sans',system-ui,sans-serif;color:var(--ink);-webkit-font-smoothing:antialiased;background:#eef0fb}.mzs-mazio /* ---- geteiltes Fundament (wie mz-section-adaptiv.html) ---- */
  .sec{position:relative;max-width:1180px;margin:0 auto;padding:96px 28px;overflow:hidden}.mzs-mazio .blob{position:absolute;border-radius:50%;filter:blur(70px);opacity:.55;z-index:0;pointer-events:none}.mzs-mazio .b1{width:560px;height:560px;left:-160px;top:-120px;background:radial-gradient(circle,#c7c4ff,transparent 70%)}.mzs-mazio .b2{width:520px;height:520px;right:-140px;top:40px;background:radial-gradient(circle,#ffd0ec,transparent 70%)}.mzs-mazio .b3{width:520px;height:520px;left:30%;bottom:-200px;background:radial-gradient(circle,#bfe3ff,transparent 70%)}.mzs-mazio .grid{position:relative;z-index:1;display:grid;grid-template-columns:1.04fr 1fr;gap:54px;align-items:center}.mzs-mazio .glass{position:relative;background:rgba(255,255,255,.5);backdrop-filter:blur(22px) saturate(1.5);
    -webkit-backdrop-filter:blur(22px) saturate(1.5);border:1px solid rgba(255,255,255,.7);border-radius:22px;
    box-shadow:0 20px 50px -28px rgba(70,60,160,.5),inset 0 1px 0 rgba(255,255,255,.85)}.mzs-mazio .glass::after{content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;
    background:linear-gradient(150deg,rgba(255,255,255,.5),rgba(255,255,255,0) 42%)}.mzs-mazio .eyebrow{display:inline-flex;align-items:center;gap:9px;font-family:'Fredoka';font-weight:600;font-size:13px;
    letter-spacing:.03em;color:var(--violet-d);padding:9px 16px;border-radius:999px;background:rgba(255,255,255,.55);
    backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.7);box-shadow:0 6px 18px -10px rgba(99,102,241,.5)}.mzs-mazio .eyebrow .dot{width:8px;height:8px;border-radius:50%;background:var(--green);animation:mzs-mazio_pulse 2s infinite}@keyframes mzs-mazio_pulse{0%,100%{box-shadow:0 0 0 3px rgba(16,185,129,.25)}50%{box-shadow:0 0 0 7px rgba(16,185,129,0)}}.mzs-mazio h2{font-family:'Fredoka';font-weight:600;font-size:clamp(30px,3.5vw,42px);line-height:1.08;letter-spacing:-.02em;margin:20px 0 14px}.mzs-mazio h2 .hl{background:linear-gradient(120deg,var(--indigo),var(--violet));-webkit-background-clip:text;background-clip:text;color:transparent}.mzs-mazio .lead{font-size:17px;line-height:1.6;color:var(--muted);margin:0 0 24px;max-width:480px}.mzs-mazio .lead b{color:var(--ink);font-weight:600}.mzs-mazio /* ===== LINKS: glassy Mazio-Chat ===== */
  .chatpanel{position:relative;overflow:hidden;padding:0;min-height:484px;display:flex;flex-direction:column}.mzs-mazio .chatpanel.glass::after{content:none}.mzs-mazio .cp-bg{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;z-index:0;
    filter:blur(7px);opacity:.5;pointer-events:none;user-select:none}.mzs-mazio .bgtask{font-family:'Fredoka';font-weight:600;font-size:46px;color:rgba(91,33,182,.55);white-space:nowrap;letter-spacing:.02em}.mzs-mazio .bgbox{display:inline-block;min-width:56px;padding:2px 14px;margin:0 7px;border-radius:13px;
    background:rgba(239,68,68,.22);color:rgba(220,38,38,.9);border:2px solid rgba(220,38,38,.4)}.mzs-mazio .cp-bg svg.bgsym{width:212px;height:auto}.mzs-mazio .bgpie{width:150px;height:150px;border-radius:50%;background:conic-gradient(#8b5cf6 0 50%,#34d399 50% 70%,#f59e0b 70% 86%,#60a5fa 86% 100%)}.mzs-mazio .cp-veil{position:absolute;inset:0;z-index:1;pointer-events:none;backdrop-filter:blur(2px);-webkit-backdrop-filter:blur(2px);
    background:linear-gradient(180deg,rgba(255,255,255,.4),rgba(255,255,255,.58))}.mzs-mazio .cp-head{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:10px;
    padding:16px 20px;border-bottom:1px solid rgba(255,255,255,.6)}.mzs-mazio .cp-name{display:flex;align-items:center;gap:10px;font-family:'Fredoka';font-weight:600;font-size:15px;color:var(--ink)}.mzs-mazio .cp-av{width:32px;height:32px;flex:0 0 auto;display:block}.mzs-mazio .cp-av svg{width:32px;height:auto;overflow:visible;transform-origin:50% 92%;animation:mzs-mazio_breathe 3.4s ease-in-out infinite}@keyframes mzs-mazio_breathe{0%,100%{transform:scale(1,1)}50%{transform:scale(1.03,.97) translateY(1px)}}.mzs-mazio .cp-sub{display:block;font-size:11.5px;font-weight:500;color:var(--muted);margin-top:1px}.mzs-mazio .cp-topic{font-size:11px;font-weight:700;letter-spacing:.04em;color:var(--violet-d);background:rgba(139,92,246,.14);padding:6px 11px;border-radius:8px;white-space:nowrap;transition:background-color .6s ease,color .6s ease}.mzs-mazio .cp-tint{position:absolute;inset:0;z-index:1;pointer-events:none;background-color:transparent;transition:background-color .8s ease}.mzs-mazio .cp-result{position:relative;z-index:2;margin:0 20px 20px;text-align:center;font-family:'Fredoka';font-weight:500;font-size:14.5px;line-height:1.4;color:var(--ink);padding:13px 18px;border-radius:17px;background:linear-gradient(120deg,rgba(99,102,241,.2),rgba(16,185,129,.2));backdrop-filter:blur(14px) saturate(1.4);-webkit-backdrop-filter:blur(14px) saturate(1.4);border:1px solid rgba(139,92,246,.34);box-shadow:0 14px 30px -18px rgba(99,102,241,.7),inset 0 1px 0 rgba(255,255,255,.7)}.mzs-mazio .cp-result b{font-family:'Fredoka';font-weight:700;font-size:18px;color:var(--violet-d)}.mzs-mazio .cp-result .rlab{display:block;font-family:'Instrument Sans';font-weight:700;font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:var(--violet-d);opacity:.7;margin-bottom:5px}.mzs-mazio .cp-stream{position:relative;z-index:2;flex:1;min-height:0}.mzs-mazio .bubble{position:absolute;padding:11px 15px;border-radius:17px;font-size:14.5px;line-height:1.46;
    opacity:0;transform:translateY(16px) scale(.97);filter:blur(8px);
    transition:opacity .5s ease,transform .55s cubic-bezier(.2,.8,.2,1),filter .5s ease;will-change:transform,opacity,filter}.mzs-mazio .bubble.in{opacity:1;transform:none;filter:none}.mzs-mazio .bubble.out{opacity:0;transform:translateY(-16px) scale(.97);filter:blur(8px)}.mzs-mazio .bubble b{font-weight:700}.mzs-mazio .bubble.mz{align-self:flex-start;color:var(--ink);border-bottom-left-radius:6px;
    background:linear-gradient(160deg,rgba(255,255,255,.6),rgba(255,255,255,.4));
    backdrop-filter:blur(14px) saturate(1.5);-webkit-backdrop-filter:blur(14px) saturate(1.5);
    border:1px solid rgba(255,255,255,.85);
    box-shadow:0 12px 30px -16px rgba(70,60,160,.6),inset 0 1px 0 rgba(255,255,255,.95)}.mzs-mazio .bubble.typing{display:flex;gap:5px;align-items:center;padding:14px 16px}.mzs-mazio .bubble.typing span{width:6px;height:6px;border-radius:50%;background:var(--violet);opacity:.45;animation:mzs-mazio_td 1s infinite}.mzs-mazio .bubble.typing span:nth-child(2){animation-delay:.15s}.mzs-mazio .bubble.typing span:nth-child(3){animation-delay:.3s}@keyframes mzs-mazio_td{0%,60%,100%{transform:translateY(0);opacity:.4}30%{transform:translateY(-4px);opacity:.9}}.mzs-mazio .bubble.result{align-self:stretch;max-width:100%;margin-top:7px;text-align:center;font-family:'Fredoka';font-weight:500;
    font-size:14.5px;line-height:1.4;color:var(--ink);padding:14px 18px;border-radius:17px;
    background:linear-gradient(120deg,rgba(99,102,241,.2),rgba(16,185,129,.2));
    backdrop-filter:blur(14px) saturate(1.4);-webkit-backdrop-filter:blur(14px) saturate(1.4);
    border:1px solid rgba(139,92,246,.34);box-shadow:0 14px 30px -18px rgba(99,102,241,.7),inset 0 1px 0 rgba(255,255,255,.7)}.mzs-mazio .bubble.result b{font-family:'Fredoka';font-weight:700;font-size:18px;color:var(--violet-d)}.mzs-mazio .bubble.result .rlab{display:block;font-family:'Instrument Sans';font-weight:700;font-size:10px;letter-spacing:.1em;
    text-transform:uppercase;color:var(--violet-d);opacity:.7;margin-bottom:5px}.mzs-mazio /* ===== RECHTS: Belege ans Ende ===== */
  .src-row{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin-top:4px}.mzs-mazio .src-row .lbl{font-size:12px;font-weight:600;color:var(--muted);width:100%;margin-bottom:2px}.mzs-mazio .src-chip{font-size:11.5px;font-weight:600;color:var(--violet-d);background:rgba(139,92,246,.1);border:1px solid rgba(139,92,246,.2);padding:5px 10px;border-radius:8px;cursor:default}
  @media(prefers-reduced-motion:reduce){.mzs-mazio .bubble{transition:none}.mzs-mazio .cp-av svg{animation:none}}
  @media(max-width:880px){.mzs-mazio .grid{grid-template-columns:1fr;gap:38px}.mzs-mazio .blob{opacity:.4}.mzs-mazio .chatpanel{min-height:440px}}

  

.mzs-auswertung{--ink:#1b1840;--muted:#5b577a;--indigo:#6366f1;--violet:#8b5cf6;--violet-d:#5b21b6;
    --paper:#2a2540;--red:#c0664a;--amber:#c8923f;--green:#7fa05a;--dgreen:#4e8a4e;--tan:#b08968;}.mzs-auswertung *{box-sizing:border-box}.mzs-auswertung{margin:0;font-family:'Instrument Sans',system-ui,sans-serif;color:var(--ink);-webkit-font-smoothing:antialiased;background:#eef0fb}.mzs-auswertung .sec{position:relative;max-width:1180px;margin:0 auto;padding:92px 28px;overflow:hidden}.mzs-auswertung .blob{position:absolute;border-radius:50%;filter:blur(70px);opacity:.5;z-index:0;pointer-events:none}.mzs-auswertung .b1{width:560px;height:560px;left:-160px;top:-120px;background:radial-gradient(circle,#c7c4ff,transparent 70%)}.mzs-auswertung .b2{width:520px;height:520px;right:-160px;top:120px;background:radial-gradient(circle,#cfeccd,transparent 70%)}.mzs-auswertung .b3{width:520px;height:520px;left:34%;bottom:-220px;background:radial-gradient(circle,#ffe2cf,transparent 70%)}.mzs-auswertung .glass{position:relative;background:rgba(255,255,255,.5);backdrop-filter:blur(22px) saturate(1.5);
    -webkit-backdrop-filter:blur(22px) saturate(1.5);border:1px solid rgba(255,255,255,.7);border-radius:24px;
    box-shadow:0 24px 60px -34px rgba(70,60,160,.55),inset 0 1px 0 rgba(255,255,255,.85)}.mzs-auswertung /* intro */
  .header-card{position:relative;z-index:1;padding:34px 40px;margin:0 0 18px}.mzs-auswertung .header-card .lead{margin-top:14px;max-width:680px}.mzs-auswertung .eyebrow{display:inline-flex;align-items:center;gap:9px;font-family:'Fredoka';font-weight:600;font-size:13px;
    letter-spacing:.03em;color:var(--violet-d);padding:9px 16px;border-radius:999px;background:rgba(255,255,255,.6);
    backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.7);box-shadow:0 6px 18px -10px rgba(99,102,241,.5)}.mzs-auswertung .eyebrow .dot{width:8px;height:8px;border-radius:50%;background:var(--green);animation:mzs-auswertung_pulse 2s infinite}@keyframes mzs-auswertung_pulse{0%,100%{box-shadow:0 0 0 3px rgba(127,160,90,.3)}50%{box-shadow:0 0 0 7px rgba(127,160,90,0)}}.mzs-auswertung h2{font-family:'Fredoka';font-weight:600;font-size:clamp(28px,3.4vw,40px);line-height:1.1;letter-spacing:-.02em;margin:18px 0 12px}.mzs-auswertung h2 .hl{background:linear-gradient(120deg,var(--indigo),var(--violet));-webkit-background-clip:text;background-clip:text;color:transparent}.mzs-auswertung .lead{font-size:16.5px;line-height:1.6;color:var(--muted);margin:0;max-width:540px}.mzs-auswertung /* dashboard shell */
  .dash{position:relative;z-index:1;padding:22px;display:flex;flex-direction:column;gap:18px}.mzs-auswertung .panel{position:relative;background:rgba(255,255,255,.56);border:1px solid rgba(255,255,255,.72);border-radius:18px;
    box-shadow:0 10px 26px -20px rgba(70,60,160,.5),inset 0 1px 0 rgba(255,255,255,.7);padding:22px 24px}.mzs-auswertung .p-eyebrow{display:flex;align-items:center;gap:8px;font-family:'Instrument Sans';font-weight:700;font-size:11.5px;
    letter-spacing:.09em;text-transform:uppercase;color:var(--muted)}.mzs-auswertung .p-eyebrow svg{width:15px;height:15px;opacity:.6}.mzs-auswertung .ser{font-family:'Fraunces',serif}.mzs-auswertung .p-meta{font-family:'Instrument Sans';font-size:12.5px;color:#9a93b0}.mzs-auswertung /* class picker folders */
  .picker-head{font-family:'Fraunces',serif;font-weight:600;font-size:18px;margin:0 0 16px;color:var(--paper)}.mzs-auswertung .picker-head em{font-style:italic;color:var(--violet-d)}.mzs-auswertung .folders{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.mzs-auswertung .folder{cursor:pointer;text-align:center;transition:transform .22s cubic-bezier(.3,1.3,.5,1)}.mzs-auswertung .folder:hover{transform:translateY(-5px)}.mzs-auswertung .folder .tab{position:relative;height:96px;border-radius:5px 14px 14px 14px;color:#fff;
    font-family:'Fraunces',serif;font-weight:600;font-size:22px;display:flex;align-items:center;justify-content:center;
    box-shadow:0 12px 22px -12px rgba(40,30,80,.5),inset 0 1px 0 rgba(255,255,255,.35)}.mzs-auswertung .folder .tab::before{content:"";position:absolute;left:0;top:-9px;width:44%;height:12px;border-radius:7px 7px 0 0;background:inherit}.mzs-auswertung .folder .tab::after{content:"";position:absolute;inset:0;border-radius:inherit;background:linear-gradient(150deg,rgba(255,255,255,.28),transparent 55%)}.mzs-auswertung .folder.active .tab{box-shadow:0 16px 26px -10px rgba(40,30,80,.55),inset 0 1px 0 rgba(255,255,255,.45),0 0 0 3px rgba(255,255,255,.85),0 0 0 5px currentColor}.mzs-auswertung .folder .nm{font-family:'Instrument Sans';font-weight:700;font-size:14px;margin-top:11px;color:var(--paper)}.mzs-auswertung .folder .ct{font-family:'Instrument Sans';font-size:12px;color:#9a93b0;margin-top:1px}.mzs-auswertung /* spectrum */
  .sp-head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;margin-bottom:6px;flex-wrap:wrap}.mzs-auswertung .sp-title{font-family:'Fraunces',serif;font-weight:600;font-size:23px;color:var(--paper)}.mzs-auswertung .sp-title em{font-style:italic}.mzs-auswertung .sp-sub{font-family:'Instrument Sans';font-style:italic;font-size:13px;color:#9a93b0;margin-top:2px}.mzs-auswertung .seg{display:flex;background:rgba(255,255,255,.6);border:1px solid rgba(0,0,0,.06);border-radius:11px;padding:3px;gap:2px}.mzs-auswertung .seg button{font-family:'Instrument Sans';font-weight:600;font-size:13px;color:var(--muted);background:none;border:0;
    padding:7px 14px;border-radius:9px;cursor:pointer;display:flex;align-items:center;gap:7px;transition:.2s}.mzs-auswertung .seg button .ring{width:11px;height:11px;border-radius:50%;border:2px solid #c3bcd4}.mzs-auswertung .seg button.on{background:#fff;color:var(--paper);box-shadow:0 4px 10px -5px rgba(40,30,80,.4)}.mzs-auswertung .seg button.on .ring{border-color:var(--paper);background:radial-gradient(circle,var(--paper) 32%,transparent 36%)}.mzs-auswertung .spectrum-wrap{margin-top:8px}.mzs-auswertung svg.spectrum{width:100%;height:auto;display:block;overflow:visible}.mzs-auswertung .dot{opacity:0;transform:scale(.2);transform-box:fill-box;transform-origin:center;cursor:default;
    transition:opacity .5s ease,transform .55s cubic-bezier(.2,.85,.3,1.1)}.mzs-auswertung .dot.in{opacity:1;transform:scale(1)}.mzs-auswertung .pill{opacity:0;transition:opacity .45s ease .2s}.mzs-auswertung .pill.in{opacity:1}.mzs-auswertung .zlab{font-family:'Instrument Sans';font-weight:700;font-size:13px;letter-spacing:.05em}.mzs-auswertung /* klassenbild */
  .kb-lead{font-family:'Fraunces',serif;font-weight:600;font-size:21px;line-height:1.25;color:var(--paper);margin:6px 0 18px;max-width:760px}.mzs-auswertung .kb-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.mzs-auswertung .kb-card{border-radius:14px;padding:18px 18px 16px;border:1px solid rgba(0,0,0,.05);position:relative;overflow:hidden}.mzs-auswertung .kb-card.lo{background:linear-gradient(180deg,#fdf3ef,#f6e7e0)}.mzs-auswertung .kb-card.mid{background:linear-gradient(180deg,#f1f6ec,#e6f0dd)}.mzs-auswertung .kb-card.hi{background:linear-gradient(180deg,#eef4ea,#dfeed9)}.mzs-auswertung .kb-top{display:flex;align-items:baseline;justify-content:space-between;gap:8px}.mzs-auswertung .kb-n{font-family:'Fraunces',serif;font-weight:700;font-size:38px;line-height:1}.mzs-auswertung .kb-card.lo .kb-n{color:var(--red)}.mzs-auswertung .kb-card.mid .kb-n{color:var(--dgreen)}.mzs-auswertung .kb-card.hi .kb-n{color:#2f6b34}.mzs-auswertung .kb-n small{font-size:16px;color:#a8a0bb;font-weight:400;margin-left:2px}.mzs-auswertung .kb-tag{font-family:'Instrument Sans';font-size:13px;color:var(--paper);font-weight:500}.mzs-auswertung .kb-squares{display:flex;flex-wrap:wrap;gap:5px;margin:14px 0}.mzs-auswertung .kb-squares i{width:17px;height:17px;border-radius:4px;background:var(--tan);box-shadow:inset 0 1px 0 rgba(255,255,255,.4);
    opacity:0;transform:scale(.3);transition:opacity .3s,transform .35s cubic-bezier(.3,1.4,.5,1)}.mzs-auswertung .kb-squares i.in{opacity:1;transform:scale(1)}.mzs-auswertung .kb-foot{font-family:'Instrument Sans';font-size:13px;color:var(--muted);border-top:1px solid rgba(0,0,0,.06);padding-top:11px}.mzs-auswertung .idea{margin-top:14px;border-radius:14px;background:linear-gradient(120deg,rgba(124,58,237,.09),rgba(124,58,237,.045));
    border:1px solid rgba(124,58,237,.18);padding:16px 18px;display:flex;align-items:center;gap:16px;flex-wrap:wrap}.mzs-auswertung .idea-txt{flex:1;min-width:260px}.mzs-auswertung .idea-lab{display:flex;align-items:center;gap:7px;font-family:'Instrument Sans';font-weight:700;font-size:12px;color:var(--violet-d);margin-bottom:5px}.mzs-auswertung .idea-body{font-family:'Fraunces',serif;font-size:17px;line-height:1.35;color:var(--paper)}.mzs-auswertung .idea-body .g{color:var(--dgreen);font-weight:600}.mzs-auswertung .idea-body .r{color:var(--red);font-weight:600}.mzs-auswertung .btn{font-family:'Instrument Sans';font-weight:600;font-size:14px;color:#fff;background:linear-gradient(160deg,#8b5cf6,#6d28d9);
    border:0;border-radius:12px;padding:11px 18px;cursor:pointer;display:inline-flex;align-items:center;gap:8px;
    box-shadow:0 10px 22px -10px rgba(109,40,217,.7);transition:transform .15s}.mzs-auswertung .btn:hover{transform:translateY(-2px)}.mzs-auswertung .btn.ghost{background:rgba(124,58,237,.1);color:var(--violet-d);box-shadow:none;border:1px solid rgba(124,58,237,.25)}.mzs-auswertung /* fehlvorstellungen */
  .fv-top{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}.mzs-auswertung .fv-lead{font-family:'Fraunces',serif;font-weight:600;font-size:21px;line-height:1.28;color:var(--paper);margin:12px 0 16px;max-width:780px}.mzs-auswertung .fv-lead em{font-style:italic;color:var(--muted)}.mzs-auswertung .fv-grid{display:grid;grid-template-columns:1.7fr 1fr;gap:14px}.mzs-auswertung .fv-card{background:rgba(255,255,255,.7);border:1px solid rgba(0,0,0,.05);border-radius:14px;padding:18px 20px;display:flex;flex-direction:column}.mzs-auswertung .fv-cat{display:flex;align-items:center;justify-content:space-between;gap:8px;font-family:'Instrument Sans';font-weight:700;font-size:12px;letter-spacing:.06em;text-transform:uppercase}.mzs-auswertung .fv-cat .l{display:flex;align-items:center;gap:8px;color:var(--amber)}.mzs-auswertung .fv-cat .l b{width:9px;height:9px;border-radius:50%;background:var(--amber);display:inline-block}.mzs-auswertung .fv-cat .d{color:#9a93b0;letter-spacing:0;text-transform:none;font-weight:500}.mzs-auswertung .fv-title{font-family:'Fraunces',serif;font-weight:600;font-size:19px;line-height:1.28;color:var(--paper);margin:12px 0 8px}.mzs-auswertung .fv-aff{font-family:'Instrument Sans';font-size:14px;color:var(--muted)}.mzs-auswertung .fv-aff b{color:var(--paper)}.mzs-auswertung .fv-bottom{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:auto;padding-top:16px}.mzs-auswertung .fv-dots{display:flex;gap:6px}.mzs-auswertung .fv-dots i{width:8px;height:8px;border-radius:50%;background:#d6cfe2}.mzs-auswertung .fv-dots i.on{background:var(--amber)}.mzs-auswertung .fv-lib{background:linear-gradient(180deg,rgba(139,92,246,.08),rgba(139,92,246,.04));border:1px solid rgba(139,92,246,.18);
    border-radius:14px;padding:20px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:6px}.mzs-auswertung .fv-lib .ic{width:54px;height:54px;border-radius:15px;background:rgba(139,92,246,.14);display:flex;align-items:center;justify-content:center;margin-bottom:6px}.mzs-auswertung .fv-lib .ic svg{width:26px;height:26px;color:var(--violet-d)}.mzs-auswertung .fv-lib .lab{font-family:'Instrument Sans';font-weight:700;font-size:11.5px;letter-spacing:.07em;text-transform:uppercase;color:var(--violet-d)}.mzs-auswertung .fv-lib .nm{font-family:'Fraunces',serif;font-weight:600;font-size:21px;color:var(--paper)}.mzs-auswertung .fv-lib .ds{font-family:'Instrument Sans';font-size:13px;color:var(--muted)}.mzs-auswertung .lead b{color:var(--ink);font-weight:600}.mzs-auswertung .principle{padding:24px 26px}.mzs-auswertung .pr-body{font-family:'Instrument Sans';font-size:15px;line-height:1.62;color:var(--paper);margin:0}.mzs-auswertung .pr-body b{font-weight:600}.mzs-auswertung .sp-note{font-family:'Instrument Sans';font-size:12.5px;line-height:1.55;color:#8f88a6;margin:14px 2px 0;max-width:660px}.mzs-auswertung .fv-sub{font-family:'Instrument Sans';font-size:13.5px;line-height:1.5;color:var(--muted);margin:-6px 0 16px}.mzs-auswertung .dash-note{display:flex;align-items:flex-start;gap:8px;font-family:'Instrument Sans';font-size:12.5px;line-height:1.5;color:#9a93b0;padding:2px 6px;margin-top:2px}.mzs-auswertung .dash-note svg{width:15px;height:15px;flex:0 0 auto;margin-top:1px;opacity:.7}.mzs-auswertung .dash-collapse{position:relative;z-index:1;max-height:520px;overflow:hidden;transition:max-height .8s cubic-bezier(.4,0,.2,1)}.mzs-auswertung .dash-collapse.open{max-height:4000px}.mzs-auswertung .dash-fade{position:absolute;left:0;right:0;bottom:0;height:210px;z-index:2;pointer-events:none;transition:opacity .45s ease;background:linear-gradient(rgba(238,240,251,0),rgba(238,240,251,.92) 62%,#eef0fb)}.mzs-auswertung .dash-collapse.open .dash-fade{opacity:0}.mzs-auswertung .dash-more{position:relative;z-index:3;display:flex;justify-content:center;margin-top:-26px}.mzs-auswertung .dash-toggle{display:inline-flex;align-items:center;gap:9px;font-family:'Instrument Sans';font-weight:600;font-size:14px;color:var(--violet-d);background:rgba(255,255,255,.82);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.9);border-radius:999px;padding:12px 24px;cursor:pointer;box-shadow:0 14px 30px -14px rgba(70,60,160,.55);transition:transform .15s ease}.mzs-auswertung .dash-toggle:hover{transform:translateY(-2px)}.mzs-auswertung .dash-toggle svg{width:17px;height:17px;transition:transform .35s ease}.mzs-auswertung .dash-collapse.open ~ .dash-more .dash-toggle svg{transform:rotate(180deg)}
  @media(max-width:820px){.mzs-auswertung .header-card{padding:26px 24px}.mzs-auswertung .kb-grid{grid-template-columns:1fr}.mzs-auswertung .fv-grid{grid-template-columns:1fr}.mzs-auswertung .sp-title{font-size:20px}
  }

  
