/* ==========================================================================
   omnigroove.de — Design-System "Modern Dark + Automation-Glow"
   Ronny Burscher · Automatisierung & KI für deinen Betrieb
   Ersetzt vollständig styles.css + ai-features.css
   ========================================================================== */

:root {
    /* ---- Flächen / Hintergrund ---- */
    --ink:        #0B0F17;
    --ink-2:      #11151F;
    --surface:    #161B27;
    --surface-2:  #1C2230;
    --line:       rgba(255, 255, 255, 0.08);
    --line-2:     rgba(255, 255, 255, 0.14);

    /* ---- Akzente ---- */
    --violet:     #7C5CFF;
    --violet-2:   #9d86ff;
    --cyan:       #22D3EE;
    --cyan-2:     #67e8f9;
    --signal:     #34D399;
    --warn:       #fbbf24;
    --crit:       #fb7185;

    --grad-brand: linear-gradient(110deg, #7C5CFF 0%, #22D3EE 100%);
    --grad-brand-soft: linear-gradient(110deg, rgba(124,92,255,0.16), rgba(34,211,238,0.12));

    /* ---- Text ---- */
    --text:       #E7ECF5;
    --text-muted: #9AA6BC;
    --text-dim:   #818DA6;

    /* ---- Schrift ---- */
    --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', 'Cascadia Code', monospace;

    /* ---- Maße ---- */
    --container: 1180px;
    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 22px;

    --shadow:    0 16px 40px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.55);
    --glow-violet: 0 0 0 1px rgba(124,92,255,0.25), 0 14px 40px rgba(124,92,255,0.22);

    /* ---- Easing (Emil Kowalski: starke Custom-Kurven statt schwacher Built-ins) ---- */
    --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

    /* ---- Kompatibilitäts-Aliase (von Alt-JS-Inline-Styles referenziert) ---- */
    --color-text:        var(--text);
    --color-text-muted:  var(--text-muted);
    --color-text-dim:    var(--text-dim);
    --color-gold:        var(--violet);
    --color-gold-light:  var(--violet-2);
    --color-cyan:        var(--cyan);
    --color-cyan-bright: var(--cyan-2);
    --ai-mono:           var(--font-mono);
    --font-heading:      var(--font-display);
}

/* ==========================================================================
   Reset & Basis
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--ink);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hintergrund-Ebenen: atmende Glows + feines Grid */
.bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.bg-layer::before,
.bg-layer::after {
    content: '';
    position: absolute;
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation: breathe 14s ease-in-out infinite;
}
.bg-layer::before {
    top: -22vw; left: -14vw;
    background: radial-gradient(circle, rgba(124,92,255,0.32), transparent 62%);
}
.bg-layer::after {
    bottom: -26vw; right: -16vw;
    background: radial-gradient(circle, rgba(34,211,238,0.22), transparent 62%);
    animation-delay: -7s;
}
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}
/* Canvas-Flow-Hintergrund (von flow-bg in ai-app.js bespielt) */
#flow-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes breathe {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.45; }
    50%      { transform: scale(1.12) translate(2%, 1%); opacity: 0.6; }
}

main, header, footer, section { position: relative; z-index: 1; }

img, svg { max-width: 100%; display: block; }

a { color: var(--cyan-2); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--cyan); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

::selection { background: rgba(124,92,255,0.4); color: #fff; }

/* ==========================================================================
   Typografie
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text);
}
h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p  { color: var(--text-muted); }

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--violet-2);
}
.eyebrow::before {
    content: '';
    width: 1.6rem;
    height: 1px;
    background: linear-gradient(90deg, var(--violet), transparent);
}

.lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 60ch;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section { padding: 5.5rem 0; }
.section-tight { padding: 3.5rem 0; }

.section-head { max-width: 64ch; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { margin-top: 0.9rem; font-size: 1.05rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.6rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.16s var(--ease-out), box-shadow 0.25s ease, background 0.25s ease, border-color 0.2s ease;
    white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
    .btn:hover { transform: translateY(-2px); }
}
.btn:active { transform: scale(0.97); }

.btn-primary {
    background: var(--grad-brand);
    color: #0a0a14;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(124,92,255,0.32);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(124,92,255,0.45); color: #0a0a14; }

.btn-ghost {
    background: rgba(255,255,255,0.03);
    color: var(--text);
    border-color: var(--line-2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: var(--violet); color: var(--text); }

.btn-mono {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    padding: 0.7rem 1.2rem;
}

.btn-lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-wa { background: #25D366; color: #06301a; font-weight: 700; }
.btn-wa:hover { background: #20c45c; color: #06301a; box-shadow: 0 12px 28px rgba(37,211,102,0.4); }
.btn-wa svg { width: 18px; height: 18px; fill: currentColor; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 15, 23, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand img { height: 30px; width: auto; }
.brand .brand-mark { height: 32px; }
.brand .wordmark {
    font-family: var(--font-display);
    font-size: 1.32rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
    line-height: 1;
}
.brand .wordmark .dot { color: var(--cyan); }
.brand-sub {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 3px;
}

.nav-right { display: flex; align-items: center; gap: 0.6rem; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
}
.nav-menu a {
    position: relative;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.4rem 0;
    transition: color 0.2s ease;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%; height: 2px;
    border-radius: 2px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease-out);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--text); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }

/* ⌘K Trigger */
.cmd-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line-2);
    border-radius: 50px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.82rem;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.cmd-trigger:hover { border-color: var(--violet); color: var(--text); background: rgba(124,92,255,0.08); }
.cmd-trigger svg { width: 15px; height: 15px; stroke: currentColor; fill: none; }
.cmd-kbd {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    padding: 0.1rem 0.4rem;
    border: 1px solid var(--line-2);
    border-radius: 5px;
    color: var(--text-dim);
}

.nav-toggle {
    display: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line-2);
    color: var(--text);
    width: 40px; height: 40px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: 4.5rem 0 5rem; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--line-2);
    border-radius: 50px;
    background: rgba(52,211,153,0.06);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
}
.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 0 0 rgba(52,211,153,0.6);
    animation: ping 2.2s ease-out infinite;
}
@keyframes ping {
    0%   { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); }
    70%  { box-shadow: 0 0 0 7px rgba(52,211,153,0); }
    100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

.hero h1 { margin-bottom: 1.3rem; }
.hero-lead { font-size: 1.18rem; color: var(--text-muted); max-width: 50ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2rem; }

/* Mono-Konsole im Hero */
.console {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-dim);
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.console::before { content: '›'; color: var(--violet-2); }
.console-text { color: var(--cyan-2); }
.console-caret {
    display: inline-block;
    width: 8px; height: 1rem;
    background: var(--violet);
    animation: blink 1s steps(2) infinite;
    vertical-align: middle;
}
@keyframes blink { 0%,50% { opacity: 1; } 50.01%,100% { opacity: 0; } }

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 1.6rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
}
.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.hero-trust b { color: var(--signal); font-weight: 700; }

/* ==========================================================================
   Automation-Pipeline (Hero-Visual + wiederverwendbar)
   ========================================================================== */
.pipe {
    background: linear-gradient(165deg, var(--surface) 0%, var(--ink-2) 100%);
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), var(--glow-violet);
    overflow: hidden;
}
.pipe-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(0,0,0,0.2);
}
.pipe-head .dotrow { display: flex; gap: 6px; margin-right: 0.4rem; }
.pipe-head .dotrow i { width: 10px; height: 10px; border-radius: 50%; }
.pipe-head .dotrow i:nth-child(1){ background:#fb7185; }
.pipe-head .dotrow i:nth-child(2){ background:#fbbf24; }
.pipe-head .dotrow i:nth-child(3){ background:#34d399; }
.pipe-head .title { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-dim); }
.pipe-head .title b { color: var(--text-muted); font-weight: 500; }

.pipe-body { padding: 1.6rem 1.4rem; display: flex; flex-direction: column; gap: 0.2rem; }

.pnode {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    position: relative;
    z-index: 2;
}
.pnode-ico {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line-2);
}
.pnode-ico svg { width: 19px; height: 19px; stroke: var(--text-muted); fill: none; stroke-width: 1.8; }
.pnode-txt { min-width: 0; }
.pnode-txt b { display: block; font-size: 0.92rem; color: var(--text); font-weight: 600; }
.pnode-txt span { font-size: 0.76rem; color: var(--text-dim); }
.pnode-tag {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* KI-Knoten hervorgehoben */
.pnode--ai {
    border-color: rgba(124,92,255,0.5);
    background: linear-gradient(120deg, rgba(124,92,255,0.14), rgba(34,211,238,0.08));
    box-shadow: 0 0 24px rgba(124,92,255,0.18);
}
.pnode--ai .pnode-ico { border-color: rgba(124,92,255,0.5); background: rgba(124,92,255,0.16); }
.pnode--ai .pnode-ico svg { stroke: var(--violet-2); }
.pnode--ai .pnode-tag { color: var(--violet-2); }

/* Kante mit wanderndem Signal */
.pedge {
    height: 26px;
    width: 2px;
    margin-left: 2.05rem;
    background: linear-gradient(to bottom, rgba(124,92,255,0.5), rgba(34,211,238,0.4));
    position: relative;
    z-index: 1;
}
.pedge::before {
    content: '';
    position: absolute;
    left: 50%; top: 0;
    width: 7px; height: 7px;
    margin-left: -3.5px;
    border-radius: 50%;
    background: var(--cyan-2);
    box-shadow: 0 0 10px var(--cyan-2);
    animation: travel 2.4s ease-in-out infinite;
}
@keyframes travel {
    0%   { top: -2px; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { top: 24px; opacity: 0; }
}
.pedge:nth-of-type(4)::before { animation-delay: 0.5s; }

.pipe-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px dashed var(--line-2);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: var(--signal);
}

/* ==========================================================================
   Karten / Grids
   ========================================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }

.card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.7rem 1.6rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.card:hover {
    border-color: var(--line-2);
    box-shadow: var(--shadow);
}
.card-ico {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 1.1rem;
    background: var(--grad-brand-soft);
    border: 1px solid var(--line-2);
}
.card-ico svg { width: 22px; height: 22px; stroke: var(--violet-2); fill: none; stroke-width: 1.7; }
.card h3 { margin-bottom: 0.55rem; }
.card p { font-size: 0.95rem; line-height: 1.6; }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--violet-2);
    transition: color 0.2s ease;
}
.card-link:hover { color: var(--cyan); }

/* Kern-Leistungs-Karte mit Mini-Flow */
.svc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.svc:hover { border-color: rgba(124,92,255,0.35); box-shadow: var(--shadow); }
.svc-head { display: flex; align-items: center; gap: 0.8rem; }
.svc-head .card-ico { margin-bottom: 0; }
.svc h3 { font-size: 1.15rem; }
.svc > p { font-size: 0.93rem; line-height: 1.55; margin: 0; }

/* Mini-Flow (Chips) */
.miniflow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding-top: 0.6rem;
    margin-top: auto;
    border-top: 1px dashed var(--line);
}
.chip {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    padding: 0.3rem 0.6rem;
    border-radius: 7px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    color: var(--text-muted);
    white-space: nowrap;
}
.chip--ai { color: var(--violet-2); border-color: rgba(124,92,255,0.4); background: rgba(124,92,255,0.08); }
.chip--out { color: var(--signal); border-color: rgba(52,211,153,0.35); background: rgba(52,211,153,0.07); }
.miniflow .arrow { color: var(--text-dim); font-size: 0.8rem; }

/* Pain-Points */
.pain {
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
}
.pain .num {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--violet-2);
    letter-spacing: 0.1em;
}
.pain h4 { margin: 0.4rem 0; }
.pain p { font-size: 0.92rem; line-height: 1.55; }

/* "Auch dabei" — kompakte Stütz-Reihe */
.mini {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1.3rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.mini .card-ico { margin-bottom: 0; width: 40px; height: 40px; }
.mini h4 { margin-bottom: 0.3rem; font-size: 1rem; }
.mini p { font-size: 0.88rem; line-height: 1.5; margin: 0; }

/* Lokale-KI Banner */
.local {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(124,92,255,0.08), rgba(34,211,238,0.05));
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.local ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.local li {
    display: flex; gap: 0.6rem; align-items: flex-start;
    font-size: 0.95rem; color: var(--text-muted);
}
.local li::before {
    content: '✓';
    color: var(--signal);
    font-weight: 700;
    flex-shrink: 0;
}
.local .badge-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.4rem; }
.badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    padding: 0.32rem 0.7rem;
    border-radius: 50px;
    border: 1px solid var(--line-2);
    color: var(--cyan-2);
    background: rgba(34,211,238,0.05);
}

/* ==========================================================================
   Werkstatt / Projekt-Karten
   ========================================================================== */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.work {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.work:hover { border-color: var(--line-2); box-shadow: var(--shadow); }
.browser {
    border-bottom: 1px solid var(--line);
}
.browser-bar {
    display: flex; align-items: center; gap: 5px;
    padding: 7px 10px;
    background: rgba(0,0,0,0.3);
}
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; }
.browser-bar i:nth-child(1){ background:#fb7185; }
.browser-bar i:nth-child(2){ background:#fbbf24; }
.browser-bar i:nth-child(3){ background:#34d399; }
.browser-url {
    flex: 1; text-align: center;
    font-family: var(--font-mono);
    font-size: 0.66rem; color: var(--text-dim);
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
    padding: 2px 8px;
    margin: 0 6px;
}
.browser-shot { width: 100%; display: block; min-height: 150px; background: var(--ink-2); }
.work-fallback {
    display: grid; place-items: center;
    min-height: 170px; padding: 1.5rem; text-align: center;
    background: linear-gradient(135deg, rgba(124,92,255,0.1), rgba(34,211,238,0.06));
}
.work-fallback .big { font-size: 2rem; margin-bottom: 0.4rem; }
.work-body { padding: 1.2rem 1.3rem; }
.work-body .tagrow { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.work-body .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.work-body strong { font-family: var(--font-display); font-size: 1.02rem; }
.work-body .kind { font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.work-body p { font-size: 0.88rem; line-height: 1.5; margin: 0.5rem 0 0; }
.work-foot { margin-top: 0.9rem; display: flex; justify-content: space-between; align-items: center; }
.work-visit { font-size: 0.82rem; font-weight: 600; color: var(--violet-2); }
.lab-tag {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--line);
    border-radius: 5px;
}

/* ==========================================================================
   Ablauf / Prozess
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.step {
    padding: 1.5rem 1.3rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative;
}
.step .snum {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--violet-2);
    border: 1px solid rgba(124,92,255,0.4);
    border-radius: 8px;
    width: 32px; height: 32px;
    display: grid; place-items: center;
    margin-bottom: 0.9rem;
}
.step h4 { margin-bottom: 0.4rem; }
.step p { font-size: 0.88rem; line-height: 1.5; }

/* ==========================================================================
   CTA-Banner
   ========================================================================== */
.cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(124,92,255,0.14), rgba(34,211,238,0.08));
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2rem;
}
.cta h2 { margin-bottom: 0.8rem; }
.cta p { max-width: 50ch; margin: 0 auto 1.8rem; font-size: 1.08rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    margin-top: 4rem;
    border-top: 1px solid var(--line);
    background: rgba(0,0,0,0.25);
    padding: 3rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2rem;
}
.footer-brand p { font-size: 0.88rem; margin-top: 0.9rem; max-width: 34ch; }
.footer-col h5 {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.9rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    font-size: 0.8rem;
    color: var(--text-dim);
}
.footer-bottom .mono { font-family: var(--font-mono); letter-spacing: 0.05em; }

/* ==========================================================================
   Seiten-Header (Unterseiten)
   ========================================================================== */
.page-head { padding: 3.5rem 0 1rem; }
.breadcrumb { font-family: var(--font-mono); font-size: 0.76rem; color: var(--text-dim); margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb span { margin: 0 0.4rem; }

/* ==========================================================================
   Scroll-Reveal
   ========================================================================== */
.reveal { opacity: 0; }
.reveal.visible, .reveal.is-visible { opacity: 1; animation: reveal-in 0.5s var(--ease-out) backwards; }
@keyframes reveal-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   AI Konzierge (Floating Chat)
   ========================================================================== */
.ai-fab {
    position: fixed;
    bottom: 22px; right: 22px;
    z-index: 200;
    width: 58px; height: 58px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--grad-brand);
    box-shadow: 0 12px 30px rgba(124,92,255,0.45);
    display: grid; place-items: center;
    transition: transform 0.2s var(--ease-out);
}
.ai-fab svg { width: 26px; height: 26px; stroke: #0a0a14; fill: none; stroke-width: 2.2; }
.ai-fab-dot {
    position: absolute; top: 6px; right: 6px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--signal);
    border: 2px solid var(--ink);
}

.ai-chat {
    position: fixed;
    bottom: 22px; right: 22px;
    z-index: 201;
    width: min(380px, calc(100vw - 32px));
    height: min(560px, calc(100vh - 60px));
    background: var(--ink-2);
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transform-origin: bottom right;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s var(--ease-out);
}
.ai-chat.is-open { opacity: 1; transform: none; pointer-events: auto; }
.ai-chat-head {
    display: flex; align-items: center; gap: 0.7rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(0,0,0,0.2);
}
.ai-chat-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--grad-brand);
    color: #0a0a14; font-weight: 700; font-family: var(--font-display);
}
.ai-chat-title { flex: 1; min-width: 0; line-height: 1.2; }
.ai-chat-title b { display: block; font-family: var(--font-display); }
.ai-chat-title span { font-size: 0.74rem; color: var(--signal); }
.ai-chat-tts, .ai-chat-close {
    background: transparent; border: none; cursor: pointer;
    color: var(--text-dim); padding: 0.3rem; border-radius: 8px;
    display: grid; place-items: center;
    transition: color 0.2s ease, background 0.2s ease;
}
.ai-chat-tts:hover, .ai-chat-close:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.ai-chat-tts svg { stroke: currentColor; fill: none; }
.ai-chat-tts-off { display: none; }
.ai-chat-tts.is-on { color: var(--cyan); }
.ai-chat-tts.is-speaking { color: var(--violet-2); animation: blink 1s ease-in-out infinite; }

.ai-chat-body { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.ai-msg {
    max-width: 85%;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
}
.ai-msg.is-bot { align-self: flex-start; background: var(--surface); border: 1px solid var(--line); border-bottom-left-radius: 4px; color: var(--text); }
.ai-msg.is-user { align-self: flex-end; background: var(--grad-brand); color: #0a0a14; font-weight: 500; border-bottom-right-radius: 4px; }
.ai-msg a { color: var(--cyan-2); text-decoration: underline; }

.ai-typing { display: inline-flex; gap: 4px; }
.ai-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-dim); animation: typing 1.2s ease-in-out infinite; }
.ai-typing span:nth-child(2){ animation-delay: 0.2s; }
.ai-typing span:nth-child(3){ animation-delay: 0.4s; }
@keyframes typing { 0%,60%,100% { opacity: 0.3; transform: translateY(0);} 30% { opacity: 1; transform: translateY(-3px);} }

.ai-chat-suggest { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0 1rem 0.6rem; }
.ai-chat-suggest button {
    font-size: 0.78rem;
    padding: 0.35rem 0.7rem;
    border-radius: 50px;
    border: 1px solid var(--line-2);
    background: rgba(255,255,255,0.03);
    color: var(--text-muted);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.ai-chat-suggest button:hover { border-color: var(--violet); color: var(--text); }

.ai-chat-foot { display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem; border-top: 1px solid var(--line); }
.ai-chat-input {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--line-2);
    border-radius: 50px;
    padding: 0.6rem 1rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
}
.ai-chat-input:focus { outline: none; border-color: var(--violet); }
.mic-btn, .ai-chat-send {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line-2);
    background: rgba(255,255,255,0.03);
    color: var(--text-muted);
    cursor: pointer;
    display: grid; place-items: center;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.mic-btn svg, .ai-chat-send svg { width: 17px; height: 17px; stroke: currentColor; fill: none; }
.ai-chat-send { background: var(--grad-brand); border: none; color: #0a0a14; }
.mic-btn:hover { border-color: var(--violet); color: var(--text); }
.mic-btn.is-listening { background: var(--crit); color: #fff; border-color: var(--crit); animation: ping 1.4s infinite; }

/* ==========================================================================
   Command Palette (⌘K)
   ========================================================================== */
.cmd-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(5,8,14,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 14vh;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease;
}
.cmd-overlay.is-open { opacity: 1; pointer-events: auto; }
.cmd {
    width: min(560px, calc(100vw - 32px));
    background: var(--ink-2);
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.cmd-head { display: flex; align-items: center; gap: 0.7rem; padding: 0.9rem 1rem; border-bottom: 1px solid var(--line); }
.cmd-head svg { width: 18px; height: 18px; stroke: var(--text-dim); fill: none; }
.cmd-input { flex: 1; background: transparent; border: none; color: var(--text); font-family: var(--font-body); font-size: 1rem; }
.cmd-input:focus { outline: none; }
.cmd-list { max-height: 50vh; overflow-y: auto; padding: 0.5rem; }
.cmd-item {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    cursor: pointer;
}
.cmd-item.is-selected, .cmd-item:hover { background: rgba(124,92,255,0.12); }
.cmd-item-icon { width: 26px; text-align: center; color: var(--violet-2); font-size: 1rem; flex-shrink: 0; }
.cmd-item-body { display: flex; flex-direction: column; min-width: 0; }
.cmd-item-body b { font-size: 0.92rem; color: var(--text); font-weight: 600; }
.cmd-item-body span { font-size: 0.78rem; color: var(--text-dim); }
.cmd-group-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); padding: 0.6rem 0.8rem 0.3rem; }
.cmd-ai-hint {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.7rem 1rem; border-top: 1px solid var(--line);
    font-size: 0.78rem; color: var(--text-dim);
}
.ai-pulse { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; color: var(--text-muted); }
.ai-pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--violet); animation: ping 1.8s infinite; }

/* ==========================================================================
   Ideen-Generator (Automatisierungs-Demo)
   ========================================================================== */
.ideas {
    background: var(--surface);
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.ideas-head { padding: 1.6rem 1.6rem 1.2rem; border-bottom: 1px solid var(--line); }
.ideas-head h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.ideas-head p { font-size: 0.92rem; }
.ideas-form { display: flex; gap: 0.6rem; padding: 1.2rem 1.6rem; flex-wrap: wrap; }
.ideas-input-wrap { flex: 1; min-width: 220px; position: relative; display: flex; align-items: center; gap: 0.5rem; }
.ideas-input {
    flex: 1;
    background: var(--ink-2);
    border: 1px solid var(--line-2);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.ideas-input:focus { outline: none; border-color: var(--violet); }
.ideas-mic {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 10px;
    border: 1px solid var(--line-2);
    background: rgba(255,255,255,0.03);
    color: var(--text-muted);
    cursor: pointer; display: grid; place-items: center;
}
.ideas-mic svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.ideas-mic.is-listening { background: var(--crit); color: #fff; border-color: var(--crit); animation: ping 1.4s infinite; }

.ideas-result { padding: 0 1.6rem 1.6rem; }
.ideas-empty {
    display: flex; gap: 0.7rem; align-items: flex-start;
    padding: 1.1rem; border-radius: 12px;
    background: var(--grad-brand-soft);
    border: 1px solid var(--line);
}
.ideas-empty .badge { flex-shrink: 0; }
.ideas-empty p { font-size: 0.9rem; margin: 0; }

.idea {
    display: flex; flex-direction: column; gap: 0.7rem;
    padding: 1.2rem;
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-top: 0.9rem;
    animation: rise 0.4s ease both;
}
@keyframes rise { from { opacity: 0; transform: translateY(12px);} to { opacity: 1; transform: none;} }
.idea-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text); }
.idea-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }
.idea-flow { display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem; }
.idea-foot { display: flex; align-items: center; gap: 0.8rem; font-size: 0.8rem; color: var(--text-dim); }
.idea-effort { font-family: var(--font-mono); color: var(--cyan-2); }

.ideas-error {
    padding: 1rem; border-radius: 10px;
    background: rgba(251,113,133,0.1);
    border: 1px solid rgba(251,113,133,0.3);
    color: #fda4af; font-size: 0.9rem;
}
.spinner {
    width: 16px; height: 16px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    border-top-color: var(--violet);
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   Formulare (Kontakt)
   ========================================================================== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.84rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: var(--ink-2);
    border: 1px solid var(--line-2);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--violet); }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; margin: 1rem 0; font-size: 0.86rem; color: var(--text-muted); }
.form-consent input { margin-top: 0.25rem; flex-shrink: 0; }
.form-status { margin-top: 1rem; padding: 0.8rem 1rem; border-radius: 10px; font-size: 0.9rem; display: none; }
.form-status.success { display: block; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); color: #6ee7b7; }
.form-status.error { display: block; background: rgba(251,113,133,0.1); border: 1px solid rgba(251,113,133,0.3); color: #fda4af; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2.5rem; align-items: start; }
.info-item { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1.1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 1rem; }
.info-item .card-ico { margin-bottom: 0; width: 40px; height: 40px; }
.info-item h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 0.2rem; }
.info-item p { font-size: 0.95rem; color: var(--text); margin: 0; }

/* ==========================================================================
   FAQ / Listen
   ========================================================================== */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 0.8rem; background: var(--surface); overflow: hidden; }
.faq-item summary { padding: 1.1rem 1.3rem; cursor: pointer; font-weight: 600; font-family: var(--font-display); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--violet-2); font-size: 1.3rem; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 1.3rem 1.2rem; font-size: 0.92rem; line-height: 1.6; }

.dashed-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.dashed-list li { padding-left: 1.5rem; position: relative; font-size: 0.95rem; color: var(--text-muted); }
.dashed-list li::before { content: '→'; position: absolute; left: 0; color: var(--violet-2); }
.dashed-list--off li::before { content: '×'; color: var(--crit); }

/* ==========================================================================
   Cookie-Banner
   ========================================================================== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
    background: rgba(11,15,23,0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line-2);
    padding: 1rem 1.5rem;
}
.cookie-banner.hidden { display: none; }
.cookie-banner__inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cookie-banner__text { flex: 1; min-width: 260px; font-size: 0.84rem; color: var(--text-muted); margin: 0; }
.cookie-banner__actions { display: flex; gap: 0.6rem; }
.cookie-btn { padding: 0.55rem 1.2rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; cursor: pointer; border: 1px solid var(--line-2); }
.cookie-btn--outline { background: transparent; color: var(--text-muted); }
.cookie-btn--primary { background: var(--grad-brand); color: #0a0a14; border: none; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.divider { height: 1px; background: var(--line); margin: 2.5rem 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .local { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.8rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
    .nav-menu {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--ink-2);
        border-bottom: 1px solid var(--line);
        padding: 0.5rem 1.5rem 1rem;
        display: none;
    }
    .nav-menu.open { display: flex; }
    .nav-menu li { width: 100%; }
    .nav-menu a { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
    .nav-toggle { display: inline-flex; }
    .cmd-trigger span:not(.cmd-kbd) { display: none; }
    .grid-3, .grid-4, .work-grid { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 3.5rem 0; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    #flow-bg, .bg-layer::before, .bg-layer::after { animation: none; }
    /* Reveal ohne Bewegung, sofort sichtbar (JS-unabhängig) */
    .reveal, .reveal.visible, .reveal.is-visible { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* Hover-Bewegung nur auf Geräten mit echtem Zeiger (Emil: kein Hover-Motion auf Touch) */
@media (hover: hover) and (pointer: fine) {
    .card:hover, .svc:hover, .work:hover, .post-card:hover { transform: translateY(-4px); }
    .ai-fab:hover { transform: scale(1.06); }
}

/* ==========================================================================
   ETAPPE B — Legal, Ratgeber/Artikel, Split, Person
   ========================================================================== */

.page-head .lead { margin-top: 0.8rem; max-width: 62ch; }

/* Legal (Impressum / Datenschutz) */
.legal { max-width: 820px; }
.legal-block { margin-bottom: 2.2rem; }
.legal-block h2 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.legal-block h3 { font-size: 1.05rem; margin: 1.2rem 0 0.5rem; color: var(--violet-2); }
.legal-block p { margin-bottom: 0.8rem; line-height: 1.7; }
.legal-block ul { list-style: none; margin: 0.6rem 0; display: flex; flex-direction: column; gap: 0.4rem; }
.legal-block ul li { padding-left: 1.4rem; position: relative; color: var(--text-muted); }
.legal-block ul li::before { content: '→'; position: absolute; left: 0; color: var(--violet-2); }
.legal-note { display: block; margin-top: 1rem; padding: 1rem 1.2rem; border-left: 3px solid var(--violet); background: var(--surface); border-radius: 0 10px 10px 0; font-size: 0.9rem; color: var(--text-muted); }

/* Split (Leistungen) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.split-col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.split-col--off { background: transparent; border-style: dashed; }
.split-col h3 { font-size: 1.1rem; margin-bottom: 1rem; }

/* Ratgeber / Blog */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.post-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; text-decoration: none; }
.post-card:hover { border-color: var(--line-2); box-shadow: var(--shadow); }
.post-cover { height: 130px; background: var(--grad-brand-soft); display: grid; place-items: center; font-size: 2.2rem; border-bottom: 1px solid var(--line); }
.post-body { padding: 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.post-cat { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan-2); }
.post-card h3 { font-size: 1.12rem; color: var(--text); line-height: 1.25; }
.post-card p { font-size: 0.9rem; color: var(--text-muted); flex: 1; }
.post-meta { font-size: 0.78rem; color: var(--text-dim); display: flex; gap: 0.6rem; }
.post-readmore { color: var(--violet-2); font-weight: 600; font-size: 0.86rem; margin-top: 0.2rem; }

/* Artikel-Prosa */
.article { max-width: 740px; margin: 0 auto; }
.article-meta { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-dim); margin-bottom: 1.2rem; display: flex; gap: 0.7rem; flex-wrap: wrap; }
.article-meta .cat { color: var(--cyan-2); }
.prose { font-size: 1.05rem; line-height: 1.75; color: var(--text-muted); }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-size: 1.5rem; color: var(--text); margin-top: 2.2rem; }
.prose h3 { font-size: 1.2rem; color: var(--text); margin-top: 1.6rem; }
.prose strong { color: var(--text); }
.prose ul, .prose ol { padding-left: 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; }
.prose li { color: var(--text-muted); }
.prose a { color: var(--cyan-2); text-decoration: underline; }
.prose blockquote { border-left: 3px solid var(--violet); padding: 0.7rem 1.2rem; background: var(--surface); border-radius: 0 10px 10px 0; color: var(--text); font-style: italic; }
.prose code { font-family: var(--font-mono); font-size: 0.9em; background: var(--surface-2); padding: 0.1rem 0.4rem; border-radius: 5px; color: var(--cyan-2); }
.article-cta { margin-top: 2.5rem; padding: 1.8rem; border-radius: var(--radius); background: var(--grad-brand-soft); border: 1px solid var(--line-2); text-align: center; }
.article-cta h3 { margin-bottom: 0.5rem; }

/* Person / Über mich */
.about-intro { display: grid; grid-template-columns: 1fr 0.8fr; gap: 3rem; align-items: center; }
.portrait { border-radius: var(--radius-lg); border: 1px solid var(--line-2); overflow: hidden; box-shadow: var(--shadow); background: var(--surface); position: relative; }
.portrait img { width: 100%; height: auto; display: block; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; }
.portrait-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.2rem; background: linear-gradient(to top, rgba(11,15,23,0.95), transparent); }
.portrait-cap b { font-family: var(--font-display); display: block; }
.portrait-cap span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--cyan-2); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.5rem; }
.value { padding: 1.4rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.value .vn { font-family: var(--font-mono); font-size: 1.3rem; color: var(--violet-2); }
.value h3 { font-size: 1.05rem; margin: 0.5rem 0; }
.value p { font-size: 0.9rem; line-height: 1.55; }

@media (max-width: 920px) {
    .post-grid { grid-template-columns: repeat(2, 1fr); }
    .about-intro { grid-template-columns: 1fr; gap: 2rem; }
    .about-intro .portrait { max-width: 360px; }
    .values { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .split { grid-template-columns: 1fr; }
    .post-grid { grid-template-columns: 1fr; }
}

/* WhatsApp Floating Button (unten links) */
.wa-fab {
    position: fixed;
    bottom: 22px; left: 22px;
    z-index: 200;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px rgba(37,211,102,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-fab:hover { transform: scale(1.06); box-shadow: 0 14px 32px rgba(37,211,102,0.55); }
.wa-fab svg { width: 30px; height: 30px; fill: #fff; }
@media (min-width: 761px) { .wa-fab { display: none !important; } }
.wa-fab-label {
    position: absolute; left: 66px;
    white-space: nowrap;
    background: var(--ink-2);
    border: 1px solid var(--line-2);
    color: var(--text);
    font-size: 0.82rem; font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    opacity: 0; transform: translateX(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.wa-fab:hover .wa-fab-label { opacity: 1; transform: none; }
@media (max-width: 760px) {
    .wa-fab-label { display: none; }
    .wa-fab { width: 52px; height: 52px; bottom: 18px; left: 18px; }
}

/* Hinweis-Banner deaktiviert: Schriften selbst gehostet, keine Drittdienste mehr */
.cookie-banner { display: none !important; }
