/*
 * ailean V3 — Shared Styles
 * Aus index-v2.html extrahiert. Wird auf jeder V3-Seite per <link> geladen.
 */
:root {
    --ailean-ink: #0a0a0a;
    --ailean-paper: #ffffff;
    --ailean-dim: #6b7280;
    --ailean-line: #e5e7eb;
    --ailean-soft: #f7f7f6;
    --ailean-accent: #0e7c7b;
    --ailean-accent-dark: #095958;
    --ailean-success: #10b981;
    --ailean-violet: #8b5cf6;
    --ailean-warn: #f59e0b;
    --ailean-danger: #ef4444;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--ailean-paper);
    color: var(--ailean-ink);
    font-feature-settings: "ss01", "cv11";
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
  }
  h1, h2, h3, h4 { letter-spacing: -0.02em; line-height: 1.15; }
  .tabular { font-variant-numeric: tabular-nums; }
  .container-x { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 1.25rem; padding-right: 1.25rem; }
  @media (min-width: 1024px) { .container-x { padding-left: 2rem; padding-right: 2rem; } }

  /* Roadmap pill = honest "kommt bald" label */
  .roadmap-pill {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
    padding: 2px 7px; border-radius: 999px;
    background: rgba(139, 92, 246, 0.10); color: var(--ailean-violet);
    border: 1px solid rgba(139, 92, 246, 0.25);
  }
  .live-pill {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
    padding: 2px 7px; border-radius: 999px;
    background: rgba(16, 185, 129, 0.10); color: var(--ailean-success);
    border: 1px solid rgba(16, 185, 129, 0.25);
  }
  .live-dot { width: 6px; height: 6px; background: var(--ailean-success); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  /* CTA buttons */
  .btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 0.85rem 1.5rem; border-radius: 8px;
    background: var(--ailean-ink); color: white;
    font-weight: 600; font-size: 15px;
    transition: all 200ms ease;
    border: 1px solid var(--ailean-ink);
  }
  .btn-primary:hover { background: var(--ailean-accent); border-color: var(--ailean-accent); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(14, 124, 123, 0.25); }
  .btn-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 0.85rem 1.5rem; border-radius: 8px;
    background: white; color: var(--ailean-ink);
    font-weight: 600; font-size: 15px;
    transition: all 200ms ease;
    border: 1px solid var(--ailean-line);
  }
  .btn-secondary:hover { border-color: var(--ailean-ink); transform: translateY(-1px); }
  .btn-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--ailean-accent); font-weight: 600; font-size: 14px;
    transition: color 200ms ease;
  }
  .btn-link:hover { color: var(--ailean-accent-dark); }

  /* Header */
  .site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--ailean-line);
  }

  .lang-btn { font-size: 13px; font-weight: 500; padding: 4px 8px; border-radius: 4px; color: var(--ailean-dim); }
  .lang-btn.active { background: var(--ailean-soft); color: var(--ailean-ink); }
  .lang-btn:hover { color: var(--ailean-ink); }

  /* Hero typography */
  .hero-h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; letter-spacing: -0.03em; }
  .hero-h1 .accent { color: var(--ailean-accent); }
  .hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ailean-dim); max-width: 36rem; }

  /* KPI strip */
  .kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  @media (min-width: 768px) { .kpi-grid { grid-template-columns: repeat(4, 1fr); } }
  .kpi-card {
    padding: 1.25rem 1rem;
    border: 1px solid var(--ailean-line);
    border-radius: 12px;
    background: white;
    transition: border-color 200ms ease, transform 200ms ease;
  }
  .kpi-card:hover { border-color: var(--ailean-accent); transform: translateY(-2px); }
  .kpi-number { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--ailean-ink); letter-spacing: -0.02em; line-height: 1; }
  .kpi-label { font-size: 12px; color: var(--ailean-dim); margin-top: 0.5rem; font-weight: 500; line-height: 1.4; }

  /* Section base */
  .section { padding: 3rem 0; }
  @media (min-width: 1024px) { .section { padding: 4.5rem 0; } }
  /* Zwei Sektionen direkt hintereinander mit gleichem Hintergrund: zusätzliche Padding-Reduktion */
  .section + .section { padding-top: 2rem; }
  @media (min-width: 1024px) { .section + .section { padding-top: 3rem; } }
  .section-label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ailean-accent); margin-bottom: 1rem; }
  .section-h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); font-weight: 800; letter-spacing: -0.02em; max-width: 36rem; }
  .section-sub { font-size: 1.1rem; color: var(--ailean-dim); max-width: 38rem; margin-top: 1rem; }

  /* Reveal animation — Progressive Enhancement.
     Standardmäßig: alles sichtbar. Nur wenn JS sauber lädt UND IntersectionObserver
     unterstützt wird, blenden wir initial aus (`html.js-reveal` class), und IntersectionObserver
     blendet beim Scroll wieder ein. So bleibt die Seite auch bei JS-Fehlern voll lesbar. */
  .reveal { transition: opacity 600ms ease, transform 600ms ease; }
  html.js-reveal .reveal { opacity: 0; transform: translateY(16px); }
  html.js-reveal .reveal.in { opacity: 1; transform: translateY(0); }

  /* Three-step row */
  .step-card { padding: 1.75rem 1.5rem; border: 1px solid var(--ailean-line); border-radius: 14px; background: white; transition: border-color 200ms ease, transform 200ms ease; }
  .step-card:hover { border-color: var(--ailean-accent); transform: translateY(-2px); }
  .step-num { font-size: 12px; font-weight: 700; color: var(--ailean-accent); letter-spacing: 0.12em; text-transform: uppercase; }
  .step-title { font-size: 1.25rem; font-weight: 700; margin-top: 0.5rem; }
  .step-body { font-size: 0.95rem; color: var(--ailean-dim); margin-top: 0.75rem; line-height: 1.6; }

  /* Channel chip */
  .channel-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.5rem 0.9rem; border-radius: 999px;
    border: 1px solid var(--ailean-line); background: var(--ailean-soft);
    font-size: 13px; font-weight: 500;
  }
  .channel-chip svg { width: 14px; height: 14px; opacity: 0.7; }

  /* Triangle visual */
  .triangle-card { padding: 2rem 1.75rem; border-radius: 16px; border: 1px solid var(--ailean-line); background: white; height: 100%; }
  .triangle-card.now { background: #fffaf5; border-color: #fde2c5; }
  .triangle-card.after { background: #f0faf8; border-color: #b5e2dd; }
  .triangle-h { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
  .triangle-list { font-size: 0.95rem; color: #374151; }
  .triangle-list li { padding: 0.35rem 0; display: flex; gap: 0.6rem; align-items: flex-start; }
  .triangle-list .ico { flex: 0 0 16px; height: 16px; margin-top: 3px; }

  /* Stakeholder cards */
  .stakeholder-card {
    padding: 2rem 1.75rem;
    border-radius: 16px;
    border: 1px solid var(--ailean-line);
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .stakeholder-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
  .stakeholder-card .role { font-size: 12px; color: var(--ailean-accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
  .stakeholder-card ul { font-size: 0.95rem; color: #374151; }
  .stakeholder-card ul li { padding: 0.4rem 0 0.4rem 1.4rem; position: relative; }
  .stakeholder-card ul li::before {
    content: ""; position: absolute; left: 0; top: 0.85rem;
    width: 6px; height: 6px; border-radius: 50%; background: var(--ailean-accent);
  }
  .stakeholder-card .quote {
    margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--ailean-line);
    font-size: 0.9rem; color: var(--ailean-dim); font-style: italic; line-height: 1.55;
  }

  /* Onboarding phases */
  .tabs { display: inline-flex; padding: 4px; border-radius: 999px; background: var(--ailean-soft); border: 1px solid var(--ailean-line); }
  .tab-btn { padding: 0.5rem 1.2rem; font-size: 13px; font-weight: 600; border-radius: 999px; color: var(--ailean-dim); transition: all 200ms ease; }
  .tab-btn.active { background: white; color: var(--ailean-ink); box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
  .phase-list { display: grid; gap: 0.75rem; }
  .phase-row { display: grid; grid-template-columns: 80px 1fr; gap: 1rem; padding: 1rem 1.25rem; border: 1px solid var(--ailean-line); border-radius: 12px; background: white; transition: border-color 200ms; }
  .phase-row:hover { border-color: var(--ailean-accent); }
  .phase-tag { font-size: 11px; font-weight: 700; color: var(--ailean-accent); letter-spacing: 0.05em; text-transform: uppercase; }
  .phase-title { font-size: 1rem; font-weight: 700; margin-top: 2px; }
  .phase-desc { font-size: 0.9rem; color: var(--ailean-dim); margin-top: 4px; }
  .phase-dur { font-size: 12px; color: var(--ailean-dim); font-weight: 500; }

  /* Integration logos */
  .integration-card { padding: 1.25rem; border: 1px solid var(--ailean-line); border-radius: 12px; background: white; }
  .integration-name { font-weight: 700; font-size: 0.95rem; }
  .integration-meta { font-size: 12px; color: var(--ailean-dim); margin-top: 4px; }

  /* Compliance row */
  .compliance-card { padding: 1.5rem; border: 1px solid var(--ailean-line); border-radius: 12px; background: white; display: flex; gap: 1rem; align-items: flex-start; }
  .compliance-card .check { flex: 0 0 32px; width: 32px; height: 32px; border-radius: 8px; background: rgba(16, 185, 129, 0.12); color: var(--ailean-success); display: flex; align-items: center; justify-content: center; }
  .compliance-card h4 { font-weight: 700; font-size: 1rem; }
  .compliance-card p { font-size: 0.9rem; color: var(--ailean-dim); margin-top: 4px; }

  /* FAQ */
  .faq-item { border-bottom: 1px solid var(--ailean-line); }
  .faq-q { width: 100%; text-align: left; padding: 1.25rem 0; font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
  .faq-q:hover { color: var(--ailean-accent); }
  .faq-q .chev { transition: transform 200ms ease; flex: 0 0 20px; }
  .faq-item.open .faq-q .chev { transform: rotate(45deg); color: var(--ailean-accent); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms ease, padding 320ms ease; color: var(--ailean-dim); font-size: 0.95rem; line-height: 1.65; }
  .faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.25rem; }

  /* CTA banner */
  .cta-banner { background: var(--ailean-ink); color: white; padding: 4rem 0; }
  .cta-banner h2 { font-size: clamp(1.875rem, 3.5vw, 2.5rem); font-weight: 800; color: white; }
  .cta-banner .sub { color: rgba(255, 255, 255, 0.7); margin-top: 0.75rem; }
  .cta-banner .btn-primary { background: white; color: var(--ailean-ink); border-color: white; }
  .cta-banner .btn-primary:hover { background: var(--ailean-accent); color: white; border-color: var(--ailean-accent); }
  .cta-banner .btn-secondary { background: transparent; color: white; border-color: rgba(255,255,255,0.3); }
  .cta-banner .btn-secondary:hover { border-color: white; }

  /* Footer */
  .footer { background: #050505; color: rgba(255,255,255,0.7); padding: 3.5rem 0 2rem; font-size: 14px; }
  .footer a { color: rgba(255,255,255,0.7); transition: color 200ms ease; }
  .footer a:hover { color: white; }
  .footer h5 { color: white; font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
  .footer .lang-btn { color: rgba(255,255,255,0.6); }
  .footer .lang-btn.active { color: white; background: rgba(255,255,255,0.1); }

  /* Modal */
  .modal-overlay {
    position: fixed; inset: 0;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: none;
    align-items: center; justify-content: center;
    padding: 1rem;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
  }
  .modal .close-btn { position: absolute; top: 1rem; right: 1rem; padding: 4px; color: var(--ailean-dim); }

  /* Logo glyph */
  .logo-glyph { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em; color: var(--ailean-ink); }
  .logo-glyph svg { width: 28px; height: 28px; }

  /* Subtle background grid for hero */
  .hero-bg {
    background-image: radial-gradient(circle at 1px 1px, rgba(14, 124, 123, 0.08) 1px, transparent 0);
    background-size: 24px 24px;
  }

  /* ============ Hero 2-column ============ */
  .hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
  @media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 5rem; } }

  /* ============ iPhone Mockup ============ */
  .phone-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 620px;
  }
  .phone-frame {
    width: 290px;
    height: 590px;
    border-radius: 44px;
    background: #0a0a0a;
    padding: 10px;
    box-shadow:
      0 30px 60px -15px rgba(14, 124, 123, 0.25),
      0 18px 36px -8px rgba(0, 0, 0, 0.18),
      inset 0 0 0 1.5px rgba(255,255,255,0.06);
    position: relative;
    z-index: 2;
  }
  .phone-screen {
    background: linear-gradient(180deg, #075e54 0%, #25d366 0%, #ece5dd 0%, #ece5dd 100%);
    border-radius: 36px;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .phone-notch {
    position: absolute;
    top: 6px; left: 50%; transform: translateX(-50%);
    width: 110px; height: 26px;
    background: #0a0a0a;
    border-radius: 0 0 18px 18px;
    z-index: 5;
  }
  /* WhatsApp-look header */
  .wa-header {
    background: #075e54;
    padding: 30px 14px 10px 14px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .wa-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0e7c7b 0%, #5eead4 100%);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
  }
  .wa-name { font-size: 13.5px; font-weight: 600; line-height: 1.2; }
  .wa-status { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 1px; display: flex; align-items: center; gap: 4px; }
  .wa-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #5eead4; }

  .wa-body {
    flex: 1;
    padding: 12px 10px;
    overflow: hidden;
    position: relative;
    background:
      radial-gradient(circle at 20% 20%, rgba(14, 124, 123, 0.04) 0, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(14, 124, 123, 0.03) 0, transparent 50%),
      #ece5dd;
  }
  .wa-msg {
    max-width: 80%;
    padding: 7px 11px;
    border-radius: 8px;
    font-size: 12.5px;
    line-height: 1.45;
    margin-bottom: 6px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.08);
    opacity: 0;
    animation: msgIn 380ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    word-wrap: break-word;
  }
  .wa-msg.mieter { background: white; align-self: flex-start; border-top-left-radius: 2px; }
  .wa-msg.ailean { background: #dcf8c6; align-self: flex-end; margin-left: auto; border-top-right-radius: 2px; }
  .wa-time { font-size: 9.5px; color: #999; margin-top: 3px; text-align: right; }
  .wa-msg.mieter .wa-time { color: #888; }

  .wa-typing {
    display: inline-flex; gap: 3px; align-items: center;
    padding: 9px 13px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 1px 1px rgba(0,0,0,0.08);
    margin-bottom: 6px;
    width: fit-content;
    opacity: 0;
    animation: msgIn 280ms ease both;
  }
  .wa-typing span {
    width: 5px; height: 5px; border-radius: 50%; background: #0e7c7b;
    animation: typingDot 1.2s infinite;
  }
  .wa-typing span:nth-child(2) { animation-delay: 0.15s; }
  .wa-typing span:nth-child(3) { animation-delay: 0.3s; }
  @keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-3px); opacity: 1; }
  }
  @keyframes msgIn {
    0% { opacity: 0; transform: translateY(8px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }

  .wa-photo {
    width: 160px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 2px;
    background: #e5e7eb;
    display: block;
  }
  .wa-photo img {
    display: block;
    width: 100%;
    height: 110px;
    object-fit: cover;
    object-position: center;
  }

  /* WhatsApp-Footer (Eingabe-Leiste) */
  .wa-footer {
    background: #f0f0f0;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .wa-input {
    flex: 1;
    background: white;
    border-radius: 18px;
    padding: 7px 12px;
    font-size: 11.5px;
    color: #999;
    display: flex; align-items: center; gap: 6px;
    box-shadow: 0 1px 1.5px rgba(0,0,0,0.08);
  }
  .wa-input svg { width: 13px; height: 13px; color: #888; flex-shrink: 0; }
  .wa-mic {
    width: 32px; height: 32px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .wa-mic svg { width: 14px; height: 14px; color: white; }

  /* Voice-Memo-Bubble (Mieter, italienisch markiert) */
  .wa-voice {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
  }
  .wa-voice-play {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #25d366;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .wa-voice-play svg { width: 11px; height: 11px; color: white; }
  .wa-voice-wave {
    display: flex; align-items: center; gap: 1.5px; height: 18px; flex: 1;
  }
  .wa-voice-wave span {
    width: 2px;
    background: #888;
    border-radius: 1px;
    animation: voiceBar 1.8s ease-in-out infinite;
  }
  .wa-voice-wave span:nth-child(2n) { background: #25d366; }
  @keyframes voiceBar {
    0%, 100% { transform: scaleY(0.4); }
    50%      { transform: scaleY(1); }
  }
  .wa-voice-dur { font-size: 10px; color: #888; font-variant-numeric: tabular-nums; flex-shrink: 0; }

  /* Sprach-Indikator unter Voice-Memo */
  .wa-lang-hint {
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px dashed rgba(0,0,0,0.10);
    font-size: 9.5px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
    font-style: italic;
  }
  .wa-lang-hint .flag { font-size: 11px; font-style: normal; }

  /* Mietrechts-Bubble: kleines Etikett oberhalb */
  .wa-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 4px;
  }
  .wa-tag.law { background: rgba(139, 92, 246, 0.15); color: #6d28d9; }
  .wa-tag.tech { background: rgba(14, 124, 123, 0.12); color: var(--ailean-accent); }
  .wa-tag.action { background: rgba(16, 185, 129, 0.15); color: #047857; }

  /* ============ Control-Panel (Kontroll-Sektion) ============ */
  .control-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
  @media (min-width: 1024px) { .control-grid { grid-template-columns: 1.05fr 0.95fr; gap: 2rem; } }

  .control-panel {
    background: white;
    border: 1px solid var(--ailean-line);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  }
  .control-panel-head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 1rem; border-bottom: 1px solid var(--ailean-line); margin-bottom: 0.5rem;
  }
  .control-panel-head h3 {
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ailean-dim);
  }
  .control-panel-head .led {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; color: var(--ailean-success); font-weight: 600;
  }
  .control-panel-head .led::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ailean-success);
    animation: pulse 2s ease-in-out infinite;
  }

  .control-row {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--ailean-soft);
    transition: background 240ms ease, padding 240ms ease;
    border-radius: 8px;
    margin: 0 -0.75rem;
    padding-left: 0.75rem; padding-right: 0.75rem;
  }
  .control-row:last-child { border-bottom: none; }
  .control-row.active { background: rgba(14, 124, 123, 0.06); }
  .control-row.active .control-title { color: var(--ailean-accent); }

  .control-ico {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--ailean-soft);
    color: var(--ailean-dim);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 240ms ease, color 240ms ease;
  }
  .control-row.active .control-ico {
    background: rgba(14, 124, 123, 0.12);
    color: var(--ailean-accent);
  }
  .control-ico svg { width: 18px; height: 18px; }

  .control-meta { flex: 1; min-width: 0; }
  .control-title { font-weight: 600; font-size: 0.93rem; line-height: 1.3; transition: color 240ms ease; }
  .control-sub { font-size: 11.5px; color: var(--ailean-dim); margin-top: 2px; line-height: 1.4; }

  .control-toggle {
    width: 42px; height: 24px;
    background: #d1d5db;
    border-radius: 12px;
    position: relative;
    flex-shrink: 0;
    transition: background 300ms ease;
    cursor: pointer;
  }
  .control-toggle.on { background: var(--ailean-success); }
  .control-knob {
    position: absolute;
    top: 2px; left: 2px;
    width: 20px; height: 20px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 1.5px 3px rgba(0,0,0,0.18), 0 0 0 0.5px rgba(0,0,0,0.04);
    transition: left 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .control-toggle.on .control-knob { left: 20px; }

  /* Right side: Live effect display */
  .control-effect {
    background: var(--ailean-ink);
    color: white;
    border-radius: 16px;
    padding: 2.25rem;
    min-height: 360px;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative;
    overflow: hidden;
  }
  .control-effect::before {
    content: "";
    position: absolute; top: -40%; right: -10%;
    width: 60%; height: 80%;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.18) 0%, transparent 60%);
    pointer-events: none;
  }
  .control-effect-top { display: flex; align-items: center; gap: 8px; }
  .control-effect-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #5eead4;
  }
  .control-effect-pulse { width: 6px; height: 6px; border-radius: 50%; background: #5eead4; animation: pulse 2s ease-in-out infinite; }
  .control-effect-body { position: relative; z-index: 2; }
  .control-effect-body h4 {
    font-size: clamp(1.25rem, 2vw, 1.625rem);
    font-weight: 700;
    line-height: 1.25;
    margin-top: 0.5rem;
    transition: opacity 280ms ease, transform 280ms ease;
  }
  .control-effect-body p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
    margin-top: 0.9rem;
    transition: opacity 280ms ease, transform 280ms ease;
  }
  .control-effect.swap .control-effect-body h4,
  .control-effect.swap .control-effect-body p {
    opacity: 0; transform: translateY(8px);
  }
  .control-effect-footer {
    font-size: 11.5px;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    margin-top: 1.5rem;
  }

  /* ============ Floating Cards around iPhone ============ */
  .float-card {
    position: absolute;
    background: white;
    border-radius: 14px;
    box-shadow:
      0 18px 40px -10px rgba(14, 124, 123, 0.18),
      0 6px 14px -4px rgba(0, 0, 0, 0.08);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: floatY 4.5s ease-in-out infinite;
    font-size: 12px;
  }
  .float-card.fc-1 { top: 9%; left: -3%; animation-delay: 0s; }
  .float-card.fc-2 { top: 38%; right: -8%; animation-delay: 1.5s; }
  .float-card.fc-3 { bottom: 5%; left: 0%; animation-delay: 0.7s; }
  @media (max-width: 1023px) {
    .float-card.fc-1 { top: 4%; left: 2%; }
    .float-card.fc-2 { top: 36%; right: 2%; }
    .float-card.fc-3 { bottom: 6%; left: 4%; }
  }
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .fc-icon {
    width: 32px; height: 32px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .fc-icon.teal { background: rgba(14, 124, 123, 0.12); color: var(--ailean-accent); }
  .fc-icon.green { background: rgba(16, 185, 129, 0.12); color: var(--ailean-success); }
  .fc-icon.violet { background: rgba(139, 92, 246, 0.12); color: var(--ailean-violet); }
  .fc-label { font-size: 10.5px; color: var(--ailean-dim); font-weight: 500; }
  .fc-value { font-size: 14px; font-weight: 700; color: var(--ailean-ink); margin-top: 1px; }
  .fc-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--ailean-success); animation: pulse 2s ease-in-out infinite; }

  /* Subtle aura behind phone */
  .phone-aura {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at center, rgba(14, 124, 123, 0.10) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
  }

  /* ============ Mini-Mockups for Channel Strip ============ */
  .channels-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 1rem; }
  .channel-mock {
    padding: 1rem;
    border: 1px solid var(--ailean-line);
    border-radius: 12px;
    background: white;
    transition: border-color 200ms, transform 200ms;
    position: relative;
    overflow: hidden;
  }
  .channel-mock:hover { border-color: var(--ailean-accent); transform: translateY(-2px); }
  .channel-mock.is-roadmap { background: #fafafa; }
  .channel-mock-head { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; margin-bottom: 10px; color: var(--ailean-dim); }
  .channel-mock-head svg { width: 16px; height: 16px; opacity: 0.7; }
  .channel-mock .pill-mini { font-size: 9.5px; padding: 2px 6px; border-radius: 999px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-left: auto; }
  .pill-mini.live { background: rgba(16, 185, 129, 0.12); color: var(--ailean-success); }
  .pill-mini.roadmap { background: rgba(139, 92, 246, 0.10); color: var(--ailean-violet); }
  .cm-bubble {
    font-size: 11px; padding: 6px 9px; border-radius: 8px;
    background: white; box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    max-width: 85%; margin-bottom: 4px;
    color: #1f2937;
  }
  .cm-bubble.mieter { background: #f3f4f6; border-top-left-radius: 2px; }
  .cm-bubble.ailean { background: #dcf8c6; margin-left: auto; border-top-right-radius: 2px; }
  .cm-waveform { display: flex; align-items: center; gap: 2px; height: 28px; padding: 0 6px; }
  .cm-waveform span {
    width: 2.5px; background: var(--ailean-accent); border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
  }
  @keyframes wave {
    0%, 100% { height: 30%; }
    50% { height: 100%; }
  }
  .cm-email {
    display: grid; grid-template-columns: 1fr; gap: 4px;
    padding: 8px; background: #fafafa; border-radius: 6px; font-size: 11px;
  }
  .cm-email .from { color: var(--ailean-dim); font-size: 10px; }
  .cm-email .subj { font-weight: 600; }
  .cm-phone {
    display: flex; align-items: center; justify-content: center;
    height: 50px;
    color: var(--ailean-violet);
    font-weight: 600;
    font-size: 11px;
    background: rgba(139, 92, 246, 0.06);
    border-radius: 8px;
  }

  /* ============ Triangle Dots Visualization ============ */
  .dot-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 6px;
    max-width: 240px;
    margin-top: 1rem;
  }
  .dot {
    width: 14px; height: 14px; border-radius: 50%;
    background: #d1d5db;
    transition: background 600ms ease, transform 400ms ease;
  }
  .dot-grid.before-state .dot { background: #ef4444; }
  .dot-grid.after-state .dot.solved { background: var(--ailean-success); }
  .dot-grid.after-state .dot.escalated { background: var(--ailean-violet); }
  .dot-grid.animated .dot { animation: dotPop 480ms cubic-bezier(0.2, 0.8, 0.2, 1) both; }
  .dot-grid.animated .dot:nth-child(1) { animation-delay: 0.02s; }
  .dot-grid.animated .dot:nth-child(2) { animation-delay: 0.04s; }
  .dot-grid.animated .dot:nth-child(3) { animation-delay: 0.06s; }
  /* generic delay */
  @keyframes dotPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.18); opacity: 1; }
    100% { transform: scale(1); }
  }

  /* ============ Onboarding Horizontal Timeline ============ */
  .timeline-wrap { position: relative; padding: 2.5rem 0 1rem; overflow-x: auto; }
  .timeline {
    display: flex;
    gap: 1rem;
    min-width: max-content;
    padding: 0 0.25rem;
    position: relative;
  }
  .timeline::before {
    content: "";
    position: absolute;
    top: 26px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ailean-line) 0%, var(--ailean-accent) 50%, var(--ailean-line) 100%);
    z-index: 0;
  }
  .tl-step {
    position: relative;
    flex: 0 0 200px;
    z-index: 1;
  }
  .tl-bubble {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--ailean-line);
    color: var(--ailean-accent);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
    margin: 0 auto;
    transition: border-color 200ms, transform 200ms;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  }
  .tl-step:hover .tl-bubble { border-color: var(--ailean-accent); transform: translateY(-2px); }
  .tl-step.tl-final .tl-bubble { background: var(--ailean-accent); color: white; border-color: var(--ailean-accent); }
  .tl-bubble svg { width: 22px; height: 22px; }
  .tl-content { text-align: center; margin-top: 0.85rem; padding: 0 0.25rem; }
  .tl-dur { font-size: 10.5px; font-weight: 700; color: var(--ailean-accent); letter-spacing: 0.05em; text-transform: uppercase; }
  .tl-title { font-size: 13.5px; font-weight: 700; margin-top: 4px; line-height: 1.3; }
  .tl-desc { font-size: 11.5px; color: var(--ailean-dim); margin-top: 6px; line-height: 1.5; }

  /* ============ KPI Counter ============ */
  .counter-pop {
    animation: countPop 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  @keyframes countPop {
    0% { transform: scale(0.92); color: var(--ailean-accent); }
    100% { transform: scale(1); color: var(--ailean-ink); }
  }

  /* ============ Reduced Motion ============ */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .float-card { animation: none; }
    .fc-pulse, .live-dot { animation: none; }
    .wa-msg, .wa-typing { opacity: 1; }
  }

  /* ============================================================ */
  /* V2 NEU - alle v2-Klassen für Iteration mit Visualisierungen   */
  /* ============================================================ */

  .v2-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
    padding: 3px 8px; border-radius: 4px;
    background: #fef3c7; color: #b45309;
    border: 1px solid #fde68a; text-transform: uppercase;
  }

  .v2-audience-pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(14, 124, 123, 0.08);
    color: var(--ailean-accent-dark);
    border: 1px solid rgba(14, 124, 123, 0.2);
    margin-bottom: 1rem;
  }
  .v2-audience-pill .dot {
    width: 5px; height: 5px; border-radius: 50%; background: var(--ailean-accent);
  }

  .v2-trust-strip {
    background: var(--ailean-ink); color: white;
    padding: 2.5rem 0;
  }
  .v2-trust-grid {
    display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  }
  @media (min-width: 768px) {
    .v2-trust-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  }
  .v2-trust-item {
    display: flex; align-items: center; gap: 1rem;
    transition: transform 200ms ease;
  }
  .v2-trust-item:hover { transform: translateY(-2px); }
  .v2-trust-ico {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(94, 234, 212, 0.10); color: #5eead4;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative;
  }
  .v2-trust-ico svg { width: 22px; height: 22px; }
  .v2-trust-ico.with-pulse::before {
    content: ""; position: absolute; top: -2px; right: -2px;
    width: 10px; height: 10px; background: #5eead4;
    border-radius: 50%; border: 2px solid var(--ailean-ink);
    animation: pulse 2s ease-in-out infinite;
  }
  .v2-trust-h { font-size: 1.05rem; font-weight: 700; line-height: 1.25; color: white; }
  .v2-trust-p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 2px; line-height: 1.4; }
  .v2-trust-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: #5eead4; margin-bottom: 0.5rem;
  }

  .v2-diff-grid {
    display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem;
  }
  @media (min-width: 768px) {
    .v2-diff-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  }
  .v2-diff-col { padding: 1.75rem; border: 1px solid var(--ailean-line); }
  @media (min-width: 768px) {
    .v2-diff-col:first-child { border-radius: 16px 0 0 16px; border-right: none; }
    .v2-diff-col:last-child { border-radius: 0 16px 16px 0; }
  }
  @media (max-width: 767px) { .v2-diff-col { border-radius: 16px; } }
  .v2-diff-col.is-them { background: #fafafa; }
  .v2-diff-col.is-us {
    background: linear-gradient(135deg, #f0faf8 0%, white 100%);
    border-color: var(--ailean-accent); position: relative;
  }
  .v2-diff-col.is-us::before { display: none; }
  .v2-diff-col.is-us { border-top-width: 3px; border-top-color: var(--ailean-accent); }
  .v2-diff-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 0.75rem;
  }
  .v2-diff-col.is-them .v2-diff-label { color: #9ca3af; }
  .v2-diff-col.is-us .v2-diff-label { color: var(--ailean-accent); }
  .v2-diff-h { font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem; }
  .v2-diff-row {
    display: grid; grid-template-columns: 22px 1fr; gap: 10px;
    padding: 8px 0; font-size: 0.92rem; border-bottom: 1px solid var(--ailean-line);
  }
  .v2-diff-row:last-of-type { border-bottom: none; }
  .v2-diff-mark {
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-top: 1px;
  }
  .v2-diff-mark.x { background: #fee2e2; color: #b91c1c; }
  .v2-diff-mark.check { background: rgba(16, 185, 129, 0.15); color: #047857; }
  .v2-diff-mark svg { width: 11px; height: 11px; stroke-width: 3; }
  .v2-diff-col.is-them .v2-diff-row { color: #6b7280; }
  .v2-diff-col.is-us .v2-diff-row { color: #1f2937; }
  .v2-diff-footer {
    margin-top: 1rem; padding-top: 0.9rem; border-top: 1px solid var(--ailean-line);
    font-weight: 700; color: var(--ailean-accent); font-size: 0.95rem;
  }

  .v2-donut-grid {
    display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1.5rem;
  }
  @media (min-width: 600px) {
    .v2-donut-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }
  .v2-donut-block { text-align: center; }
  .v2-donut-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 0.75rem;
  }
  .v2-donut-block.before .v2-donut-label { color: #b45309; }
  .v2-donut-block.after .v2-donut-label { color: var(--ailean-accent); }
  .v2-donut-svg { width: 180px; height: 180px; margin: 0 auto; display: block; }
  .v2-donut-svg circle { transition: stroke-dasharray 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
  .v2-donut-legend { text-align: left; margin-top: 0.85rem; font-size: 0.78rem; display: grid; gap: 5px; }
  .v2-donut-legend-row {
    display: grid; grid-template-columns: 12px 38px 1fr; gap: 8px; align-items: center;
  }
  .v2-donut-legend .swatch { width: 10px; height: 10px; border-radius: 2px; }
  .v2-donut-legend .pct { font-weight: 700; color: var(--ailean-ink); font-variant-numeric: tabular-nums; }
  .v2-donut-legend .lbl { color: #6b7280; }

  .v2-law-grid {
    display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem;
  }
  @media (min-width: 768px) {
    .v2-law-grid { grid-template-columns: repeat(3, 1fr); }
  }
  .v2-law-col {
    padding: 1.5rem 1.25rem; border-radius: 14px;
    background: white; border: 1px solid var(--ailean-line); min-height: 340px;
  }
  .v2-law-col.is-tenant { border-top: 3px solid #f59e0b; }
  .v2-law-col.is-mixed { border-top: 3px solid #6b7280; background: #fafafa; }
  .v2-law-col.is-landlord { border-top: 3px solid var(--ailean-accent); }
  .v2-law-head {
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 0.25rem;
  }
  .v2-law-col.is-tenant .v2-law-head { color: #b45309; }
  .v2-law-col.is-mixed .v2-law-head { color: #4b5563; }
  .v2-law-col.is-landlord .v2-law-head { color: var(--ailean-accent); }
  .v2-law-h { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
  .v2-law-sub { font-size: 12px; color: var(--ailean-dim); margin-bottom: 1rem; }
  .v2-law-card {
    display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: center;
    padding: 9px 11px; border-radius: 9px; background: var(--ailean-soft);
    margin-bottom: 6px; font-size: 0.85rem;
    opacity: 0; transform: translateY(-8px) rotate(-2deg);
  }
  .v2-law-col.in .v2-law-card { animation: v2LawDrop 600ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
  .v2-law-col.in .v2-law-card:nth-child(2) { animation-delay: 0.12s; }
  .v2-law-col.in .v2-law-card:nth-child(3) { animation-delay: 0.24s; }
  .v2-law-col.in .v2-law-card:nth-child(4) { animation-delay: 0.36s; }
  .v2-law-col.in .v2-law-card:nth-child(5) { animation-delay: 0.48s; }
  @keyframes v2LawDrop {
    0%   { opacity: 0; transform: translateY(-16px) rotate(-3deg); }
    60%  { opacity: 1; transform: translateY(2px) rotate(1deg); }
    100% { opacity: 1; transform: translateY(0) rotate(0deg); }
  }
  .v2-law-emoji {
    width: 30px; height: 30px; background: white; border-radius: 7px;
    display: flex; align-items: center; justify-content: center; font-size: 15px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08); flex-shrink: 0;
  }
  .v2-law-card-title { font-weight: 600; line-height: 1.2; font-size: 0.85rem; }
  .v2-law-card-rule { font-size: 11px; color: var(--ailean-dim); margin-top: 2px; }

  .v2-emerg-grid {
    display: grid; grid-template-columns: 1fr;
    background: white; border: 1px solid var(--ailean-line);
    border-radius: 16px; overflow: hidden; margin-top: 1.5rem;
  }
  @media (min-width: 768px) { .v2-emerg-grid { grid-template-columns: 1fr 1px 1fr; } }
  .v2-emerg-divider { background: var(--ailean-line); display: none; }
  @media (min-width: 768px) { .v2-emerg-divider { display: block; } }
  .v2-emerg-side { padding: 1.75rem; min-height: 280px; display: flex; flex-direction: column; }
  .v2-emerg-side.routine { background: linear-gradient(180deg, white 0%, #f0faf8 100%); }
  .v2-emerg-side.emergency { background: linear-gradient(180deg, white 0%, #fef2f2 100%); }
  .v2-emerg-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 0.75rem;
  }
  .v2-emerg-side.routine .v2-emerg-label { color: var(--ailean-accent); }
  .v2-emerg-side.emergency .v2-emerg-label { color: #b91c1c; }
  .v2-emerg-h { font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.3; }
  .v2-emerg-stack {
    position: relative; height: 120px;
    display: flex; align-items: flex-end; justify-content: center; gap: 4px;
    padding: 0 0.5rem; flex: 1;
  }
  .v2-emerg-stack-card {
    width: 28px; background: #d1fae5;
    border-radius: 4px 4px 0 0; border-top: 2px solid #10b981;
    height: 0; opacity: 0;
    animation: v2EmergFill 4.2s ease-in-out infinite; transform-origin: bottom;
  }
  @keyframes v2EmergFill {
    0%, 100% { opacity: 0; height: 0; }
    25%      { opacity: 1; height: 40%; }
    50%      { opacity: 1; height: 85%; }
    75%      { opacity: 0.4; height: 30%; }
  }
  .v2-emerg-stack-card:nth-child(1) { animation-delay: 0s; }
  .v2-emerg-stack-card:nth-child(2) { animation-delay: 0.15s; }
  .v2-emerg-stack-card:nth-child(3) { animation-delay: 0.3s; }
  .v2-emerg-stack-card:nth-child(4) { animation-delay: 0.45s; }
  .v2-emerg-stack-card:nth-child(5) { animation-delay: 0.6s; }
  .v2-emerg-stack-card:nth-child(6) { animation-delay: 0.75s; }
  .v2-emerg-stack-card:nth-child(7) { animation-delay: 0.9s; }
  .v2-emerg-stack-card:nth-child(8) { animation-delay: 1.05s; }
  .v2-emerg-foot { font-size: 11px; color: var(--ailean-dim); text-align: center; margin-top: 0.75rem; }
  .v2-emerg-alert {
    background: white; border: 2px solid #ef4444; border-radius: 10px; padding: 0.9rem;
    display: flex; align-items: center; gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.18);
    animation: v2AlertPulse 2.5s ease-in-out infinite;
  }
  @keyframes v2AlertPulse {
    0%, 100% { box-shadow: 0 8px 20px rgba(239, 68, 68, 0.18); }
    50%      { box-shadow: 0 8px 28px rgba(239, 68, 68, 0.45); }
  }
  .v2-emerg-alert-ico {
    width: 36px; height: 36px; background: #fee2e2; color: #b91c1c;
    border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .v2-emerg-alert-text { font-size: 12.5px; line-height: 1.35; }
  .v2-emerg-alert-text strong { color: #b91c1c; }
  .v2-emerg-conclusion {
    grid-column: 1 / -1;
    padding: 1.25rem 1.75rem;
    background: var(--ailean-ink); color: white;
    font-size: 0.95rem; text-align: center; font-weight: 500;
  }

  .v2-carousel-wrap {
    margin-top: 2rem; overflow: hidden; position: relative; padding: 0.5rem 0;
    -webkit-mask: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
            mask: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
  }
  .v2-carousel-track {
    display: flex; gap: 1rem; width: max-content;
    animation: v2CarouselScroll 50s linear infinite;
  }
  .v2-carousel-wrap:hover .v2-carousel-track { animation-play-state: paused; }
  @keyframes v2CarouselScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .v2-activity-card {
    flex: 0 0 240px; background: white;
    border: 1px solid var(--ailean-line); border-radius: 14px; padding: 1.25rem;
    transition: border-color 200ms, transform 200ms;
  }
  .v2-activity-card:hover { border-color: var(--ailean-accent); transform: translateY(-3px); }
  .v2-activity-ico {
    width: 44px; height: 44px;
    background: rgba(14, 124, 123, 0.08); color: var(--ailean-accent);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.75rem;
  }
  .v2-activity-ico svg { width: 22px; height: 22px; }
  .v2-activity-h { font-weight: 700; font-size: 0.95rem; line-height: 1.3; }
  .v2-activity-p { font-size: 12.5px; color: var(--ailean-dim); margin-top: 0.5rem; line-height: 1.45; }
  .v2-activity-tag {
    display: inline-block; margin-top: 0.75rem;
    font-size: 10.5px; font-weight: 600; color: var(--ailean-accent);
    background: rgba(14, 124, 123, 0.08); padding: 2px 7px; border-radius: 4px;
  }

  .v2-onb-bubble {
    position: relative; background: #fffaf5; border: 1px solid #fde2c5;
    border-radius: 14px; padding: 1rem 1.25rem; margin: 1.5rem auto 0; max-width: 560px;
    display: flex; gap: 0.85rem; align-items: flex-start;
    box-shadow: 0 6px 16px rgba(180, 83, 9, 0.08);
  }
  .v2-onb-bubble::before {
    content: ""; position: absolute; top: -8px; left: 38px; width: 14px; height: 14px;
    background: #fffaf5; border-left: 1px solid #fde2c5; border-top: 1px solid #fde2c5;
    transform: rotate(45deg);
  }
  .v2-onb-bubble-ico {
    width: 30px; height: 30px; background: rgba(180, 83, 9, 0.12); color: #b45309;
    border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .v2-onb-bubble-text { font-size: 0.88rem; color: #78350f; line-height: 1.5; }
  .v2-onb-bubble-text strong { color: #92400e; }

  .v2-founders-wrap { position: relative; }
  .v2-skyline-bg {
    position: absolute; top: 35%; left: 0; right: 0; pointer-events: none;
    opacity: 0.05; z-index: 0;
  }
  .v2-founders-grid {
    display: grid; grid-template-columns: 1fr; gap: 1.5rem;
    align-items: stretch; position: relative; z-index: 1;
  }
  @media (min-width: 768px) {
    .v2-founders-grid { grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center; }
  }
  .v2-founder-card {
    background: white; border: 1px solid var(--ailean-line); border-radius: 18px;
    padding: 2rem 1.75rem; transition: transform 280ms ease, box-shadow 280ms ease;
  }
  .v2-founder-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(14, 124, 123, 0.1); }
  .v2-founder-photo {
    width: 110px; height: 110px; border-radius: 50%;
    background: linear-gradient(135deg, var(--ailean-accent) 0%, #5eead4 100%);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 2rem; font-weight: 800; letter-spacing: -0.02em;
    margin-bottom: 1rem; box-shadow: 0 8px 20px rgba(14, 124, 123, 0.18);
  }
  .v2-founder-card.is-florian .v2-founder-photo {
    background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.18);
  }
  .v2-founder-name { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.01em; }
  .v2-founder-role {
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ailean-accent); margin-top: 2px;
  }
  .v2-founder-card.is-florian .v2-founder-role { color: var(--ailean-violet); }
  .v2-founder-bio { font-size: 0.92rem; color: #374151; margin-top: 0.75rem; line-height: 1.55; }
  .v2-founder-quote {
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px solid var(--ailean-line);
    font-size: 0.92rem; color: #4b5563; font-style: italic; line-height: 1.5;
  }
  .v2-connector { display: none; }
  @media (min-width: 768px) {
    .v2-connector { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 1rem; }
  }
  .v2-connector-line {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--ailean-accent), var(--ailean-violet));
  }
  .v2-connector-label {
    font-size: 11px; font-weight: 700; color: var(--ailean-dim);
    letter-spacing: 0.05em; text-transform: uppercase;
  }

  .v2-quiz {
    display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-top: 1.5rem;
  }
  @media (min-width: 768px) { .v2-quiz { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
  .v2-quiz-card {
    padding: 1.5rem; background: white;
    border: 1.5px solid var(--ailean-line); border-radius: 14px; text-align: center;
    transition: all 200ms;
  }
  .v2-quiz-card.is-sweet {
    border-color: var(--ailean-accent);
    background: linear-gradient(180deg, #f0faf8 0%, white 100%);
    box-shadow: 0 12px 28px rgba(14, 124, 123, 0.10); transform: translateY(-2px);
  }
  .v2-quiz-h { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ailean-dim); }
  .v2-quiz-card.is-sweet .v2-quiz-h { color: var(--ailean-accent); }
  .v2-quiz-val { font-size: 1.25rem; font-weight: 800; margin-top: 0.5rem; font-variant-numeric: tabular-nums; }
  .v2-quiz-p { font-size: 0.85rem; color: var(--ailean-dim); margin-top: 0.5rem; line-height: 1.4; }

  /* Drei-Stufen mit Verbinder (Pitch-Deck Slide 11 inspiriert) */
  .v2-flow-grid {
    display: grid; grid-template-columns: 1fr; gap: 1rem;
    margin-top: 2.5rem; align-items: stretch;
    position: relative;
  }
  @media (min-width: 768px) {
    .v2-flow-grid { grid-template-columns: 1fr 60px 1fr 60px 1fr; }
  }
  .v2-flow-card {
    background: white; border: 1px solid var(--ailean-line);
    border-radius: 16px; padding: 1.75rem; text-align: center;
    transition: transform 200ms, border-color 200ms;
  }
  .v2-flow-card:hover { transform: translateY(-3px); border-color: var(--ailean-accent); }
  .v2-flow-num {
    width: 36px; height: 36px; margin: 0 auto 1rem;
    background: var(--ailean-ink); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 14px;
  }
  .v2-flow-card.is-final .v2-flow-num { background: var(--ailean-accent); }
  .v2-flow-h { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.3; }
  .v2-flow-p { font-size: 0.88rem; color: var(--ailean-dim); line-height: 1.5; }
  .v2-flow-arrow {
    display: none; align-items: center; justify-content: center; color: var(--ailean-accent);
  }
  @media (min-width: 768px) { .v2-flow-arrow { display: flex; } }
  .v2-flow-arrow svg { width: 32px; height: 32px; }
  .v2-flow-arrow .pulse {
    width: 8px; height: 8px; border-radius: 50%; background: var(--ailean-accent);
    box-shadow: 0 0 0 0 var(--ailean-accent);
    animation: v2FlowPulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    margin: 0 4px;
  }
  @keyframes v2FlowPulse {
    0%   { box-shadow: 0 0 0 0 rgba(14, 124, 123, 0.45); }
    70%  { box-shadow: 0 0 0 10px rgba(14, 124, 123, 0); }
    100% { box-shadow: 0 0 0 0 rgba(14, 124, 123, 0); }
  }

  /* Eigenständige KPI-Sektion (aus Hero rausgezogen) */
  .v2-kpi-section {
    background: var(--ailean-ink); color: white;
    padding: 4rem 0;
  }
  .v2-kpi-section-h {
    font-size: 1.4rem; font-weight: 700; color: white;
    text-align: center; margin-bottom: 0.5rem;
  }
  .v2-kpi-section-sub {
    text-align: center; color: rgba(255,255,255,0.6); font-size: 0.95rem;
    max-width: 38rem; margin: 0 auto 2.5rem;
  }
  .v2-kpi-grid-dark {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  }
  @media (min-width: 768px) { .v2-kpi-grid-dark { grid-template-columns: repeat(4, 1fr); } }
  .v2-kpi-card-dark {
    text-align: center; padding: 1.5rem 1rem;
    border-radius: 12px; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: border-color 200ms ease;
  }
  .v2-kpi-card-dark:hover { border-color: rgba(94, 234, 212, 0.4); }
  .v2-kpi-number-dark {
    font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800;
    color: white; line-height: 1; font-variant-numeric: tabular-nums;
  }
  .v2-kpi-label-dark {
    font-size: 0.85rem; color: rgba(255,255,255,0.6);
    margin-top: 0.6rem; line-height: 1.4;
  }

  /* Live-Demo-Inline-CTA-Banner (zwischen Sektionen) */
  .v2-inline-cta {
    background: linear-gradient(135deg, rgba(14, 124, 123, 0.06) 0%, rgba(94, 234, 212, 0.08) 100%);
    border: 1px solid rgba(14, 124, 123, 0.2);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap;
    margin: 1rem auto 0;
    max-width: 920px;
  }
  .v2-inline-cta-text { flex: 1 1 320px; min-width: 0; }
  .v2-inline-cta-h { font-weight: 700; font-size: 1.1rem; color: var(--ailean-ink); }
  .v2-inline-cta-p { font-size: 0.92rem; color: var(--ailean-dim); margin-top: 4px; line-height: 1.5; }
  .v2-inline-cta .btn-secondary {
    background: white; border-color: var(--ailean-accent); color: var(--ailean-accent);
    font-weight: 700; flex-shrink: 0;
  }
  .v2-inline-cta .btn-secondary:hover {
    background: var(--ailean-accent); color: white;
    transform: translateY(-1px);
  }

/* V3-spezifisch: Footer-Strip mit Pflichtangaben */
.v3-footer-legal {
  background: #050505;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.v3-legal-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem;
  font-size: 11px; color: rgba(255,255,255,0.45);
  align-items: center;
}
.v3-legal-row strong { color: rgba(255,255,255,0.7); font-weight: 600; }
.v3-legal-row .sep { color: rgba(255,255,255,0.2); }

/* Nav: aktive Seite markiert */
.site-header nav a.is-active { color: var(--ailean-ink); font-weight: 600; }

/* Hero-Container für Subseiten (kleiner als Frontpage-Hero) */
.v3-page-hero {
  padding: 4rem 0 2rem;
}
.v3-page-hero .v2-audience-pill,
.v3-page-hero .live-pill { margin-bottom: 1rem; }
.v3-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1;
}
.v3-page-hero .lead {
  font-size: 1.1rem; color: var(--ailean-dim);
  max-width: 42rem; margin-top: 1rem; line-height: 1.6;
}

/* Investoren: Phasen-Roadmap */
.v3-roadmap { position: relative; padding: 2rem 0; }
.v3-roadmap-track {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 768px) {
  .v3-roadmap-track { grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .v3-roadmap-track::before {
    content: ""; position: absolute; top: 28px; left: 12%; right: 12%; height: 2px;
    background: linear-gradient(90deg, var(--ailean-success), var(--ailean-accent), var(--ailean-violet), var(--ailean-line));
    z-index: 0;
  }
}
.v3-roadmap-step { text-align: center; padding: 0 0.5rem; position: relative; z-index: 1; }
.v3-roadmap-bubble {
  width: 56px; height: 56px; border-radius: 50%;
  margin: 0 auto 1rem;
  background: white; border: 2.5px solid var(--ailean-line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: var(--ailean-dim);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
.v3-roadmap-step.done .v3-roadmap-bubble { background: var(--ailean-success); border-color: var(--ailean-success); color: white; }
.v3-roadmap-step.now .v3-roadmap-bubble { background: var(--ailean-accent); border-color: var(--ailean-accent); color: white; animation: pulse 2.5s ease-in-out infinite; }
.v3-roadmap-step.next .v3-roadmap-bubble { background: white; border-color: var(--ailean-violet); color: var(--ailean-violet); }
.v3-roadmap-status { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.v3-roadmap-step.done .v3-roadmap-status { color: var(--ailean-success); }
.v3-roadmap-step.now .v3-roadmap-status { color: var(--ailean-accent); }
.v3-roadmap-step.next .v3-roadmap-status { color: var(--ailean-violet); }
.v3-roadmap-step.later .v3-roadmap-status { color: var(--ailean-dim); }
.v3-roadmap-h { font-size: 1rem; font-weight: 700; margin-top: 4px; line-height: 1.3; }
.v3-roadmap-p { font-size: 12.5px; color: var(--ailean-dim); margin-top: 6px; line-height: 1.5; }
.v3-roadmap-amount {
  display: inline-block; margin-top: 6px;
  font-size: 13px; font-weight: 800; color: var(--ailean-ink);
  font-variant-numeric: tabular-nums;
}

/* Kunden-Logo-Wall */
.v3-logo-wall {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) { .v3-logo-wall { grid-template-columns: repeat(4, 1fr); } }
.v3-logo-card {
  background: white; border: 1px solid var(--ailean-line);
  border-radius: 12px; padding: 1.25rem 1rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 110px;
  transition: border-color 200ms, transform 200ms;
}
.v3-logo-card:hover { border-color: var(--ailean-accent); transform: translateY(-2px); }
.v3-logo-svg { height: 28px; width: auto; max-width: 100%; }
.v3-logo-label {
  font-size: 10.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--ailean-dim); margin-top: 8px;
}

/* Karriere Videoask-Wrapper */
.v3-videoask-wrap {
  position: relative;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
  background: var(--ailean-soft);
}
.v3-videoask-wrap iframe { display: block; width: 100%; border: 0; }

/* Impressum-Tabelle */
.v3-imprint dl {
  display: grid; grid-template-columns: 200px 1fr; gap: 0.65rem 1.5rem;
  margin-top: 1rem;
}
.v3-imprint dt { font-weight: 600; color: var(--ailean-dim); font-size: 0.9rem; }
.v3-imprint dd { font-size: 0.95rem; color: var(--ailean-ink); }

/* Newsletter-Capture */
.v3-newsletter {
  background: linear-gradient(135deg, rgba(14, 124, 123, 0.05), rgba(94, 234, 212, 0.08));
  border: 1px solid rgba(14, 124, 123, 0.2);
  border-radius: 16px; padding: 1.5rem;
}


  /* ============ Karriere: 6-Schritt-Bewerbungsprozess ============ */
  .v3-steps {
    display: grid; grid-template-columns: 1fr; gap: 0;
    position: relative; margin-top: 2.5rem;
  }
  .v3-step {
    display: grid; grid-template-columns: 60px 1fr;
    gap: 1.25rem;
    padding: 1.25rem 0;
    position: relative;
  }
  .v3-step:not(:last-child)::before {
    content: ""; position: absolute;
    left: 29px; top: 70px; bottom: -10px;
    width: 2px;
    background: linear-gradient(180deg, var(--ailean-accent) 0%, var(--ailean-line) 100%);
  }
  .v3-step-num {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--ailean-line);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem; color: var(--ailean-dim);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 240ms ease;
    position: relative; z-index: 1;
  }
  .v3-step:hover .v3-step-num {
    border-color: var(--ailean-accent);
    color: var(--ailean-accent);
    transform: scale(1.05);
  }
  .v3-step.is-final .v3-step-num {
    background: var(--ailean-accent);
    border-color: var(--ailean-accent);
    color: white;
    box-shadow: 0 8px 24px rgba(14, 124, 123, 0.3);
  }
  .v3-step-content { padding-top: 0.6rem; }
  .v3-step-title {
    font-size: 1.1rem; font-weight: 700; line-height: 1.3;
    margin-bottom: 0.4rem;
  }
  .v3-step-desc {
    font-size: 0.95rem; color: var(--ailean-dim); line-height: 1.6;
  }

  /* Markt-Kontext Block (Schweiz-Zahl) */
  .v3-market {
    background: linear-gradient(135deg, rgba(14, 124, 123, 0.06) 0%, rgba(94, 234, 212, 0.10) 100%);
    border: 1px solid rgba(14, 124, 123, 0.2);
    border-radius: 16px;
    padding: 2rem;
    max-width: 880px; margin: 0 auto;
  }
  .v3-market-num {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800; letter-spacing: -0.02em;
    color: var(--ailean-accent);
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  .v3-market-label {
    font-size: 0.95rem; color: var(--ailean-ink);
    font-weight: 600; margin-top: 0.5rem;
  }
  .v3-market-body {
    font-size: 0.95rem; color: #374151; line-height: 1.6;
    margin-top: 1rem;
  }

/* ========================================================
   V3-PATCH: A11y (Focus-Styles) + Mobile-Navigation
   ======================================================== */

/* --- Focus-Visible — WCAG 2.4.7 --- */
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-link:focus-visible,
.faq-q:focus-visible,
.control-toggle:focus-visible,
.tab-btn:focus-visible,
.site-header nav a:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ailean-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- Mobile-Navigation (Burger + Drawer) --- */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--ailean-line);
  border-radius: 8px;
  cursor: pointer;
  margin-left: 0.5rem;
}
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--ailean-ink); }

@media (max-width: 1023px) {
  .nav-toggle { display: inline-flex; }
  .site-header .header-cta-desktop { display: none; }
  body.nav-open { overflow: hidden; }
  .mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    z-index: 90;
    display: none;
  }
  body.nav-open .mobile-nav { display: block; }
  .mobile-nav-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(86vw, 360px);
    background: white;
    padding: 1.25rem 1.25rem 2rem;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    overflow-y: auto;
  }
  .mobile-nav-close {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: 0; cursor: pointer;
    margin-left: auto;
  }
  .mobile-nav-list { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 0.5rem; }
  .mobile-nav-list a {
    padding: 0.85rem 0.5rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ailean-ink);
    border-bottom: 1px solid var(--ailean-line);
    text-decoration: none;
    display: block;
    min-height: 44px;
  }
  .mobile-nav-list a.is-active { color: var(--ailean-accent); font-weight: 600; }
  .mobile-nav-cta { margin-top: 1.25rem; }
}

/* --- Hero-Stage auf sehr kleinen Phones nicht überlaufen lassen --- */
@media (max-width: 480px) {
  .phone-stage { min-height: 540px; }
  .float-card { display: none; }
}

/* --- Imprint <dl> auf Mobile umbrechen --- */
@media (max-width: 640px) {
  .v3-imprint dl { grid-template-columns: 1fr; gap: 0.2rem 0; }
  .v3-imprint dt { margin-top: 0.7rem; }
}


/* ========================================================
   V3-PATCH 2: Echte Founder-Fotos (img statt Initialen-Kreis)
   ======================================================== */
img.v2-founder-photo {
  width: 110px; height: 110px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  background: var(--ailean-soft);
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  display: block;
}
img.v2-founder-photo.is-cedric {
  box-shadow: 0 8px 20px rgba(180, 83, 9, 0.22);
}


/* ========================================================
   V3-PATCH 3: Mobile-Polish
   ======================================================== */

/* Lange Mail-Adressen, URLs und Refnummern dürfen umbrechen */
.v3-imprint dd,
.v3-imprint dl,
.contact-card,
.compliance-card,
.v3-footer-legal {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Iframe responsives Fallback (VideoAsk) */
.v3-videoask-wrap iframe {
  max-width: 100%;
  display: block;
}

@media (max-width: 480px) {
  .v3-videoask-wrap iframe { height: 520px; border-radius: 16px; }
}

/* Hero-Padding auf sehr engen Phones etwas reduzieren */
@media (max-width: 480px) {
  .section.hero-bg { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
}

/* Inline-CTA-Banner: Buttons stapeln sich auf Mobile sauber statt schief zu brechen */
@media (max-width: 640px) {
  .mt-9.flex.flex-wrap.items-center.gap-4 { flex-direction: column; align-items: stretch; }
  .mt-9.flex.flex-wrap.items-center.gap-4 > .btn-primary,
  .mt-9.flex.flex-wrap.items-center.gap-4 > .btn-secondary { width: 100%; justify-content: center; }
}

/* Horizontal-scroll-Hint für timeline-wrap (sanfter Fade rechts) */
.timeline-wrap { position: relative; }
.timeline-wrap::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 32px;
  background: linear-gradient(to right, transparent, var(--ailean-paper));
  pointer-events: none;
}
@media (min-width: 1200px) {
  .timeline-wrap::after { display: none; }
}

