  :root {
    --bg:           #FAFAF7;
    --bg-warm:      #F5F4EE;
    --surface:      #FFFFFF;
    --text:         #0E140E;
    --text-2:       #2A322A;
    --text-muted:   #6B7160;
    --text-faint:   #9CA098;
    --border:       #E8E8E1;
    --border-strong:#D4D4CA;

    --olive-deep:   #2D4A2A;
    --olive-mid:    #5C8052;
    --olive-soft:   #94B485;
    --olive-faint:  #D8E4D2;

    --bloom-sage:   #B8D9A8;
    --bloom-cream:  #EBE2D2;
    --bloom-mist:   #C8E0E0;
    --bloom-stone:  #DBD3C5;

    --accent:       #C7FF3D;
    --accent-soft:  #D9F08E;
    --accent-glow:  rgba(199, 255, 61, 0.45);
    --logo-blue:    #1E40AF;

    --error:        #C34E45;
    --warn:         #B07A6E;

    --r-sm: 10px;
    --r:    14px;
    --r-lg: 20px;
    --r-xl: 28px;

    --shadow-xs:  0 1px 2px rgba(14, 20, 14, 0.04);
    --shadow-sm:  0 4px 12px rgba(14, 20, 14, 0.05);
    --shadow:     0 10px 32px rgba(14, 20, 14, 0.07);
    --shadow-lg:  0 30px 70px rgba(14, 20, 14, 0.10), 0 8px 16px rgba(14, 20, 14, 0.05);
    --shadow-glow: 0 30px 70px rgba(45, 74, 42, 0.16), 0 0 0 1px rgba(45, 74, 42, 0.05);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-feature-settings: 'cv11', 'ss01', 'tnum';
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    overflow-x: clip;
  }
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.03;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  h1, h2, h3, h4 {
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.04;
    color: var(--text);
  }
  h1 { font-size: clamp(2.75rem, 6.5vw, 5.5rem); font-weight: 700; letter-spacing: -0.04em; line-height: 0.98; }
  h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; letter-spacing: -0.035em; }
  h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 600; }
  h4 { font-size: 1.125rem; font-weight: 600; }
  p { color: var(--text-muted); }

  .grad-green {
    background: linear-gradient(120deg, var(--olive-deep) 0%, var(--olive-mid) 50%, var(--olive-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
  }
  .accent-word {
    color: var(--olive-deep);
    position: relative;
    display: inline-block;
  }
  .accent-word::before {
    content: '';
    position: absolute;
    bottom: 0.06em;
    left: -0.03em;
    right: -0.03em;
    height: 0.16em;
    background: var(--accent);
    z-index: -1;
    border-radius: 4px;
    transform: skewX(-6deg);
  }

  .tnum { font-variant-numeric: tabular-nums; }
  .mono { font-family: 'Geist Mono', monospace; font-feature-settings: 'tnum'; }
  ::selection { background: var(--accent); color: var(--olive-deep); }

  /* Inline SVG Icon Helper */
  .ic { display: inline-flex; align-items: center; justify-content: center; }
  .ic svg { stroke: currentColor; stroke-width: 1.75; fill: none; stroke-linecap: round; stroke-linejoin: round; }

  section {
    position: relative;
    padding: clamp(5rem, 9vw, 8rem) 1.5rem;
    overflow: clip;
  }
  .container { max-width: 1240px; margin: 0 auto; position: relative; z-index: 2; }
  .label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Geist', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--olive-deep);
    margin-bottom: 1.5rem;
  }
  .label::before { content: ''; width: 24px; height: 1px; background: currentColor; }
  .lead { font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--text-muted); line-height: 1.55; max-width: 580px; }

  /* ============================================================
     Buttons
     ============================================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.95rem 1.4rem;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.5), box-shadow 0.3s ease, background 0.2s ease;
    will-change: transform;
  }
  .btn-primary {
    background: var(--olive-deep);
    color: #fff;
    box-shadow: 0 8px 20px rgba(45, 74, 42, 0.22), inset 0 1px 0 rgba(255,255,255,0.1);
  }
  .btn-primary:hover { transform: translateY(-2px); background: var(--text); box-shadow: 0 16px 36px rgba(45, 74, 42, 0.32); }
  .btn-primary .arrow { transition: transform 0.3s ease; }
  .btn-primary:hover .arrow { transform: translateX(4px); }
  .btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
  .btn-ghost:hover { transform: translateY(-2px); border-color: var(--olive-deep); background: var(--bg-warm); }
  .btn-link {
    background: transparent;
    color: var(--olive-deep);
    padding: 0;
    box-shadow: none;
    font-weight: 500;
  }
  .btn-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1.5px;
    background: var(--olive-deep);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .btn-link:hover::after { transform: scaleX(0); transform-origin: right; }

  /* ============================================================
     PIGMENTFLECKEN — drift + opacity-pulse parallel
     ============================================================ */
  .pigment-wrap { position: absolute; inset: 0; z-index: 0; overflow: clip; pointer-events: none; }
  .blob { position: absolute; border-radius: 50%; will-change: transform, opacity; }
  .blob-1 {
    width: 720px; height: 720px; background: var(--bloom-sage);
    top: -240px; left: -120px;
    filter: blur(120px);
    animation: drift1 22s ease-in-out infinite, pulseOp 8s ease-in-out infinite;
  }
  .blob-2 {
    width: 600px; height: 600px; background: var(--bloom-mist);
    top: 25%; right: -160px;
    filter: blur(140px);
    animation: drift2 28s ease-in-out infinite, pulseOp 10s ease-in-out infinite -2s;
  }
  .blob-3 {
    width: 540px; height: 540px; background: var(--bloom-stone);
    bottom: -160px; left: 30%;
    filter: blur(110px);
    animation: drift3 26s ease-in-out infinite, pulseOp 9s ease-in-out infinite -4s;
  }
  .blob-4 {
    width: 460px; height: 460px; background: var(--olive-soft);
    top: 30%; right: 30%;
    filter: blur(160px);
    animation: drift1 34s ease-in-out infinite reverse, pulseOp 12s ease-in-out infinite -6s;
  }
  @keyframes drift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(80px, 60px) scale(1.08); }
    66%      { transform: translate(-40px, 100px) scale(0.95); }
  }
  @keyframes drift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-100px, 80px) scale(1.1); }
  }
  @keyframes drift3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(60px, -80px) scale(0.92); }
  }
  @keyframes pulseOp {
    0%, 100% { opacity: 0.65; }
    50%      { opacity: 0.32; }
  }
  .blob-2 { animation-name: drift2, pulseOp; }

  /* ============================================================
     NAV — Premium
     ============================================================ */
  nav.top {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 250, 247, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
  nav.top.scrolled {
    background: rgba(250, 250, 247, 0.92);
    border-bottom-color: rgba(232, 232, 225, 0.85);
    box-shadow: 0 4px 24px rgba(14, 20, 14, 0.04);
  }
  .nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    gap: 1.5rem;
  }
  .nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--olive-deep);
    text-decoration: none;
  }
  .nav-brand-mark {
    width: 28px; height: 28px;
    border-radius: 7px;
    background: var(--olive-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 4px 10px rgba(45, 74, 42, 0.2);
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.5), box-shadow 0.3s ease;
  }
  .nav-brand:hover .nav-brand-mark {
    transform: rotate(-10deg) scale(1.08);
    box-shadow: 0 8px 22px rgba(45, 74, 42, 0.32), 0 0 0 4px rgba(199, 255, 61, 0.2);
  }
  .nav-links {
    display: flex;
    gap: 0.1rem;
    align-items: center;
    flex: 1;
    justify-content: center;
  }
  .nav-links a {
    color: var(--text-2);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.55rem 0.9rem;
    transition: color 0.2s ease;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0.9rem; right: 0.9rem;
    bottom: 0.32rem;
    height: 1.5px;
    background: var(--olive-deep);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.42s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .nav-links a:hover { color: var(--olive-deep); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-links a.is-current { color: var(--olive-deep); }
  .nav-links a.is-current::after { transform: scaleX(1); }

  /* Dropdown (Desktop) */
  .nav-dropdown {
    position: relative;
    display: inline-block;
  }
  .nav-dropdown-trigger {
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--text-2);
    font: inherit;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.55rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease;
    position: relative;
  }
  .nav-dropdown-trigger::after {
    content: '';
    position: absolute;
    left: 0.9rem; right: 0.9rem;
    bottom: 0.32rem;
    height: 1.5px;
    background: var(--olive-deep);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.42s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .nav-dropdown-trigger svg {
    width: 12px;
    height: 12px;
    transition: transform 0.25s ease;
  }
  .nav-dropdown:hover .nav-dropdown-trigger,
  .nav-dropdown.is-open .nav-dropdown-trigger,
  .nav-dropdown.is-current-parent .nav-dropdown-trigger {
    color: var(--olive-deep);
  }
  .nav-dropdown:hover .nav-dropdown-trigger::after,
  .nav-dropdown.is-open .nav-dropdown-trigger::after,
  .nav-dropdown.is-current-parent .nav-dropdown-trigger::after {
    transform: scaleX(1);
  }
  .nav-dropdown:hover .nav-dropdown-trigger svg,
  .nav-dropdown.is-open .nav-dropdown-trigger svg {
    transform: rotate(180deg);
  }
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.2rem);
    left: 50%;
    transform: translate(-50%, -8px);
    min-width: 240px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.5rem;
    box-shadow: 0 12px 40px rgba(36, 51, 27, 0.10), 0 4px 12px rgba(36, 51, 27, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    z-index: 200;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s;
  }
  /* Hover bridge — verhindert Flackern beim Mausweg */
  .nav-dropdown::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    height: 0.5rem;
  }
  .nav-dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.85rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 9px;
    transition: background 0.18s ease, color 0.18s ease, padding-left 0.22s ease;
    position: relative;
  }
  .nav-dropdown-menu a::after { display: none; }
  .nav-dropdown-menu a .dd-arrow {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: transform 0.22s ease, color 0.18s ease;
  }
  .nav-dropdown-menu a:hover {
    background: var(--cream);
    color: var(--olive-deep);
    padding-left: 1rem;
  }
  .nav-dropdown-menu a:hover .dd-arrow {
    color: var(--olive-deep);
    transform: translateX(4px);
  }
  .nav-dropdown-menu a.is-current {
    background: var(--cream);
    color: var(--olive-deep);
  }

  .nav-cta { display: flex; align-items: center; gap: 0.45rem; }

  .lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.7rem 0.45rem 0.85rem;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-family: 'Geist', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.04em;
  }
  .lang-switch:hover {
    border-color: var(--olive-deep);
    color: var(--olive-deep);
    background: rgba(45, 74, 42, 0.04);
  }
  .lang-switch svg {
    width: 11px; height: 11px;
    stroke: currentColor; stroke-width: 2.5; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
    transition: transform 0.2s;
  }
  .lang-switch:hover svg { transform: translateY(1px); }

  .nav-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
    margin: 0 0.35rem;
  }

  .nav-cta .login {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.5rem 0.65rem;
    transition: color 0.2s ease;
  }
  .nav-cta .login:hover { color: var(--olive-deep); }

  .nav-cta .nav-btn {
    background: var(--olive-deep);
    color: #fff;
    padding: 0.65rem 1.15rem 0.65rem 1.25rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(45, 74, 42, 0.18), inset 0 1px 0 rgba(255,255,255,0.1);
  }
  .nav-cta .nav-btn:hover {
    background: var(--text);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(45, 74, 42, 0.3);
  }
  .nav-cta .nav-btn .nav-btn-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
  }
  .nav-cta .nav-btn:hover .nav-btn-arrow { transform: translateX(3px); }

  /* Burger (Mobile-only) */
  .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s, background 0.2s;
  }
  .nav-burger:hover { border-color: var(--olive-deep); background: rgba(45, 74, 42, 0.04); }
  .nav-burger span {
    display: block;
    width: 18px; height: 1.6px;
    background: var(--text-2);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.3s ease;
    transform-origin: center;
  }
  body.menu-open .nav-burger span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

  /* Mobile Sheet (full-screen overlay menu) */
  .nav-sheet {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: rgba(250, 250, 247, 0.98);
    backdrop-filter: blur(24px);
    z-index: 49;
    transform: translateY(-100%);
    transition: transform 0.55s cubic-bezier(0.7, 0, 0.3, 1);
    overflow-y: auto;
    padding-top: 78px;
  }
  /* Close-Button im Sheet (immer sichtbar, prominent) */
  .sheet-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
    background: var(--olive-deep);
    border: none;
    color: #fff;
    border-radius: 11px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 51;
    box-shadow: 0 8px 20px rgba(45, 74, 42, 0.25);
    transition: background 0.2s, transform 0.3s;
    opacity: 0;
    transform: rotate(-45deg) scale(0.7);
  }
  body.menu-open .sheet-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    transition: opacity 0.4s 0.15s, transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.5) 0.15s;
  }
  .sheet-close:hover { background: var(--text); }
  .sheet-close svg {
    width: 18px; height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  body.menu-open .nav-sheet { transform: translateY(0); }
  body.menu-open { overflow: hidden; }
  .sheet-content {
    padding: 2rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .sheet-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: -0.025em;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease, padding-left 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
  }
  body.menu-open .sheet-link,
  body.menu-open .sheet-group {
    animation: sheetLinkIn 0.55s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
  }
  body.menu-open .sheet-content > *:nth-child(1) { animation-delay: 0.15s; }
  body.menu-open .sheet-content > *:nth-child(2) { animation-delay: 0.22s; }
  body.menu-open .sheet-content > *:nth-child(3) { animation-delay: 0.29s; }
  body.menu-open .sheet-content > *:nth-child(4) { animation-delay: 0.36s; }
  body.menu-open .sheet-content > *:nth-child(5) { animation-delay: 0.43s; }
  body.menu-open .sheet-content > *:nth-child(6) { animation-delay: 0.50s; }
  @keyframes sheetLinkIn {
    to { opacity: 1; transform: translateY(0); }
  }
  .sheet-link::after {
    content: '→';
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: transform 0.3s, color 0.2s;
  }
  .sheet-link:hover { color: var(--olive-deep); padding-left: 0.4rem; }
  .sheet-link:hover::after { color: var(--olive-deep); transform: translateX(6px); }

  /* Sheet-Akkordeon (Plattform / Branchen) */
  .sheet-group {
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px);
  }
  body.menu-open .sheet-group {
    animation: sheetLinkIn 0.55s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
  }
  .sheet-group-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--text);
    font: inherit;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: -0.025em;
    padding: 1rem 0;
    text-align: left;
    transition: color 0.2s ease;
  }
  .sheet-group-trigger .sheet-chevron {
    width: 22px;
    height: 22px;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.2s ease;
    flex-shrink: 0;
  }
  .sheet-group.is-open .sheet-group-trigger { color: var(--olive-deep); }
  .sheet-group.is-open .sheet-group-trigger .sheet-chevron {
    transform: rotate(180deg);
    color: var(--olive-deep);
  }
  .sheet-group-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
    display: flex;
    flex-direction: column;
  }
  .sheet-group.is-open .sheet-group-list {
    max-height: 600px;
  }
  .sheet-sublink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-2);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.7rem 0 0.7rem 0.4rem;
    transition: color 0.2s ease, padding-left 0.25s ease;
  }
  .sheet-sublink:last-child { padding-bottom: 1.2rem; }
  .sheet-sublink::after {
    content: '→';
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: transform 0.3s, color 0.2s;
  }
  .sheet-sublink:hover { color: var(--olive-deep); padding-left: 0.8rem; }
  .sheet-sublink:hover::after { color: var(--olive-deep); transform: translateX(4px); }

  .sheet-bottom {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    opacity: 0;
    transform: translateY(20px);
  }
  body.menu-open .sheet-bottom { animation: sheetLinkIn 0.55s cubic-bezier(0.2, 0.9, 0.3, 1) 0.6s forwards; }
  .sheet-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }
  .sheet-row .login {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--r);
    flex: 1;
    text-align: center;
  }
  .sheet-row .lang-sheet {
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: var(--r);
    padding: 0.85rem 1.1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Geist', sans-serif;
  }
  .sheet-row .lang-sheet svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .sheet-cta {
    background: var(--olive-deep);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.15rem 1.5rem;
    border-radius: var(--r);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 12px 28px rgba(45, 74, 42, 0.3);
  }
  .sheet-cta:hover { background: var(--text); }

  /* Floating CTA für Mobile (erscheint nach scroll) */
  .float-cta {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--olive-deep);
    color: #fff;
    padding: 0.95rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(45, 74, 42, 0.4), 0 0 0 6px rgba(199, 255, 61, 0.15);
    z-index: 40;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(120px) scale(0.85);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.3, 1.5), opacity 0.35s ease;
    pointer-events: none;
  }
  .float-cta.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  .float-cta svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

  @media (max-width: 1024px) {
    .nav-divider { display: none; }
    .nav-cta .login { display: none; }
  }
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .nav-sheet { display: block; }
    .float-cta { display: inline-flex; }
  }

  /* ============================================================
     HERO
     ============================================================ */
  .hero {
    padding: 5rem 1.5rem 6rem;
    overflow: clip;
    background:
      radial-gradient(at 15% 20%, rgba(184, 217, 168, 0.45) 0%, transparent 55%),
      radial-gradient(at 85% 60%, rgba(200, 224, 224, 0.45) 0%, transparent 55%),
      var(--bg);
    position: relative;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(45, 74, 42, 0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(45, 74, 42, 0.022) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    z-index: 1;
  }
  .hero .container { z-index: 3; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
  }
  .hero-pre {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 0.45rem 0.8rem 0.45rem 0.5rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-2);
  }
  .hero-pre .dot {
    width: 8px; height: 8px;
    background: var(--olive-mid);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(92, 128, 82, 0.2);
    animation: pulseDot 2s ease-in-out infinite;
  }
  @keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(92, 128, 82, 0.2); }
    50%      { box-shadow: 0 0 0 8px rgba(92, 128, 82, 0); }
  }
  .hero h1 { margin-bottom: 1.5rem; }
  .hero-sub {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.55;
    margin-bottom: 2rem;
  }
  .hero-cta { display: flex; gap: 1.25rem; margin-bottom: 2.25rem; flex-wrap: wrap; align-items: center; }
  .hero-trust-row {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--text-muted);
  }
  .hero-trust-row .it { display: inline-flex; align-items: center; gap: 0.45rem; }
  .hero-trust-row .it .ic { color: var(--olive-deep); width: 14px; height: 14px; }
  .hero-trust-row .it .ic svg { width: 14px; height: 14px; }
  .hero-trust-row .it.is-cert {
    background: rgba(92,128,82,0.10);
    color: var(--olive-deep);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(45,74,42,0.15);
  }
  .hero-trust-row .it.is-cert .ic { color: var(--olive-deep); }

  /* Swissdec-Badge — prominent, wiederverwendbar auf allen Pages */
  .swissdec-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(92,128,82,0.10);
    border: 1px solid rgba(45,74,42,0.18);
    color: var(--olive-deep);
    padding: 0.45rem 0.85rem 0.45rem 0.55rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1;
  }
  .swissdec-badge-mark {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--olive-deep);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .swissdec-badge-mark svg {
    width: 12px;
    height: 12px;
    stroke-width: 3;
  }
  .swissdec-badge-text { white-space: nowrap; }
  .swissdec-badge-text small {
    display: block;
    font-size: 0.66rem;
    font-weight: 500;
    color: var(--olive-mid);
    margin-top: 0.1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .swissdec-badge.is-stacked {
    padding: 0.55rem 0.95rem 0.55rem 0.6rem;
    line-height: 1.2;
  }

  /* ============================================================
     KEY-FEATURE Cards (kf-card / kf-card.is-star)
     Standard-Pattern für Feature-Listings, Pain-Lösung-Cards usw.
     Star-Variante hat dunklen Hintergrund + accent Icon
     ============================================================ */
  .kf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .kf-card {
    position: relative;
    padding: 1.7rem 1.6rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.7) inset,
      0 1px 2px rgba(14,20,14,0.04),
      0 8px 20px -8px rgba(14,20,14,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
  }
  .kf-card:hover {
    transform: translateY(-3px);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.7) inset,
      0 14px 30px -8px rgba(14,20,14,0.14);
  }
  .kf-card.is-star {
    background: linear-gradient(165deg, #0E140E 0%, #1F2A1F 100%);
    color: #fff;
    border-color: transparent;
  }
  .kf-card.is-star::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; width: 50%;
    background: radial-gradient(60% 80% at 100% 50%, rgba(199,255,61,0.18), transparent 70%);
    pointer-events: none;
  }
  .kf-card .kf-ico {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--olive-faint);
    color: var(--olive-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    position: relative;
  }
  .kf-card.is-star .kf-ico {
    background: var(--accent);
    color: var(--olive-deep);
  }
  .kf-card .kf-ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .kf-card .kf-star {
    position: absolute;
    top: 1.1rem; right: 1.1rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: rgba(199,255,61,0.12);
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
  }
  .kf-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.25;
    position: relative;
  }
  .kf-card.is-star h3 { color: #fff; }
  .kf-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
    position: relative;
  }
  .kf-card.is-star p { color: rgba(255,255,255,0.78); }
  .kf-card .kf-fix {
    position: relative;
    margin-top: 1.2rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .kf-card.is-star .kf-fix { border-top-color: rgba(199,255,61,0.16); }
  .kf-card .kf-fix-ico {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--olive-deep);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 1px;
  }
  .kf-card.is-star .kf-fix-ico {
    background: var(--accent);
    color: var(--olive-deep);
  }
  .kf-card .kf-fix-text {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.55;
  }
  .kf-card.is-star .kf-fix-text { color: rgba(255,255,255,0.92); }

  @media (max-width: 900px) {
    .kf-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
    .kf-card { padding: 1.3rem 1.1rem; }
  }
  @media (max-width: 560px) {
    .kf-grid { grid-template-columns: 1fr; }
  }

  /* ============================================================
     ACTIVITY-FEED — slow premium reveal, NO overlap
     (eigene Klassen .afe-X, keine Kollision mit event-stream)
     ============================================================ */
  .activity-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-glow);
    overflow: hidden;
    height: 440px; /* initial fallback — JS adjusts dynamically per panel */
    transition: height 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
  }
  .afe-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
  }
  .afe-head-l {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 600;
  }
  .afe-head-l .liveDot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(199, 255, 61, 0.25);
    animation: pulseDot 1.6s ease-in-out infinite;
  }
  .afe-head-r {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  /* Tab-Pills für Event-Typen */
  .afe-pills {
    display: flex;
    gap: 0.4rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
    flex-shrink: 0;
    position: relative;
  }
  .afe-pills::-webkit-scrollbar { display: none; }
  .afe-pill {
    background: rgba(45, 74, 42, 0.05);
    border: 1px solid transparent;
    color: var(--text-muted);
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    font-family: 'Geist', sans-serif;
    letter-spacing: 0.01em;
  }
  .afe-pill:hover {
    background: rgba(45, 74, 42, 0.09);
    color: var(--olive-deep);
  }
  .afe-pill.active {
    background: var(--olive-deep);
    color: #fff;
    box-shadow: 0 4px 12px rgba(45, 74, 42, 0.22);
  }

  .afe-body {
    padding: 1rem;
    flex: 1;
    overflow: hidden;
    position: relative;
  }
  .afe-panel {
    display: none;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
  }
  .afe-panel::-webkit-scrollbar { display: none; }
  .afe-panel.active {
    display: block;
    animation: panelIn 0.45s cubic-bezier(0.2, 0.9, 0.3, 1);
  }
  @keyframes panelIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .afe-event {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 0.95rem 1.1rem;
    flex-shrink: 0;
  }

  .afe-ev-head {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.55rem;
  }
  .afe-ev-head .ico {
    width: 24px; height: 24px;
    border-radius: 7px;
    background: var(--olive-deep);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .afe-ev-head .ico svg { width: 12px; height: 12px; stroke-width: 2; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
  .afe-ev-head .time {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--text-faint);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
  }
  .afe-tasks {
    border-left: 1px dashed var(--border-strong);
    margin-left: 11px;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  .afe-summary {
    margin-top: 1rem;
    padding: 0.85rem 1.1rem;
    background: linear-gradient(135deg, var(--olive-faint) 0%, rgba(199, 255, 61, 0.1) 100%);
    border: 1px solid var(--olive-soft);
    border-radius: var(--r);
    font-size: 0.78rem;
    color: var(--text-2);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    line-height: 1.4;
  }
  .afe-summary .sm-ico {
    width: 22px; height: 22px;
    background: var(--olive-deep);
    color: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .afe-summary .sm-ico svg { width: 11px; height: 11px; stroke: currentColor; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .afe-summary strong { color: var(--olive-deep); font-weight: 700; }
  .afe-task {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    color: var(--text-2);
    opacity: 0;
    transform: translateX(-10px);
  }
  .afe-panel.active .afe-task {
    animation: taskIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .afe-panel.active .afe-task:nth-child(1) { animation-delay: 0.18s; }
  .afe-panel.active .afe-task:nth-child(2) { animation-delay: 0.30s; }
  .afe-panel.active .afe-task:nth-child(3) { animation-delay: 0.42s; }
  .afe-panel.active .afe-task:nth-child(4) { animation-delay: 0.54s; }
  .afe-panel.active .afe-task:nth-child(5) { animation-delay: 0.66s; }
  .afe-panel.active .afe-task:nth-child(6) { animation-delay: 0.78s; }
  @keyframes taskIn { to { opacity: 1; transform: translateX(0); } }

  .afe-task .check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--olive-faint);
    color: var(--olive-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .afe-task .check svg { width: 10px; height: 10px; stroke-width: 2.5; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
  .afe-task.done .check { background: var(--olive-deep); color: #fff; }
  .afe-task .label-mini { flex: 1; }
  .afe-task .pill-mini {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    background: var(--olive-faint);
    color: var(--olive-deep);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .afe-task.done .pill-mini { background: var(--olive-deep); color: #fff; }

  @media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .activity-card { height: 460px; max-width: 480px; margin: 0 auto; }
  }

  /* ============================================================
     LOGO MARQUEE
     ============================================================ */
  .marquee {
    overflow: clip;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-warm);
    position: relative;
  }
  .marquee::before, .marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; width: 120px;
    z-index: 2;
    pointer-events: none;
  }
  .marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-warm), transparent); }
  .marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg-warm), transparent); }
  .marquee-track { display: flex; gap: 4rem; animation: scroll 35s linear infinite; width: max-content; }
  .marquee-item {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
  }
  .marquee-item .icon-box {
    width: 26px; height: 26px;
    border-radius: 7px;
    background: var(--olive-faint);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--olive-deep);
    font-weight: 700;
    font-size: 0.72rem;
  }
  /* Echte Logos statt Icon-Box */
  .marquee-item .marquee-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
  }
  .marquee-item .marquee-logo.is-white {
    filter: brightness(0) invert(0.35);
  }
  /* Catch-All "Ihr ERP" — gestrichelt */
  .marquee-item.is-anyerp {
    padding: 0.4rem 1rem;
    border: 1.5px dashed var(--border-strong);
    border-radius: 999px;
    color: var(--olive-deep);
    font-weight: 600;
    opacity: 0.95;
  }
  .marquee-item.is-anyerp::before {
    content: '+';
    margin-right: 0.4rem;
    font-weight: 600;
    color: var(--olive-mid);
  }
  /* Header über dem Marquee */
  .marquee-head {
    background: var(--bg-warm);
    padding: 2.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .marquee-head .label { color: var(--olive-mid); }
  .marquee-head .marquee-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin: 0.5rem auto 0;
    max-width: 580px;
    line-height: 1.45;
  }
  .marquee-head .marquee-title em {
    font-style: normal;
    color: var(--olive-deep);
    font-weight: 700;
  }
  .marquee + .marquee, .marquee-head + .marquee { border-top: none; }
  @keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ============================================================
     BROWSER-MOCKUP — Dashboard (UNCHANGED, gefällt dir super)
     ============================================================ */
  .mockup-wrap { perspective: 1800px; margin-top: 4rem; }
  .browser-frame {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-glow);
    overflow: hidden;
    max-width: 1180px;
    margin: 0 auto;
    transform: rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
    min-height: 580px;
  }
  .browser-frame:hover { transform: rotateX(0deg) translateY(-6px); }
  .browser-chrome {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.1rem;
    background: linear-gradient(180deg, #FBFAF6 0%, #F5F4EE 100%);
    border-bottom: 1px solid var(--border);
  }
  .browser-dot { width: 12px; height: 12px; border-radius: 50%; }
  .browser-dot.r { background: #FF6B5C; }
  .browser-dot.y { background: #C8C8C0; }
  .browser-dot.g { background: var(--olive-soft); }
  .browser-url {
    flex: 1;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    font-size: 0.75rem;
    font-family: 'Geist Mono', monospace;
    color: var(--text-muted);
    text-align: center;
    margin: 0 1rem;
    max-width: 360px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }
  .browser-url .ic { color: var(--olive-mid); width: 12px; height: 12px; }
  .browser-url .ic svg { width: 12px; height: 12px; }
  .browser-meta { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
  .browser-body { display: grid; grid-template-columns: 232px 1fr; min-height: 520px; }
  .browser-sidebar {
    background: linear-gradient(180deg, #FBFAF6 0%, #F5F4EE 100%);
    border-right: 1px solid var(--border);
    padding: 1.2rem 0.85rem;
  }
  .sidebar-org-row { display: flex; align-items: center; gap: 0.75rem; padding: 0 0.6rem 1.5rem; }
  .sidebar-logo {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--olive-deep), var(--olive-mid));
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    box-shadow: 0 4px 12px rgba(45, 74, 42, 0.2);
  }
  .sidebar-logo svg { width: 14px; height: 14px; fill: currentColor; }
  .sidebar-org-info { font-size: 0.78rem; line-height: 1.2; }
  .sidebar-org-info .name { font-weight: 600; }
  .sidebar-org-info .sub  { color: var(--text-muted); font-size: 0.7rem; }
  .sidebar-section {
    font-size: 0.62rem;
    color: var(--text-faint);
    padding: 1rem 0.6rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
  }
  .sidebar-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.55rem 0.7rem;
    border-radius: var(--r-sm);
    font-size: 0.85rem;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.15s ease;
    margin-bottom: 0.18rem;
  }
  .sidebar-item:hover { background: rgba(45, 74, 42, 0.06); color: var(--olive-deep); }
  .sidebar-item.active {
    background: var(--olive-deep);
    color: #fff;
    box-shadow: 0 4px 14px rgba(45, 74, 42, 0.25);
  }
  .sidebar-item .lbl-row { display: flex; align-items: center; gap: 0.6rem; }
  .sidebar-item .ic { width: 16px; height: 16px; opacity: 0.85; }
  .sidebar-item .ic svg { width: 16px; height: 16px; }
  .sidebar-item.active .ic { opacity: 1; }
  .sidebar-item .badge-num {
    background: var(--olive-faint);
    color: var(--olive-deep);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    min-width: 22px;
    text-align: center;
    font-variant-numeric: tabular-nums;
  }
  .sidebar-item.active .badge-num { background: rgba(255,255,255,0.18); color: #fff; }
  .browser-main { padding: 2.25rem 2.25rem 1rem; background: #fff; }
  .browser-greeting {
    font-family: 'Geist', sans-serif;
    font-size: 1.85rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text);
    letter-spacing: -0.025em;
  }
  .browser-sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.75rem; }
  .command-bar {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 0.95rem 1.2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    transition: border-color 0.2s;
  }
  .command-bar:hover { border-color: var(--olive-mid); background: #fff; }
  .command-bar .left { display: flex; align-items: center; gap: 0.6rem; }
  .command-bar .ic { color: var(--olive-deep); width: 16px; height: 16px; }
  .command-bar .ic svg { width: 16px; height: 16px; }
  .command-bar .kbd {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.18rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: 'Geist Mono', monospace;
    color: var(--text-muted);
    box-shadow: 0 1px 0 var(--border);
  }
  .browser-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .b-card {
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1.1rem 1.25rem;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
  }
  .b-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, var(--bloom-sage) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
  }
  .b-card:hover::before { opacity: 0.18; }
  .b-card > * { position: relative; z-index: 1; }
  .b-card:hover { border-color: var(--olive-soft); transform: translateY(-2px); }
  .b-card .lbl {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--olive-mid);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
  }
  .b-card .val {
    font-family: 'Geist', sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
    letter-spacing: -0.025em;
    font-variant-numeric: tabular-nums;
  }
  .b-card .sub { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.35rem; }
  .b-card .trend.up { color: var(--olive-mid); font-weight: 600; }
  .b-card .trend.up::before { content: '↗ '; }

  /* ============================================================
     BUNDLE-GRID — 3 dark-olive Cards, gruppiert
     mit WOW-Effekten: scroll-reveal, cursor-glow, mini-stream,
     animated checks, breathing icons
     ============================================================ */
  .bundle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 4rem;
  }
  .bundle-card {
    --mouse-x: 50%;
    --mouse-y: 50%;
    background: linear-gradient(135deg, var(--olive-deep) 0%, var(--text) 100%);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1),
                box-shadow 0.4s ease,
                opacity 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
    isolation: isolate;
    /* scroll-reveal initial state */
    opacity: 0;
    transform: translateY(40px);
  }
  .bundle-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .bundle-card:hover {
    box-shadow: var(--shadow-lg);
  }
  /* Cursor-follow Acid-Limette Glow */
  .bundle-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 280px at var(--mouse-x) var(--mouse-y), rgba(199, 255, 61, 0.14), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
  }
  .bundle-card:hover::after { opacity: 1; }
  .bundle-card.large {
    grid-column: span 2;
  }
  .bundle-card::before {
    content: '';
    position: absolute;
    right: -120px; top: -120px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
    opacity: 0.14;
    border-radius: 50%;
    pointer-events: none;
    animation: pulseOp 10s ease-in-out infinite;
  }
  .bundle-card.large::before {
    width: 500px; height: 500px;
    opacity: 0.18;
  }
  .bundle-card > * { position: relative; z-index: 1; }

  .bundle-card .b-ico {
    width: 48px; height: 48px;
    background: var(--accent);
    color: var(--olive-deep);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(199, 255, 61, 0.25), inset 0 1px 0 rgba(255,255,255,0.4);
    animation: icoBreath 4s ease-in-out infinite;
    position: relative;
  }
  @keyframes icoBreath {
    0%, 100% { box-shadow: 0 8px 20px rgba(199, 255, 61, 0.25), inset 0 1px 0 rgba(255,255,255,0.4); transform: scale(1); }
    50%      { box-shadow: 0 12px 32px rgba(199, 255, 61, 0.5), inset 0 1px 0 rgba(255,255,255,0.5); transform: scale(1.04); }
  }
  .bundle-card.large .b-ico { animation-delay: 0s; }
  .bundle-card:nth-child(2) .b-ico { animation-delay: 1.3s; }
  .bundle-card:nth-child(3) .b-ico { animation-delay: 2.6s; }
  .bundle-card .b-ico svg {
    width: 24px; height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .bundle-card h3 {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
    line-height: 1.1;
  }
  .bundle-card.large h3 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    max-width: 70%;
  }
  .bundle-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.75rem;
  }
  .bundle-card.large p {
    font-size: 1.05rem;
    max-width: 70%;
  }

  .bundle-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .bundle-card.large .bundle-features {
    grid-template-columns: repeat(4, 1fr);
  }
  .bundle-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1rem 1.1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r);
    transition: background 0.25s ease, border-color 0.25s ease, opacity 0.6s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
    /* scroll-reveal initial */
    opacity: 0;
    transform: translateY(15px);
  }
  .bundle-card.visible .bundle-features li { opacity: 1; transform: translateY(0); }
  .bundle-card.visible .bundle-features li:nth-child(1) { transition-delay: 0.25s, 0.25s, 0.4s, 0.4s; }
  .bundle-card.visible .bundle-features li:nth-child(2) { transition-delay: 0.25s, 0.25s, 0.55s, 0.55s; }
  .bundle-card.visible .bundle-features li:nth-child(3) { transition-delay: 0.25s, 0.25s, 0.7s, 0.7s; }
  .bundle-card.visible .bundle-features li:nth-child(4) { transition-delay: 0.25s, 0.25s, 0.85s, 0.85s; }
  .bundle-features li:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(199, 255, 61, 0.25);
    transform: translateX(2px);
  }
  .bundle-features .lf-ico {
    width: 20px; height: 20px;
    background: var(--accent);
    color: var(--olive-deep);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }
  .bundle-features .lf-ico svg {
    width: 11px; height: 11px;
    stroke: currentColor; stroke-width: 3; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
  }
  /* Animated draw-in für check-marks beim sichtbar werden */
  .bundle-features .lf-ico svg path {
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    transition: stroke-dashoffset 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
  }
  .bundle-card.visible .bundle-features li:nth-child(1) .lf-ico svg path { stroke-dashoffset: 0; transition-delay: 0.55s; }
  .bundle-card.visible .bundle-features li:nth-child(2) .lf-ico svg path { stroke-dashoffset: 0; transition-delay: 0.7s; }
  .bundle-card.visible .bundle-features li:nth-child(3) .lf-ico svg path { stroke-dashoffset: 0; transition-delay: 0.85s; }
  .bundle-card.visible .bundle-features li:nth-child(4) .lf-ico svg path { stroke-dashoffset: 0; transition-delay: 1s; }

  /* Mini-Stream — floating live event chips im Engine-Card-Hintergrund */
  .mini-stream {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }
  .mini-evt {
    position: absolute;
    background: rgba(199, 255, 61, 0.07);
    border: 1px solid rgba(199, 255, 61, 0.18);
    color: rgba(255,255,255,0.55);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    animation: miniEvt 12s ease-in-out infinite;
    opacity: 0;
    backdrop-filter: blur(4px);
  }
  .mini-evt::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
  }
  .me-1 { top: 22%; right: 6%; animation-delay: 0s; }
  .me-2 { top: 8%; right: 28%; animation-delay: 2.4s; }
  .me-3 { top: 38%; right: 14%; animation-delay: 4.8s; }
  .me-4 { top: 52%; right: 4%; animation-delay: 7.2s; }
  .me-5 { top: 32%; right: 30%; animation-delay: 9.6s; }
  @keyframes miniEvt {
    0%, 92%, 100% { opacity: 0; transform: translateY(8px); }
    8%, 80%       { opacity: 0.7; transform: translateY(0); }
  }
  @media (max-width: 900px) {
    .mini-stream { display: none; }
  }
  .bundle-features .lf-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
  }
  .bundle-features .lf-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
  }
  .bundle-features .lf-sub {
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    line-height: 1.35;
  }

  @media (max-width: 1024px) {
    .bundle-card.large .bundle-features { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 700px) {
    .bundle-grid { grid-template-columns: 1fr; }
    .bundle-card.large { grid-column: span 1; }
    .bundle-card { padding: 1.75rem; }
    .bundle-card.large .bundle-features,
    .bundle-features { grid-template-columns: 1fr; }
    .bundle-card.large h3, .bundle-card.large p { max-width: 100%; }
  }

  /* ============================================================
     EVENT-FLOW — interaktiver Selector (Tabs + Steps pro Event-Typ)
     ============================================================ */
  .event-flow-wrap { margin-top: 3rem; }
  .event-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 0.4rem;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--r);
    width: fit-content;
  }
  .event-tab {
    background: transparent;
    border: none;
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.6rem 1.1rem;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
  }
  .event-tab .ic { width: 14px; height: 14px; }
  .event-tab .ic svg { width: 14px; height: 14px; }
  .event-tab:hover { color: var(--text); background: rgba(255,255,255,0.5); }
  .event-tab.active {
    background: var(--olive-deep);
    color: #fff;
    box-shadow: 0 4px 12px rgba(45, 74, 42, 0.2);
  }

  .event-flow {
    display: none;
    animation: flowIn 0.5s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
  }
  .event-flow.active { display: block; }
  @keyframes flowIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .event-flow-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
  }
  .event-flow-meta .meta-ico {
    width: 40px; height: 40px;
    background: var(--accent);
    color: var(--olive-deep);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .event-flow-meta .meta-ico svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .event-flow-meta .meta-text { flex: 1; }
  .event-flow-meta .meta-title { font-size: 0.95rem; font-weight: 600; }
  .event-flow-meta .meta-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.15rem; }
  .event-flow-meta .meta-count {
    font-size: 0.75rem;
    color: var(--olive-deep);
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    background: var(--olive-faint);
    border-radius: 999px;
  }

  .step-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }
  .step-tile {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.5rem 1.4rem;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
    min-height: 200px;
    position: relative;
  }
  .step-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--olive-soft);
  }
  .step-num {
    font-family: 'Geist', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--olive-mid);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .step-num .dot-num { font-variant-numeric: tabular-nums; }
  .step-num .dot-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--olive-faint);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--olive-deep);
    font-weight: 700;
    font-size: 0.78rem;
    transition: all 0.3s;
  }
  .step-tile:hover .dot-num { background: var(--olive-deep); color: var(--accent); }
  .step-tile h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .step-tile p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
  }
  .step-tile .step-tag {
    display: inline-block;
    margin-top: 0.85rem;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    background: var(--bg-warm);
    color: var(--text-muted);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .step-tile .step-tag.hr      { background: var(--olive-deep); color: #fff; }
  .step-tile .step-tag.payroll { background: var(--olive-mid); color: #fff; }
  .step-tile .step-tag.kontrolle { background: var(--accent); color: var(--olive-deep); }
  .step-tile .step-tag.auto    { background: var(--text); color: #fff; }

  /* ============================================================
     UI-CARD SECTION — neuer Marketing-Tone (kein Offer-Sprech)
     ============================================================ */
  .ui-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .ui-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-glow);
    padding: 1.6rem 1.75rem;
    position: relative;
    min-height: 460px;
    transform: rotateY(-2deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
  }
  .ui-card:hover { transform: rotateY(0deg) rotateX(0deg); }
  .ui-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
  .ui-card-head .title { font-size: 1.05rem; font-weight: 600; }
  .ui-card-head .sub { font-size: 0.78rem; color: var(--text-muted); }
  .ui-card-head .live-dot { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; font-weight: 600; color: var(--olive-deep); }
  .ui-card-head .live-dot::before {
    content: ''; width: 8px; height: 8px;
    background: var(--accent); border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(199,255,61,0.3);
    animation: pulseDot 1.6s ease-in-out infinite;
  }
  .ui-table { width: 100%; font-size: 0.875rem; }
  .ui-table-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    padding: 0.5rem 0;
    color: var(--text-faint);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border);
  }
  .ui-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f1f1ec;
    align-items: center;
    transition: background 0.2s;
  }
  .ui-row:hover { background: var(--bg-warm); }
  .ui-row:last-child { border-bottom: none; }
  .ui-name { font-weight: 500; }
  .ui-val { font-weight: 500; font-variant-numeric: tabular-nums; }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    width: fit-content;
    font-family: 'Geist', sans-serif;
  }
  .pill.ready    { background: rgba(45, 74, 42, 0.1); color: var(--olive-deep); }
  .pill.ready::before { content: '✓'; }
  .pill.pending  { background: rgba(195, 78, 69, 0.1); color: var(--error); }
  .pill.pending::before { content: '!'; font-weight: 700; }
  .pill.progress { background: rgba(176, 122, 110, 0.12); color: var(--warn); }
  .pill.progress::before { content: '○'; }
  .pill.live { background: var(--accent); color: var(--olive-deep); box-shadow: 0 4px 14px var(--accent-glow); }
  .pill.live::before { content: '⚡'; }

  /* ============================================================
     MITARBEITER-APP — 2 gestaffelte iPhone-Mockups + Story
     Layout-Stabilität: feste Höhe für Mockup-Container, Phones absolute
     ============================================================ */
  .ma-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 5rem;
    align-items: center;
  }
  .ma-content .lead { margin-top: 1.5rem; max-width: 540px; }

  .ma-modules { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 1.5rem; }
  .ma-module-group h4 {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-faint);
    margin: 0 0 0.65rem;
  }
  .ma-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; }
  .ma-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    background: rgba(45, 74, 42, 0.05);
    border: 1px solid rgba(45, 74, 42, 0.12);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-2);
  }
  .ma-pill.is-modular {
    background: rgba(199, 255, 61, 0.12);
    border-color: rgba(45, 74, 42, 0.18);
    color: var(--olive-deep);
  }
  .ma-pill .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--olive-soft);
  }
  .ma-pill.is-modular .dot { background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }

  .ma-ai-callout {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--r);
    box-shadow: var(--shadow-sm);
  }
  .ma-ai-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: var(--olive-deep);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
  }
  .ma-ai-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .ma-ai-callout h4 { margin: 0 0 0.25rem; font-size: 0.95rem; font-weight: 600; }
  .ma-ai-callout p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }

  .ma-cta { margin-top: 2.25rem; display: flex; gap: 1rem; flex-wrap: wrap; }

  /* Mockup-Stage — fixe Höhe verhindert Layout-Shift */
  .ma-mockup {
    position: relative;
    height: 640px;
    width: 100%;
  }
  .ma-mockup::before {
    content: '';
    position: absolute;
    inset: -10% -5%;
    background:
      radial-gradient(60% 50% at 30% 40%, rgba(199,255,61,0.18), transparent 70%),
      radial-gradient(50% 50% at 75% 60%, rgba(92,128,82,0.18), transparent 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
  }

  /* iPhone-Frame */
  .ma-phone {
    position: absolute;
    width: 280px;
    height: 580px;
    border-radius: 44px;
    background: #0E140E;
    padding: 8px;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.08) inset,
      0 30px 60px -20px rgba(14,20,14,0.45),
      0 0 0 1px rgba(14,20,14,0.6);
  }
  .ma-phone .phone-screen {
    width: 100%;
    height: 100%;
    background: var(--surface);
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .ma-phone .phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 26px;
    background: #0E140E;
    border-radius: 999px;
    z-index: 5;
  }
  .ma-phone.phone-back {
    top: 0;
    right: 0;
    transform: rotate(4deg) translateY(20px);
    z-index: 1;
    opacity: 0.94;
  }
  .ma-phone.phone-front {
    bottom: 0;
    left: 0;
    transform: rotate(-3deg);
    z-index: 2;
  }

  /* Phone Status Bar */
  .ph-status {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 0 28px;
    font-size: 11px;
    font-weight: 600;
    color: #0E140E;
    flex-shrink: 0;
  }
  .ph-status .ph-icons { display: flex; gap: 5px; align-items: center; }
  .ph-status svg { width: 12px; height: 12px; fill: #0E140E; }

  /* Phone Header */
  .ph-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.1rem 0.75rem;
    flex-shrink: 0;
  }
  .ph-company { font-size: 0.78rem; font-weight: 600; color: var(--text); }
  .ph-actions { display: flex; gap: 0.5rem; align-items: center; }
  .ph-chat-btn {
    width: 28px; height: 28px;
    background: var(--bg-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
  }
  .ph-chat-btn svg { width: 14px; height: 14px; stroke: var(--text); fill: none; stroke-width: 2; }
  .ph-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--olive-soft), var(--bloom-cream));
    border: 1.5px solid var(--surface);
    background-image:
      radial-gradient(circle at 50% 35%, var(--olive-deep) 0 5px, transparent 6px),
      radial-gradient(ellipse at 50% 90%, var(--olive-deep) 0 12px, transparent 13px),
      linear-gradient(135deg, #E8D5B8, #C9A876);
  }

  /* Home-Screen Content */
  .ph-content { padding: 0.25rem 1.25rem 1rem; flex: 1; overflow: hidden; }
  .ph-greet {
    text-align: center;
    margin-top: 0.5rem;
  }
  .ph-greet-avatar {
    width: 76px; height: 76px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    background:
      radial-gradient(circle at 50% 38%, #6B5544 0 13px, transparent 14px),
      radial-gradient(ellipse at 50% 95%, #6B5544 0 30px, transparent 31px),
      linear-gradient(135deg, #E8D5B8, #C9A876);
    background-size: 100% 100%;
    border: 2px solid var(--surface);
    box-shadow: 0 4px 16px rgba(14,20,14,0.08);
  }
  .ph-greet-line {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
  }
  .ph-greet-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
  }

  .ph-new-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--olive-deep);
    color: var(--accent);
    border: none;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(45,74,42,0.25);
  }
  .ph-new-chat svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  .ph-divider {
    height: 1px; background: var(--border); margin: 1.1rem -1.25rem;
  }

  .ph-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.65rem;
  }

  .ph-app-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 0.55rem;
  }
  .ph-app-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .ph-app-icon svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .ph-app-icon.onboarding { background: linear-gradient(135deg, #B07A6E, #C34E45); }
  .ph-app-icon.payroll { background: linear-gradient(135deg, var(--olive-mid), var(--olive-deep)); }
  .ph-app-icon.payroll svg { stroke: var(--accent); }
  .ph-app-info { flex: 1; min-width: 0; }
  .ph-app-name { font-size: 0.8rem; font-weight: 600; color: var(--text); }
  .ph-app-tasks {
    font-size: 0.7rem;
    color: var(--warn);
    margin-top: 0.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }
  .ph-app-tasks::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--warn);
  }
  .ph-app-cta {
    padding: 0.4rem 0.85rem;
    background: var(--olive-deep);
    color: var(--accent);
    border: none;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
  }

  .ph-bottom-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0.6rem 0.5rem 0.85rem;
    border-top: 1px solid var(--border);
    background: var(--surface);
    flex-shrink: 0;
  }
  .ph-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-faint);
  }
  .ph-nav-item svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .ph-nav-item.is-active { color: var(--olive-deep); }

  /* Chat-Screen */
  .ph-chat-title {
    padding: 0 1.25rem 0.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    flex-shrink: 0;
  }
  .ph-chat-stream {
    flex: 1;
    padding: 0.5rem 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    overflow: hidden;
  }
  .ph-msg {
    max-width: 78%;
    padding: 0.55rem 0.85rem;
    border-radius: 16px;
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .ph-msg.user {
    align-self: flex-end;
    background: var(--olive-deep);
    color: var(--accent);
    border-bottom-right-radius: 5px;
  }
  .ph-msg.ai {
    align-self: flex-start;
    background: var(--bg-warm);
    color: var(--text);
    border-bottom-left-radius: 5px;
  }
  .ph-msg .ph-msg-strong { color: var(--olive-deep); font-weight: 700; }
  .ph-msg ul {
    margin: 0.4rem 0 0.4rem;
    padding-left: 1rem;
    font-size: 0.72rem;
    color: var(--text-2);
  }
  .ph-msg ul li { margin: 0.1rem 0; }
  .ph-msg .ph-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.4rem;
    color: var(--olive-deep);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--olive-soft);
    padding-bottom: 1px;
  }
  .ph-typing {
    align-self: flex-start;
    display: flex;
    gap: 4px;
    padding: 0.6rem 0.85rem;
    background: var(--bg-warm);
    border-radius: 16px;
    border-bottom-left-radius: 5px;
  }
  .ph-typing span {
    width: 6px; height: 6px;
    background: var(--text-faint);
    border-radius: 50%;
    animation: typingDot 1.4s ease-in-out infinite;
  }
  .ph-typing span:nth-child(2) { animation-delay: 0.2s; }
  .ph-typing span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes typingDot {
    0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-2px); }
  }
  .ph-chat-input {
    margin: 0 1rem 0.85rem;
    padding: 0.65rem 0.85rem;
    background: var(--bg-warm);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-faint);
    flex-shrink: 0;
  }
  .ph-chat-input .ph-send {
    width: 26px; height: 26px;
    background: var(--olive-deep);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ph-chat-input .ph-send svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

  /* Animierter Chat-Stream (phone-back) — Bubbles wachsen nacheinander rein */
  .phone-back .ph-chat-stream { gap: 0; }
  .phone-back .ph-msg,
  .phone-back .ph-typing {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    transform: translateY(4px);
    transition:
      opacity 0.35s ease-out,
      max-height 0.45s ease-out,
      margin-top 0.45s ease-out,
      padding 0.4s ease-out,
      transform 0.35s ease-out;
  }
  .phone-back .ph-msg.is-shown {
    opacity: 1;
    max-height: 220px;
    margin-top: 0.6rem;
    padding: 0.55rem 0.85rem;
    transform: none;
  }
  .phone-back .ph-typing.is-active {
    opacity: 1;
    max-height: 40px;
    margin-top: 0.6rem;
    padding: 0.6rem 0.85rem;
    transform: none;
  }
  .phone-back .ph-chat-stream > .is-shown:first-child,
  .phone-back .ph-chat-stream > .is-active:first-child { margin-top: 0; }

  /* Mobile: nur Chat-Phone zeigen (KI-Animation = Star), Home-Phone ausblenden */
  @media (max-width: 900px) {
    .ma-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .ma-mockup {
      height: auto;
      max-width: none;
      margin: 0;
      display: flex;
      justify-content: center;
      padding: 1rem 0 0.5rem;
    }
    .ma-mockup::before { display: none; }
    .ma-phone.phone-front { display: none; }
    .ma-phone.phone-back {
      position: static;
      width: 290px;
      height: 580px;
      transform: none;
      opacity: 1;
      top: auto; left: auto; bottom: auto; right: auto;
    }
    .ma-cta { margin-bottom: 0.5rem; }
  }
  @media (max-width: 380px) {
    .ma-phone.phone-back { width: 270px; height: 540px; }
  }

  /* ============================================================
     STATS BLADE
     ============================================================ */
  .stats-blade {
    background: linear-gradient(180deg, var(--olive-deep) 0%, var(--text) 100%);
    border-radius: var(--r-xl);
    padding: 4rem 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .stats-blade::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
    opacity: 0.16;
    pointer-events: none;
    animation: pulseOp 8s ease-in-out infinite;
  }
  .stats-blade::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--olive-mid) 0%, transparent 60%);
    opacity: 0.4;
    pointer-events: none;
    animation: pulseOp 11s ease-in-out infinite -3s;
  }
  .stats-blade .container { z-index: 2; padding: 0; max-width: none; }
  .stats-blade .label { color: var(--accent); }
  .stats-blade h2 { color: #fff; max-width: 720px; margin-bottom: 3rem; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .stat-cell { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.5rem; }
  .stat-num {
    font-family: 'Geist', sans-serif;
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
  }
  .stat-num .unit { font-size: 0.5em; color: var(--olive-soft); margin-left: 0.15em; font-weight: 500; }
  .stat-lbl { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.4; }

  /* ============================================================
     EVENT-STREAM — Particle-Flow (smooth, no static lines)
     ============================================================ */
  .event-canvas {
    position: relative;
    height: 580px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    margin-top: 4rem;
    isolation: isolate;
  }
  .event-canvas::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% 50%, var(--bloom-sage) 0%, transparent 50%),
      radial-gradient(circle at 30% 70%, var(--bloom-mist) 0%, transparent 40%);
    opacity: 0.35;
    pointer-events: none;
    animation: pulseOp 10s ease-in-out infinite;
  }

  .event-center {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    background: linear-gradient(135deg, var(--olive-deep) 0%, var(--text) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow:
      var(--shadow-lg),
      0 0 0 12px rgba(45, 74, 42, 0.05),
      0 0 0 36px rgba(45, 74, 42, 0.025),
      0 0 0 64px rgba(45, 74, 42, 0.012);
    z-index: 5;
    text-align: center;
  }
  .event-center .glyph {
    width: 28px; height: 28px;
    color: var(--accent);
    margin-bottom: 0.4rem;
  }
  .event-center .glyph svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 1.75; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .event-center .name { font-weight: 600; font-size: 1rem; line-height: 1.1; }
  .event-center .desc { font-size: 0.7rem; color: rgba(255,255,255,0.65); margin-top: 0.25rem; }

  /* Subtiler pulsierender Halo um den Ball (kein Dashed-Ring mehr) */
  .event-center::after {
    content: '';
    position: absolute;
    inset: -50px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 48%, rgba(199, 255, 61, 0.08) 60%, transparent 78%);
    animation: haloPulse 5s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
  }
  @keyframes haloPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50%      { transform: scale(1.18); opacity: 0.3; }
  }

  /* Static event-cards (always visible, kein cycle) */
  .es-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 0.6rem 0.95rem;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .es-card .ec-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--olive-mid);
    flex-shrink: 0;
  }
  .es-card.task {
    background: var(--olive-deep);
    color: #fff;
    border-color: var(--olive-deep);
  }
  .es-card.task .ec-dot { background: var(--accent); }

  .es-1 { top: 12%;   left: 6%; }
  .es-2 { top: 22%;   right: 6%; }
  .es-3 { bottom: 22%; left: 4%; }
  .es-4 { bottom: 12%; right: 8%; }
  .es-5 { top: 50%; left: 3%; }
  .es-task-1 { top: 28%; left: 28%; }
  .es-task-2 { top: 70%; left: 28%; }
  .es-task-3 { top: 26%; right: 26%; }
  .es-task-4 { bottom: 26%; right: 26%; }

  /* PARTICLES — fliessen smooth von Event durch Center zu Task
     Etwas grösser + heller damit sie auch ohne Lines klar lesbar sind */
  .particle {
    position: absolute;
    width: 11px; height: 11px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 24px var(--accent), 0 0 8px var(--accent), 0 0 2px #fff inset;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    will-change: transform, opacity;
  }
  /* Particle-Pfade — sequenziell, ein Event-zu-Task-Flow nach dem anderen
     Total-Loop 16s, 4s pro Wave, 1 Wave = 1 Particle visible */
  .p-1 { animation: pPath1 16s ease-in-out infinite; animation-delay: 0s; }
  .p-2 { animation: pPath2 16s ease-in-out infinite; animation-delay: 3.2s; }
  .p-3 { animation: pPath3 16s ease-in-out infinite; animation-delay: 6.4s; }
  .p-4 { animation: pPath4 16s ease-in-out infinite; animation-delay: 9.6s; }
  .p-5 { animation: pPath5 16s ease-in-out infinite; animation-delay: 12.8s; }

  /* Particle-Pfade — Animation läuft 4s (von 16s Loop), Rest unsichtbar
     0-25% = aktiv (4s), 25-100% = unsichtbar (12s wartet auf nächste Wave) */

  @keyframes pPath1 {
    0%   { left: 13%; top: 17%; opacity: 0; transform: scale(0.6); }
    2%   { opacity: 1; transform: scale(1); }
    11%  { left: 50%; top: 50%; opacity: 1; transform: scale(1.5); }
    13%  { left: 50%; top: 50%; opacity: 0.85; transform: scale(1); }
    23%  { left: 32%; top: 33%; opacity: 1; }
    25%  { opacity: 0; transform: scale(0.6); }
    100% { opacity: 0; }
  }
  @keyframes pPath2 {
    0%   { left: 87%; top: 27%; opacity: 0; transform: scale(0.6); }
    2%   { opacity: 1; transform: scale(1); }
    11%  { left: 50%; top: 50%; opacity: 1; transform: scale(1.5); }
    13%  { left: 50%; top: 50%; opacity: 0.85; transform: scale(1); }
    23%  { left: 70%; top: 31%; opacity: 1; }
    25%  { opacity: 0; transform: scale(0.6); }
    100% { opacity: 0; }
  }
  @keyframes pPath3 {
    0%   { left: 11%; top: 75%; opacity: 0; transform: scale(0.6); }
    2%   { opacity: 1; transform: scale(1); }
    11%  { left: 50%; top: 50%; opacity: 1; transform: scale(1.5); }
    13%  { left: 50%; top: 50%; opacity: 0.85; transform: scale(1); }
    23%  { left: 32%; top: 73%; opacity: 1; }
    25%  { opacity: 0; transform: scale(0.6); }
    100% { opacity: 0; }
  }
  @keyframes pPath4 {
    0%   { left: 89%; top: 80%; opacity: 0; transform: scale(0.6); }
    2%   { opacity: 1; transform: scale(1); }
    11%  { left: 50%; top: 50%; opacity: 1; transform: scale(1.5); }
    13%  { left: 50%; top: 50%; opacity: 0.85; transform: scale(1); }
    23%  { left: 71%; top: 73%; opacity: 1; }
    25%  { opacity: 0; transform: scale(0.6); }
    100% { opacity: 0; }
  }
  @keyframes pPath5 {
    0%   { left: 8%; top: 53%; opacity: 0; transform: scale(0.6); }
    2%   { opacity: 1; transform: scale(1); }
    11%  { left: 50%; top: 50%; opacity: 1; transform: scale(1.5); }
    13%  { left: 50%; top: 50%; opacity: 0.85; transform: scale(1); }
    23%  { left: 71%; top: 73%; opacity: 1; }
    25%  { opacity: 0; transform: scale(0.6); }
    100% { opacity: 0; }
  }

  .event-legend {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    font-size: 0.78rem;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    z-index: 6;
  }
  .event-legend .lg-item { display: flex; align-items: center; gap: 0.45rem; color: var(--text-muted); }
  .event-legend .sw {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    position: relative;
    flex-shrink: 0;
  }
  .event-legend .sw::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--olive-mid);
  }
  .event-legend .sw.task { background: var(--olive-deep); border-color: var(--olive-deep); }
  .event-legend .sw.task::after { background: var(--accent); box-shadow: 0 0 6px var(--accent-glow); }

  /* ============================================================
     PRICING — neue Anordnung: Price + 2x3 Feature-Grid
     ============================================================ */
  .pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow);
    padding: 3rem;
    position: relative;
    overflow: hidden;
  }
  .pricing-card::before {
    content: '';
    position: absolute;
    top: -250px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--bloom-sage) 0%, transparent 60%);
    opacity: 0.45;
    pointer-events: none;
    animation: pulseOp 10s ease-in-out infinite;
  }
  .pricing-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2.5rem;
  }
  .pricing-headline {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.6rem;
  }
  .pricing-num {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .pricing-num .currency { font-size: 1.4rem; font-weight: 500; color: var(--text-muted); }
  .pricing-num .amount {
    font-family: 'Geist', sans-serif;
    font-size: clamp(4rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 0.9;
    color: var(--olive-deep);
    letter-spacing: -0.05em;
    font-variant-numeric: tabular-nums;
  }
  .pricing-num .per { font-size: 1rem; color: var(--text-muted); margin-left: 0.4rem; }
  .pricing-meta { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
  .pricing-meta strong { color: var(--text); font-weight: 600; }

  .pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    position: relative;
    z-index: 2;
  }
  .pf-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1.1rem;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    transition: all 0.2s;
  }
  .pf-item:hover { border-color: var(--olive-soft); background: #fff; }
  .pf-ico {
    width: 26px; height: 26px;
    background: var(--olive-deep);
    color: #fff;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .pf-ico svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; display: block; }
  .pf-text { font-size: 0.88rem; color: var(--text-2); line-height: 1.4; }

  /* ============================================================
     COMPARISON TABLE — payrollnow vs. klassisches Outsourcing
     ============================================================ */
  .comp-wrap { margin-top: 4rem; position: relative; }
  .comp-bg-blob {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--bloom-sage) 0%, transparent 65%);
    opacity: 0.4;
    filter: blur(80px);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    animation: pulseOp 10s ease-in-out infinite;
  }
  .comp-table {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.85fr 1.4fr 1.1fr;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .comp-cat-head, .comp-us-head, .comp-them-head {
    padding: 1.5rem 1.6rem;
    border-bottom: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
  }
  .comp-cat-head { background: var(--bg-warm); }
  .comp-us-head {
    background: var(--olive-deep);
    color: #fff;
    justify-content: center;
    gap: 0.6rem;
    font-size: 1.05rem;
    font-weight: 600;
    position: relative;
  }
  .comp-us-head::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--olive-mid) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
  }
  .comp-us-head > * { position: relative; z-index: 2; }
  .comp-us-head .comp-logo {
    width: 26px; height: 26px;
    border-radius: 7px;
    background: var(--accent);
    color: var(--olive-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .comp-us-head .comp-logo svg { width: 13px; height: 13px; fill: currentColor; }
  .comp-them-head {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--bg-warm);
  }
  .comp-cat {
    padding: 1.5rem 1.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--olive-deep);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-top: 1px solid var(--border);
    background: var(--bg-warm);
    display: flex;
    align-items: center;
  }
  .comp-us {
    padding: 1.5rem 1.6rem;
    background: var(--olive-faint);
    border-top: 1px solid rgba(45, 74, 42, 0.15);
    position: relative;
  }
  .comp-us::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--olive-deep);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .comp-us:hover::before { opacity: 1; }
  .comp-us h4 {
    color: var(--olive-deep);
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    line-height: 1.2;
  }
  .comp-us h4 .check-ico {
    width: 18px; height: 18px;
    background: var(--olive-deep);
    color: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .comp-us h4 .check-ico svg { width: 10px; height: 10px; stroke: currentColor; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .comp-us p {
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.5;
    padding-left: 26px;
  }
  .comp-them {
    padding: 1.5rem 1.6rem;
    border-top: 1px solid var(--border);
  }
  .comp-them h4 {
    color: var(--text-2);
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    line-height: 1.2;
  }
  .comp-them h4 .x-ico {
    width: 18px; height: 18px;
    background: var(--bg-warm);
    color: var(--text-muted);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-strong);
  }
  .comp-them h4 .x-ico svg { width: 10px; height: 10px; stroke: currentColor; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .comp-them p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-faint);
    padding-left: 26px;
  }
  @media (max-width: 800px) {
    .comp-table {
      grid-template-columns: 1fr;
      box-shadow: none;
      border: none;
      background: transparent;
    }
    .comp-cat-head, .comp-us-head, .comp-them-head { display: none; }
    .comp-cat {
      padding: 1.5rem 1rem 0.75rem;
      background: transparent;
      border-top: none;
      margin-top: 1rem;
    }
    .comp-us, .comp-them {
      padding: 1rem 1.25rem;
      border-radius: var(--r);
      margin: 0 0.5rem 0.75rem;
      border: 1px solid var(--border);
    }
    .comp-us {
      background: var(--olive-faint);
      border-color: var(--olive-soft);
    }
    .comp-them {
      background: var(--surface);
    }
    .comp-us p, .comp-them p { padding-left: 0; }
  }

  /* ============================================================
     CONTACT-FORMULAR / DEMO BUCHEN
     ============================================================ */
  .contact-section {
    background: linear-gradient(135deg, var(--olive-deep) 0%, var(--text) 100%);
    color: #fff;
    position: relative;
    overflow: clip;
  }
  .contact-bg-blob {
    position: absolute;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
    opacity: 0.15;
    filter: blur(80px);
    top: -400px;
    right: -300px;
    pointer-events: none;
    animation: pulseOp 12s ease-in-out infinite;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
  }
  .contact-text { padding-top: 1rem; }
  .contact-bullets {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .contact-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
  }
  .cb-ico {
    width: 22px; height: 22px;
    background: var(--accent);
    color: var(--olive-deep);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .cb-ico svg { width: 11px; height: 11px; display: block; }

  .contact-form {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .form-field { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-field label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.02em;
  }
  .form-field input,
  .form-field select {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--r-sm);
    padding: 0.85rem 1rem;
    color: #fff;
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    transition: all 0.2s;
    appearance: none;
    -webkit-appearance: none;
  }
  .form-field input::placeholder { color: rgba(255,255,255,0.35); }
  .form-field input:hover, .form-field select:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.09);
  }
  .form-field input:focus, .form-field select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(199, 255, 61, 0.15);
  }
  .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
  }
  .form-field select option {
    background: var(--olive-deep);
    color: #fff;
  }
  .form-submit {
    margin-top: 0.5rem;
    background: var(--accent);
    color: var(--olive-deep);
    border: none;
    border-radius: var(--r);
    padding: 1rem 1.5rem;
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(199, 255, 61, 0.3);
  }
  .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(199, 255, 61, 0.45);
  }
  .form-submit svg { transition: transform 0.3s; }
  .form-submit:hover svg { transform: translateX(4px); }
  .form-privacy {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
  }
  .form-privacy a { color: rgba(255,255,255,0.85); text-decoration: underline; }
  .form-privacy a:hover { color: var(--accent); }

  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 1.5rem; }
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  footer.mesh {
    background: var(--olive-deep);
    color: #fff;
    padding: 6rem 1.5rem 3rem;
    position: relative;
    overflow: clip;
  }
  footer.mesh::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 15% 20%, var(--olive-mid) 0%, transparent 45%),
      radial-gradient(circle at 85% 50%, rgba(199, 255, 61, 0.15) 0%, transparent 40%),
      radial-gradient(circle at 50% 90%, var(--text) 0%, transparent 55%);
    pointer-events: none;
    animation: pulseOp 12s ease-in-out infinite;
  }
  footer.mesh .container { z-index: 2; max-width: 1100px; }
  .footer-mega {
    font-family: 'Geist', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.95;
    color: #fff;
    margin-bottom: 3rem;
  }
  .footer-mega .grad {
    background: linear-gradient(120deg, var(--accent) 0%, var(--olive-soft) 50%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  /* ============================================================
     FAQ — Accordion (page-spezifisch, globaler Style)
     Schema.org FAQPage Markup separat im <head> als JSON-LD
     ============================================================ */
  .faq-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    gap: 4rem;
    align-items: start;
  }
  .faq-intro { position: sticky; top: 6rem; }
  .faq-intro .lead { margin-top: 1.5rem; max-width: 380px; }
  .faq-intro .faq-help {
    margin-top: 2rem;
    padding: 1.25rem 1.4rem;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--r);
  }
  .faq-intro .faq-help h4 { margin: 0 0 0.4rem; font-size: 0.95rem; font-weight: 600; }
  .faq-intro .faq-help p { margin: 0 0 0.85rem; font-size: 0.85rem; color: var(--text-muted); }

  .faq-list { display: flex; flex-direction: column; }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 0;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-family: inherit;
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--olive-deep); }
  .faq-icon {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--bg-warm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--olive-deep);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.5), background 0.2s;
  }
  .faq-icon svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; }
  .faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s ease-out, opacity 0.3s ease-out, padding 0.4s ease-out;
    padding: 0 0 0;
  }
  .faq-item.is-open .faq-answer {
    max-height: 600px;
    opacity: 1;
    padding: 0 0 1.4rem;
  }
  .faq-answer p { margin: 0; color: var(--text-2); line-height: 1.7; max-width: 60ch; }
  .faq-answer p + p { margin-top: 0.85rem; }
  @media (max-width: 900px) {
    .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
    .faq-intro { position: static; }
    .faq-question { font-size: 0.98rem; padding: 1.2rem 0; gap: 1rem; }
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .footer-col h5 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    font-weight: 600;
  }
  .footer-col a {
    display: block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--accent); }
  .footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    flex-wrap: wrap;
    gap: 1rem;
  }
  @media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 900px) {
    .ui-grid { grid-template-columns: 1fr; gap: 3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-num .amount { font-size: 4.5rem; }
    .pricing-top { grid-template-columns: 1fr; gap: 2rem; }
    .pricing-features-grid { grid-template-columns: 1fr; }
  }

  /* ============================================================
     Mobile-Polish (≤768px)
     ============================================================ */
  @media (max-width: 768px) {
    section { padding: 4rem 1.5rem; }

    /* Hero kompakter */
    .hero { padding: 4rem 1.5rem 4rem; }
    .hero h1 { font-size: clamp(2.25rem, 9vw, 3rem); }
    .hero-sub { font-size: 0.95rem; }
    .hero-cta {
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }
    .hero-cta .btn-primary {
      width: 100%;
      justify-content: center;
      padding: 1.05rem 1.4rem;
    }
    .hero-cta .btn-link {
      width: 100%;
      justify-content: center;
      text-align: center;
      padding: 0.95rem 1.4rem;
      border-radius: var(--r);
      border: 1.5px solid var(--border-strong);
      background: transparent;
    }
    .hero-cta .btn-link::after { display: none; }
    .hero-cta .btn-link:hover { background: var(--bg-warm); border-color: var(--olive-deep); }
    .hero-trust-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
      padding-top: 1rem;
      margin-top: 1rem;
      border-top: 1px solid var(--border);
    }
    .hero-trust-row .it {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.5rem;
      font-size: 0.7rem;
      line-height: 1.3;
      padding: 0.95rem 0.5rem;
      background: var(--bg-warm);
      border: 1px solid var(--border);
      border-radius: var(--r);
    }
    .hero-trust-row .it .ic {
      width: 32px; height: 32px;
      background: var(--surface);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
      color: var(--olive-deep);
    }
    .hero-trust-row .it .ic svg { width: 14px; height: 14px; }
    /* Mobile: Swissdec-Pill als Card-Variante, grün hervorgehoben */
    .hero-trust-row .it.is-cert {
      background: rgba(199, 255, 61, 0.18);
      border: 1px solid rgba(45, 74, 42, 0.18);
      border-radius: var(--r);
      padding: 0.95rem 0.5rem;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.5rem;
      font-size: 0.7rem;
      line-height: 1.3;
      font-weight: 600;
      color: var(--olive-deep);
    }
    .hero-trust-row .it.is-cert .ic {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--olive-deep);
      box-shadow: 0 4px 10px -2px rgba(199, 255, 61, 0.45);
    }
    .hero-pre { font-size: 0.72rem; padding: 0.4rem 0.75rem 0.4rem 0.5rem; }
    .activity-card { max-width: 100%; min-height: 0; /* height set dynamic by JS */ }
    .afe-head { padding: 0.85rem 0.95rem; }
    .afe-head-l { font-size: 0.78rem; gap: 0.45rem; }
    .afe-head-r { font-size: 0.65rem; }
    .afe-pills { padding: 0.65rem 0.85rem; gap: 0.3rem; }
    .afe-pill { padding: 0.4rem 0.7rem; font-size: 0.7rem; }
    .afe-body { padding: 0.85rem; }
    .afe-event { padding: 0.8rem 0.9rem; }
    .afe-ev-head { font-size: 0.78rem; }
    .afe-ev-head .time { font-size: 0.65rem; }
    .afe-tasks { gap: 0.55rem; padding-left: 0.85rem; }
    .afe-task { font-size: 0.74rem; gap: 0.45rem; }
    .afe-task .pill-mini { font-size: 0.6rem; padding: 0.15rem 0.45rem; }
    .afe-summary { font-size: 0.72rem; padding: 0.7rem 0.85rem; gap: 0.5rem; }

    /* Marquee kompakter */
    .marquee-item { font-size: 0.85rem; }

    /* Browser-Mockup — Cards bleiben 3-spaltig, kompakt + overflow-safe */
    .mockup-wrap { perspective: none; margin-top: 2.5rem; }
    .browser-frame { transform: none; min-height: auto; border-radius: var(--r); width: 100%; max-width: 100%; box-sizing: border-box; overflow: hidden; }
    .browser-chrome { padding: 0.55rem 0.7rem; gap: 0.3rem; }
    .browser-chrome .browser-dot { width: 8px; height: 8px; }
    .browser-url { font-size: 0.62rem; padding: 0.22rem 0.55rem; max-width: 140px; margin: 0 0.4rem; min-width: 0; }
    .browser-url .ic { width: 10px; height: 10px; }
    .browser-meta { font-size: 0.55rem; white-space: nowrap; }
    .browser-body { display: flex; flex-direction: column; min-height: auto; }
    /* Sidebar wird horizontaler Pill-Nav am Top des Body */
    .browser-sidebar {
      display: flex;
      flex-direction: row;
      gap: 0.35rem;
      padding: 0.65rem 0.85rem;
      border-right: none;
      border-bottom: 1px solid var(--border);
      overflow-x: auto;
      scrollbar-width: none;
      align-items: center;
    }
    .browser-sidebar::-webkit-scrollbar { display: none; }
    .sidebar-org-row { display: none; }
    .sidebar-section { display: none; }
    .sidebar-item {
      flex-shrink: 0;
      margin-bottom: 0;
      padding: 0.4rem 0.7rem;
      font-size: 0.7rem;
      border-radius: 999px;
      white-space: nowrap;
      gap: 0.4rem;
    }
    .sidebar-item .lbl-row { gap: 0.4rem; }
    .sidebar-item .ic { width: 13px; height: 13px; opacity: 0.85; }
    .sidebar-item .ic svg { width: 13px; height: 13px; }
    .sidebar-item .badge-num {
      font-size: 0.6rem;
      padding: 0.05rem 0.35rem;
      min-width: 16px;
      margin-left: 0.35rem;
    }
    .browser-main { padding: 1.1rem 0.9rem 0.85rem; min-width: 0; }
    .browser-greeting { font-size: 1.15rem; line-height: 1.15; }
    .browser-sub { font-size: 0.75rem; margin-bottom: 0.9rem; }
    .command-bar { padding: 0.6rem 0.75rem; font-size: 0.75rem; margin-bottom: 1rem; }
    .command-bar .left { flex: 1; min-width: 0; gap: 0.45rem; }
    .command-bar .left span:last-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; min-width: 0; }
    .command-bar .ic { flex-shrink: 0; }
    .browser-cards { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
    .b-card { padding: 0.6rem 0.5rem; min-width: 0; overflow: hidden; }
    .b-card .lbl { font-size: 0.5rem; letter-spacing: 0.06em; margin-bottom: 0.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .b-card .val { font-size: 1rem; margin-bottom: 0.2rem; white-space: nowrap; }
    .b-card .sub { font-size: 0.55rem; line-height: 1.3; word-wrap: break-word; }

    /* Event-Stream — vertikales Stack-Layout für Mobile */
    .event-canvas {
      height: auto !important;
      min-height: 0;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      padding: 1.5rem 1rem 1.25rem;
      border-radius: var(--r);
    }
    .event-canvas::before { display: none; }
    .particle { display: none; }
    .es-card {
      position: relative !important;
      top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
      max-width: 100%;
      width: 100%;
      padding: 0.7rem 1rem;
      font-size: 0.82rem;
      box-sizing: border-box;
    }
    .es-1 { order: 1; }
    .es-2 { order: 2; }
    .es-3 { order: 3; }
    .es-4 { order: 4; }
    .es-5 { order: 5; display: flex; }
    .event-center {
      position: relative;
      transform: none;
      left: auto; top: auto;
      width: 100%;
      height: auto;
      min-height: 0;
      border-radius: var(--r);
      padding: 1.1rem 1.4rem;
      margin: 0.6rem 0;
      flex-direction: row;
      justify-content: center;
      gap: 0.85rem;
      box-shadow: var(--shadow), 0 0 0 4px rgba(199, 255, 61, 0.1);
      order: 6;
    }
    .event-center::after { display: none; }
    .event-center .glyph { margin-bottom: 0; }
    .event-center .glyph svg { width: 24px; height: 24px; }
    .event-center .name { font-size: 1rem; }
    .event-center .desc { font-size: 0.7rem; margin-top: 0; }
    .es-task-1 { order: 7; }
    .es-task-2 { order: 8; }
    .es-task-3 { order: 9; }
    .es-task-4 { order: 10; }
    .event-legend {
      position: relative;
      transform: none;
      bottom: auto; left: auto;
      order: 11;
      margin-top: 0.5rem;
      align-self: center;
      font-size: 0.7rem;
      padding: 0.4rem 0.85rem;
      gap: 0.85rem;
      flex-wrap: wrap;
      justify-content: center;
      max-width: 100%;
    }

    /* Event-Flow Steps — alle Steps in einer Card gestapelt (Mobile) */
    .step-row {
      grid-template-columns: none;
      display: flex;
      flex-direction: column;
      overflow: visible;
      gap: 0;
      padding: 0;
      margin: 0;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-sm);
    }
    .step-tile {
      flex-shrink: 1;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      background: transparent;
      border: none;
      border-radius: 0;
      border-bottom: 1px solid var(--border);
      padding: 1.25rem 1.25rem 1.1rem;
      min-height: auto;
      box-shadow: none;
    }
    .step-tile:last-child { border-bottom: none; }
    .step-tile:hover {
      transform: none;
      box-shadow: none;
      border-color: transparent;
      border-bottom-color: var(--border);
      background: var(--bg-warm);
    }
    .step-tile:last-child:hover { border-bottom: none; }
    .step-num { margin-bottom: 0.5rem; }
    .step-tile h4 { font-size: 1rem; margin-bottom: 0.4rem; }
    .step-tile p { font-size: 0.85rem; }
    .step-tile .step-tag { margin-top: 0.65rem; }

    /* Comparison — Cards visuell verbunden statt separat */
    .comp-cat { padding: 1.25rem 0.85rem 0.5rem; margin-top: 0.5rem; }
    .comp-us {
      margin: 0 0.4rem 0;
      padding: 1rem 1rem 0.85rem;
      border-radius: var(--r) var(--r) 0 0;
      border: 1px solid var(--olive-soft);
      border-bottom: none;
    }
    .comp-them {
      margin: 0 0.4rem 0.85rem;
      padding: 0.85rem 1rem 1rem;
      border-radius: 0 0 var(--r) var(--r);
      border: 1px solid var(--border);
      border-top: 1px dashed var(--border-strong);
    }
    .comp-us h4, .comp-them h4 { font-size: 0.95rem; }
    .comp-us p, .comp-them p { font-size: 0.82rem; padding-left: 0; }

    /* Bento mobile */
    .bundle-card { padding: 1.5rem 1.4rem; }
    .bundle-card.large h3 { font-size: clamp(1.6rem, 7vw, 2rem); max-width: 100%; }
    .bundle-card.large p { max-width: 100%; font-size: 0.95rem; }

    /* Comparison Table — bereits gut, kleine Anpassung */
    .comp-cat { padding: 1.25rem 0.85rem 0.6rem; }
    .comp-us, .comp-them { padding: 0.85rem 1rem; margin: 0 0.4rem 0.6rem; }
    .comp-us h4, .comp-them h4 { font-size: 0.95rem; }
    .comp-us p, .comp-them p { font-size: 0.82rem; padding-left: 0; }

    /* Event-Flow Tabs scrollbar */
    .event-tabs { padding: 0.3rem; gap: 0.3rem; flex-wrap: nowrap; overflow-x: auto; max-width: calc(100vw - 2.5rem); scrollbar-width: none; }
    .event-tabs::-webkit-scrollbar { display: none; }
    .event-tab { padding: 0.5rem 0.85rem; font-size: 0.78rem; white-space: nowrap; flex-shrink: 0; }

    /* Pricing-Features 2-spaltig auf Mobile */
    .pricing-features-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .pf-item { padding: 0.7rem 0.8rem; gap: 0.6rem; }
    .pf-text { font-size: 0.8rem; }
    .pf-ico { width: 22px; height: 22px; }

    /* Stats Blade kompakter */
    .stats-blade { padding: 2.5rem 1.5rem; border-radius: var(--r-lg); }

    /* Footer */
    .footer-mega { font-size: clamp(2.5rem, 9vw, 4rem); }

    /* Pigmentflecken kleiner */
    .blob { filter: blur(70px); }
    .blob-1 { width: 380px; height: 380px; }
    .blob-2 { width: 320px; height: 320px; }
    .blob-3 { width: 300px; height: 300px; }
    .blob-4 { width: 240px; height: 240px; }
  }

  /* ============================================================
     Sehr-Mobile (≤480px)
     ============================================================ */
  @media (max-width: 480px) {
    section { padding: 3.5rem 1.25rem; }
    .hero { padding: 3rem 1.25rem 3.5rem; }
    .hero h1 { font-size: clamp(2rem, 9vw, 2.5rem); }
    .nav-inner { padding: 0.85rem 1rem; gap: 0.75rem; }
    .nav-brand { font-size: 1rem; }
    .activity-card { min-height: 0; /* height dynamic */ }
    .browser-cards { grid-template-columns: repeat(3, 1fr); gap: 0.35rem; }
    .b-card { padding: 0.5rem 0.4rem; }
    .b-card .val { font-size: 0.9rem; }
    .b-card .lbl { font-size: 0.46rem; }
    .b-card .sub { font-size: 0.5rem; line-height: 1.3; }
    .browser-main { padding: 1rem 0.75rem 0.75rem; }
    .browser-url { max-width: 110px; font-size: 0.58rem; }
    .browser-meta { display: none; }
    .pricing-features-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 1.5rem 1.25rem; }
    .es-card { font-size: 0.78rem; padding: 0.6rem 0.85rem; }
    .event-canvas { padding: 1.25rem 0.85rem 1rem; }
    .event-center { padding: 0.95rem 1.2rem; }
    .event-center .glyph svg { width: 22px; height: 22px; }
    .event-center .name { font-size: 0.95rem; }
    .event-center .desc { font-size: 0.65rem; }
    .step-tile { width: 100%; min-width: 0; padding: 1rem 1.1rem; }
    /* Contact section bekommt mehr Padding für Atmen */
    .contact-section { padding: 3.5rem 1.5rem; }
  }

/* ============================================================
   EMBED-CALCULATOR — Mini-Rechner auf jeder Page
   Globaler Block, gleicher Look überall
   ============================================================ */
.ec-section {
  background: var(--bg);
}
.ec-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 1px 2px rgba(14,20,14,0.04),
    0 30px 60px -20px rgba(14,20,14,0.14);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.ec-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}
.ec-head {
  padding: 2.5rem 2.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-warm) 0%, transparent 100%);
}
.ec-head .label { color: var(--olive-mid); }
.ec-head h3 {
  margin: 0.85rem 0 0.55rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.ec-head p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.ec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ec-input-side {
  padding: 2.25rem 2.25rem;
  background: var(--bg-warm);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ec-output-side {
  padding: 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.ec-input-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--olive-mid);
  margin-bottom: 0.5rem;
}
.ec-display {
  text-align: center;
  margin: 0.5rem 0 1.5rem;
}
.ec-display-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--olive-deep);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ec-display-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.ec-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(45,74,42,0.12);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  margin: 0;
}
.ec-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--olive-deep);
  border: 4px solid var(--accent);
  cursor: grab;
  box-shadow: 0 4px 12px rgba(45,74,42,0.35);
  transition: transform 0.15s, box-shadow 0.2s;
}
.ec-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(45,74,42,0.45);
}
.ec-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--olive-deep);
  border: 4px solid var(--accent);
  cursor: grab;
}
.ec-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-top: 0.7rem;
  font-family: 'Geist Mono', monospace;
}

.ec-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.ec-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.ec-row-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-2);
}
.ec-row-label small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.1rem;
}
.ec-row-value {
  font-size: 1.25rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  white-space: nowrap;
}
.ec-row.is-total {
  background: var(--olive-deep);
  margin: 0.75rem -2.25rem -2.25rem;
  padding: 1.5rem 2.25rem;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.1rem;
}
.ec-row.is-total .ec-total-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.ec-row.is-total .ec-row-label { color: var(--accent); font-weight: 700; }
.ec-row.is-total .ec-row-label small { color: rgba(199,255,61,0.65); }
.ec-row.is-total .ec-row-value { color: #fff; font-size: 1.5rem; }

.ec-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  background: var(--accent);
  color: var(--olive-deep);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  align-self: flex-start;
  white-space: nowrap;
}
.ec-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--accent-glow);
}
.ec-cta-link svg {
  width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s;
}
.ec-cta-link:hover svg { transform: translateX(3px); }

@media (max-width: 760px) {
  .ec-grid { grid-template-columns: 1fr; }
  .ec-input-side { border-right: none; border-bottom: 1px solid var(--border); padding: 1.75rem 1.5rem; }
  .ec-output-side { padding: 1.75rem 1.5rem; }
  .ec-head { padding: 2rem 1.5rem 1.25rem; }
  .ec-head h3 { font-size: 1.25rem; }
  .ec-display-num { font-size: 2.75rem; }
  .ec-row.is-total { margin: 0.5rem -1.5rem -1.75rem; padding: 1.1rem 1.5rem; }
  .ec-row.is-total .ec-row-value { font-size: 1.3rem; }
}

/* ============================================================
   FLOAT-CTA — globaler Scroll-Trigger zum Preisrechner
   ============================================================ */
.float-cta {
  display: inline-flex;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--olive-deep);
  color: #fff;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(45, 74, 42, 0.4), 0 0 0 6px rgba(199, 255, 61, 0.15);
  z-index: 40;
  align-items: center;
  gap: 0.55rem;
  transform: translateY(120px) scale(0.85);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.3, 1.5), opacity 0.35s ease, box-shadow 0.3s ease;
  pointer-events: none;
}
.float-cta:hover {
  box-shadow: 0 18px 40px rgba(45, 74, 42, 0.5), 0 0 0 8px rgba(199, 255, 61, 0.18);
}
.float-cta-icon {
  width: 22px; height: 22px;
  background: var(--accent);
  color: var(--olive-deep);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-cta-icon svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.float-cta.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 540px) {
  .float-cta { font-size: 0.85rem; padding: 0.85rem 1.2rem; }
}

/* ============================================================
   BLOG — Übersicht + Article
   ============================================================ */

/* Reading-Progress-Bar */
.read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--accent);
  width: 0;
  z-index: 100;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--accent-glow);
}

/* Blog-Übersicht — Hero */
.blog-hero {
  padding: 5rem 0 3rem;
  text-align: center;
  position: relative;
}
.blog-hero h1 { max-width: 720px; margin: 0 auto; }
.blog-hero p.lead { max-width: 540px; margin: 1.5rem auto 0; }

/* Category-Filter */
.blog-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}
.blog-filter button {
  padding: 0.55rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.blog-filter button:hover { border-color: var(--olive-deep); }
.blog-filter button.is-active {
  background: var(--olive-deep);
  color: var(--accent);
  border-color: var(--olive-deep);
}

/* Article-Cards Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.5), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 1px 2px rgba(14,20,14,0.04),
    0 8px 20px -8px rgba(14,20,14,0.06);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -8px rgba(14,20,14,0.14);
}
.blog-card-cover {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

/* Tech & KI — Grid-Pattern + Glow links oben */
.blog-card-cover.is-tech { background: linear-gradient(135deg, #2D4A2A, #1F2A1F); }
.blog-card-cover.is-tech::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199,255,61,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,255,61,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.blog-card-cover.is-tech::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 25% 30%, rgba(199,255,61,0.28), transparent 70%);
}

/* Compliance — Concentric Circles */
.blog-card-cover.is-compliance { background: linear-gradient(135deg, #1F2A1F, #2D4A2A); }
.blog-card-cover.is-compliance::before {
  content: '';
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at center, transparent 13%, rgba(199,255,61,0.10) 14%, rgba(199,255,61,0.10) 14.5%, transparent 15%),
    radial-gradient(circle at center, transparent 27%, rgba(199,255,61,0.08) 28%, rgba(199,255,61,0.08) 28.5%, transparent 29%),
    radial-gradient(circle at center, transparent 41%, rgba(199,255,61,0.06) 42%, rgba(199,255,61,0.06) 42.5%, transparent 43%);
}
.blog-card-cover.is-compliance::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(199,255,61,0.15), transparent 60%);
}

/* HR — Dots Pattern */
.blog-card-cover.is-hr { background: linear-gradient(135deg, #2D4A2A, #4A6FA5); }
.blog-card-cover.is-hr::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(199,255,61,0.30) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.6;
}
.blog-card-cover.is-hr::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 80% 30%, rgba(199,255,61,0.20), transparent 70%);
}

/* Praxis — Diagonal Lines */
.blog-card-cover.is-praxis { background: linear-gradient(135deg, #2D4A2A, #B07A6E); }
.blog-card-cover.is-praxis::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0, transparent 14px, rgba(199,255,61,0.10) 14px, rgba(199,255,61,0.10) 15px);
}
.blog-card-cover.is-praxis::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 80% at 100% 50%, rgba(199,255,61,0.18), transparent 70%);
}

/* Big-Icon zentral */
.blog-card-cover-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: rgba(199,255,61,0.85);
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.5);
}
.blog-card:hover .blog-card-cover-icon { transform: scale(1.1); }
.blog-card-cover-icon svg {
  width: 56px; height: 56px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Optional: Cat-Badge top-right + Article-Number top-left */
.blog-card-cover-badge {
  position: absolute;
  top: 0.95rem; right: 0.95rem;
  padding: 0.3rem 0.7rem;
  background: rgba(199,255,61,0.15);
  border: 1px solid rgba(199,255,61,0.3);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 3;
  backdrop-filter: blur(6px);
}
.blog-card-cover-num {
  position: absolute;
  top: 1rem; left: 1.1rem;
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(199,255,61,0.55);
  z-index: 3;
}

.blog-card-body {
  padding: 1.5rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-cat {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive-mid);
  margin-bottom: 0.85rem;
}
.blog-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}
.blog-card-excerpt {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-faint);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.blog-card-meta .bcm-time {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.blog-card-meta .bcm-time::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--olive-mid);
}

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; gap: 1.25rem; } }

/* ============================================================
   Article (single post) — 2-Spalten mit ToC
   ============================================================ */
.article-hero {
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.article-hero .article-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--olive-mid);
  background: var(--olive-faint);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.article-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 800;
  max-width: 920px;
}
.article-hero .article-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 1.25rem;
  max-width: 720px;
}
.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.article-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.article-author-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--olive-mid), var(--olive-deep));
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.article-author-info { line-height: 1.3; }
.article-author-name { font-size: 0.85rem; font-weight: 600; }
.article-author-role { font-size: 0.72rem; color: var(--text-muted); }
.article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.article-meta-item svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.article-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}
.article-toc {
  position: sticky;
  top: 6rem;
  font-size: 0.85rem;
}
.article-toc-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--olive-mid);
  margin-bottom: 1rem;
}
.article-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-left: 1px solid var(--border);
}
.article-toc li { padding-left: 1rem; position: relative; }
.article-toc li::before {
  content: '';
  position: absolute;
  left: -1px; top: 0.45rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--border-strong);
}
.article-toc a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.article-toc a:hover { color: var(--olive-deep); }
.article-toc li.is-active::before { background: var(--olive-deep); }
.article-toc li.is-active a { color: var(--olive-deep); font-weight: 600; }

.article-body {
  max-width: 720px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-2);
}
.article-body h2 {
  font-size: 1.65rem;
  font-weight: 700;
  margin: 3rem 0 1.25rem;
  scroll-margin-top: 5rem;
}
.article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 0.85rem;
}
.article-body p { margin: 0 0 1.25rem; }
.article-body strong { color: var(--text); }
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin: 0 0 1.5rem;
}
.article-body li { margin: 0.4rem 0; }
.article-body a {
  color: var(--olive-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--olive-soft);
}
.article-body a:hover { border-bottom-color: var(--olive-deep); }

/* Callouts */
.article-callout {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r);
  border-left: 3px solid var(--olive-deep);
  background: var(--bg-warm);
  font-size: 0.95rem;
}
.article-callout.is-tip { border-left-color: var(--accent); background: rgba(199,255,61,0.08); }
.article-callout.is-warning { border-left-color: var(--warn); background: rgba(176,122,110,0.08); }
.article-callout-title {
  font-weight: 700;
  color: var(--olive-deep);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.article-callout.is-warning .article-callout-title { color: var(--warn); }
.article-callout p { margin: 0; }

/* Steps-List */
.article-steps {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.article-step-num {
  width: 36px; height: 36px;
  background: var(--olive-deep);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.article-step-text strong { display: block; margin-bottom: 0.3rem; }
.article-step-text p { margin: 0; font-size: 0.92rem; color: var(--text-muted); }

/* Share-Row */
.article-share {
  margin: 4rem 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.article-share-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
}
.article-share-buttons {
  display: flex;
  gap: 0.5rem;
}
.article-share-buttons a {
  width: 38px; height: 38px;
  background: var(--bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive-deep);
  border-bottom: none;
  transition: all 0.2s;
}
.article-share-buttons a:hover {
  background: var(--olive-deep);
  color: var(--accent);
  transform: translateY(-2px);
}
.article-share-buttons svg { width: 16px; height: 16px; fill: currentColor; }

/* Related */
.article-related h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}
/* Override für blog-card h3 innerhalb article-body (verhindert Erbung von .article-body h3) */
.article-related .blog-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Mobile Article */
@media (max-width: 900px) {
  .article-grid { grid-template-columns: 1fr; gap: 2rem; }
  .article-toc {
    position: static;
    background: var(--bg-warm);
    border-radius: var(--r);
    padding: 1.25rem;
  }
  .article-body h2 { font-size: 1.4rem; margin: 2.25rem 0 1rem; }
  .article-meta-row { gap: 1rem; }
}
