/* ====================================================================
   MF Product Pages – Design-System
   Zusammengeführtes CSS für mAIstack, Amicable und weitere Produktseiten
   ==================================================================== */

/* === CSS-VARIABLEN === */
:root {
    --orange:             #e35205;
    --orange-light:       #ff7a33;
    --orange-hover:       #ff6a1e;
    --orange-glow:        rgba(227, 82, 5, 0.25);
    --dark:               #0a0a0c;
    --dark-surface:       #111113;
    --dark-elevated:      #1a1a1d;
    --dark-border:        rgba(255, 255, 255, 0.08);
    --dark-border-hover:  rgba(227, 82, 5, 0.4);
    --beige:              #f5f3f0;
    --beige-warm:         #ece6dd;
    --text:               #1a1a1a;
    --text-dark:          #1a1a1a;
    --text-secondary:     #555;
    --text-muted:         #888;
    --white:              #fff;
    --glass-light:        rgba(255, 255, 255, 0.6);
    --glass-light-border: rgba(255, 255, 255, 0.75);
    --glass-dark:         rgba(255, 255, 255, 0.06);
    --glass-dark-border:  rgba(255, 255, 255, 0.12);
    --text-on-dark:       rgba(255, 255, 255, 0.75);
    --text-on-dark-muted: rgba(255, 255, 255, 0.55);
    --font:               'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width:          1200px;
    --section-v:          clamp(120px, 14vw, 180px);
}

/* === THEME-OVERRIDES (Twenty Twenty-One + Twentig) === */
/* Sektionen (wp:html rendert <section> als direktes Kind von .entry-content) */
.entry-content > section {
    max-width: none !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    box-sizing: border-box;
}
/* Rückwärtskompatibilität: wp:group alignfull (ältere Seiten) */
.entry-content > .wp-block-group.alignfull {
    max-width: none !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}
.entry-content > .wp-block-group.alignfull > .wp-block-group__inner-container {
    max-width: none !important;
    width: 100% !important;
}
.entry-content > .wp-block-group.alignfull > .wp-block-group__inner-container > *:not(.container) {
    max-width: none !important;
}
.container .wp-block-group__inner-container > * {
    max-width: none !important;
}
/* Alle vertikalen Abstände entfernen */
.site-main > article,
.entry-content > section,
.entry-content > .wp-block-group.alignfull,
.entry-content > .wp-block-group.alignfull > .wp-block-group__inner-container,
.entry-content > .wp-block-group.alignfull > .wp-block-group__inner-container > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}
.entry-content > .wp-block-group.alignfull > .wp-block-group__inner-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
}
.wp-block-group.alignfull > .wp-block-group__inner-container.is-layout-flow > * + * {
    margin-block-start: 0 !important;
}
.entry-content > *:not(.wp-block-group) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}
/* Noise-Overlay und Sticky-Bar müssen ebenfalls herausbrechen */
.entry-content > .noise,
.entry-content > .sticky-bar,
.entry-content > div:has(> .noise),
.entry-content > div:has(> .sticky-bar) {
    max-width: none !important;
    width: auto !important;
}

/* === NATIVE BLOCK RESETS: wp:group / wp:heading / wp:paragraph ===
   Verhindert, dass Block-Theme-Defaults (padding, gap, margin) unser Layout stören. */

/* Kein block-gap zwischen innerem Content */
section.hero, section.problem, section.solution, section.diff,
section.usecases, section.fundament, section.trust, section.process, section.cta,
section.screenshots {
    --wp--style--block-gap: 0px;
}

/* wp:group Wrapper-Divs ohne eigene Klasse (z.B. Feature-Strip-Spalten) */
.feature-strip > .wp-block-group__inner-container > .wp-block-group {
    padding: 0;
    margin: 0 !important;
}

/* Strukturelle Container-Gruppen: kein extra Padding vom Block-Theme */
.problem__header, .problem__grid,
.solution__header, .solution__grid,
.usecases__header, .usecases__grid,
.fundament__header, .fundament__grid,
.trust__header, .trust__layout,
.process__header, .timeline,
.diff__header,
.cta__header {
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* wp:heading fügt .wp-block-heading hinzu – keine ungewollten Margins */
.wp-block-heading {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

/* Fundament: label ist jetzt <p class="label"> – .fundament-item p darf den Label nicht überschreiben */
.fundament-item p.label { font-size: inherit; line-height: inherit; color: inherit; }

/* Process: label ist jetzt <p class="label"> – .timeline-step p-Stile nicht überschreiben */
.timeline-step p.label { color: var(--orange) !important; max-width: none; font-size: 0.75rem; margin-bottom: 12px; }

/* Trust: cite als <p class="trust__cite"> */
.trust__cite { font-style: normal; font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; }

/* Hero: pill ist jetzt direkt <p class="pill"> ohne hero__pill-Wrapper */
.hero .pill { margin-bottom: 36px; }

/* === SCOPED RESETS === */
.entry-content {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.entry-content *,
.entry-content *::before,
.entry-content *::after {
    box-sizing: border-box;
}
.entry-content a { color: inherit; text-decoration: none; }
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-family: var(--font);
}

/* === LAYOUT === */
.container {
    max-width: var(--max-width) !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 clamp(24px, 4vw, 56px) !important;
}

/* === NOISE-OVERLAY === */
.noise {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* === DOT-GRID === */
.dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
    z-index: 1;
}

/* === ORB-ANIMATIONEN === */
@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -20px) scale(1.05); }
    66%       { transform: translate(-20px, 15px) scale(0.97); }
}
@keyframes float-slower {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(-40px, 25px) scale(1.03); }
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    will-change: transform;
    z-index: 0;
}
.orb--hero-1 {
    width: 800px; height: 800px;
    top: -20%; right: -10%;
    background: radial-gradient(circle, rgba(227, 82, 5, 0.35) 0%, rgba(212, 98, 59, 0.12) 40%, transparent 65%);
    animation: float-slow 20s ease-in-out infinite;
}
.orb--hero-2 {
    width: 600px; height: 600px;
    bottom: -25%; left: -8%;
    background: radial-gradient(circle, rgba(227, 82, 5, 0.2) 0%, rgba(180, 80, 30, 0.06) 50%, transparent 65%);
    animation: float-slower 25s ease-in-out infinite;
}
.orb--diff {
    width: 1000px; height: 600px;
    top: 25%; left: 50%; transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(227, 82, 5, 0.22) 0%, rgba(227, 82, 5, 0.08) 35%, transparent 60%);
    animation: float-slow 22s ease-in-out infinite;
}
.orb--fundament {
    width: 700px; height: 700px;
    bottom: -15%; right: -12%;
    background: radial-gradient(circle, rgba(227, 82, 5, 0.2) 0%, rgba(227, 82, 5, 0.06) 45%, transparent 60%);
    animation: float-slower 18s ease-in-out infinite;
}
.orb--fundament-2 {
    width: 500px; height: 500px;
    top: -10%; left: -8%;
    background: radial-gradient(circle, rgba(227, 82, 5, 0.12) 0%, transparent 55%);
    animation: float-slow 24s ease-in-out infinite;
}
.orb--cta {
    width: 600px; height: 500px;
    top: 15%; left: 8%;
    background: radial-gradient(ellipse, rgba(227, 82, 5, 0.15) 0%, transparent 55%);
    animation: float-slow 20s ease-in-out infinite;
}
/* Amicable-Stil Orbs (nummeriert) */
.orb-1 {
    width: 800px; height: 800px;
    top: -20%; right: -10%;
    background: radial-gradient(circle, rgba(227, 82, 5, 0.35) 0%, rgba(212, 98, 59, 0.12) 40%, transparent 65%);
    animation: float-slow 20s ease-in-out infinite;
}
.orb-2 {
    width: 600px; height: 600px;
    bottom: -10%; left: -10%;
    background: radial-gradient(circle, rgba(227, 82, 5, 0.2) 0%, rgba(180, 80, 30, 0.06) 50%, transparent 65%);
    animation: float-slower 25s ease-in-out infinite;
}
.orb-cta {
    width: 600px; height: 600px;
    top: -40%; left: 50%; transform: translateX(-50%);
    background: radial-gradient(circle, rgba(227, 82, 5, 0.08), transparent 60%);
    filter: blur(60px);
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* === TRENNLINIEN === */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0.15) 80%, transparent);
}
.divider--light {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.1) 80%, transparent);
}

/* === STICKY BAR === */
.sticky-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 60px;
    background: rgba(12, 12, 14, 0.8);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 4vw, 56px);
    z-index: 9998;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid var(--dark-border);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar__brand {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    font-family: var(--font);
}
.sticky-bar__brand span,
.sticky-bar__logo { color: var(--orange); font-weight: 700; }
.sticky-bar__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 24px rgba(227, 82, 5, 0.35);
    font-family: var(--font);
}
.sticky-bar__cta:hover {
    background: var(--orange-hover);
    box-shadow: 0 0 40px rgba(227, 82, 5, 0.5);
    transform: translateY(-1px);
}

/* === TYPOGRAPHIE === */
.headline-xl {
    font-size: clamp(3.2rem, 7.5vw, 5.2rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-family: var(--font);
}
.headline-lg {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-family: var(--font);
}
.subline {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    color: var(--text-secondary);
}
.subline--dark  { color: var(--text-on-dark); }
.subline--light { color: #555; }
.label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    font-family: var(--font);
}
.label::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 10px rgba(227, 82, 5, 0.7);
}
.text-orange,
.accent { color: var(--orange); }

/* Amicable-Stil: Element-Level-Typographie, scoped auf Sektionen */
.hero h1,
.section-dark h1 {
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #fff;
    font-family: var(--font);
}
.section-dark h2,
.diff h2,
.fundament h2 {
    color: #fff;
}

/* === PILL === */
.pill {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 24px !important;
    border-radius: 100px !important;
    font-size: 0.85rem !important;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(227, 82, 5, 0.1), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
    font-family: var(--font);
    text-decoration: none !important;
}
.pill::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 12px rgba(227, 82, 5, 0.7);
}

/* === BUTTONS === */
.btn-primary {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff !important;
    padding: 18px 42px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 40px rgba(227, 82, 5, 0.35), 0 4px 20px rgba(227, 82, 5, 0.2);
    position: relative;
    font-family: var(--font);
    text-decoration: none !important;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 60%);
    pointer-events: none;
}
.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 56px rgba(227, 82, 5, 0.5), 0 8px 32px rgba(227, 82, 5, 0.25);
    color: #fff !important;
}
.btn-ghost {
    display: inline-flex !important;
    align-items: center;
    color: rgba(255, 255, 255, 0.65) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
    text-decoration: none !important;
    font-family: var(--font);
}
.btn-ghost:hover {
    color: #fff !important;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* === SEKTIONS-HELFER === */
.section-dark {
    position: relative;
    overflow: hidden;
    color: #fff;
}
.section-dark > .container { position: relative; z-index: 2; }
.section-light { background: var(--beige); color: var(--text-dark); }
section { padding: var(--section-v) 0 !important; }

/* ========================================
   HERO-SEKTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(165deg, #0a0a0c 0%, #12100e 35%, #1a1410 60%, #0e0c0a 100%);
    color: #fff;
    padding: clamp(120px, 14vw, 180px) 0 clamp(56px, 6vw, 80px) !important;
    position: relative;
    overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }
.hero__pill { margin-bottom: 36px; }
.hero h1,
.hero .headline-xl { max-width: 820px; margin-top: 0 !important; margin-bottom: 32px !important; }
.hero__sub {
    max-width: 580px;
    font-size: clamp(1.1rem, 1.6vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-on-dark);
    margin-top: 0 !important;
    margin-bottom: 52px !important;
}
.hero .subline { margin-top: 0 !important; margin-bottom: clamp(32px, 4vw, 48px) !important; color: var(--text-on-dark); max-width: 560px; }
.hero .pill { margin-top: 0 !important; margin-bottom: 36px !important; }
.hero__actions,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.hero__visual {
    max-width: 900px;
    margin-top: 88px !important;
}
.hero__visual-inner {
    padding: 0;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.hero__visual-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(227, 82, 5, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.hero__visual-inner::after {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: none;
    z-index: 1;
}

/* ========================================
   AGENT-VISUALISIERUNG (mAIstack Hero)
   ======================================== */
.agent-viz { position: relative; z-index: 1; }
.agent-viz__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.agent-viz__dots { display: flex; gap: 6px; }
.agent-viz__dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}
.agent-viz__title {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
    font-family: var(--font);
}
.agent-viz__reasoning {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 56px;
}
.agent-viz__spinner {
    width: 18px; height: 18px;
    border: 2px solid rgba(227, 82, 5, 0.25);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: agent-spin 0.8s linear infinite;
    flex-shrink: 0;
}
@keyframes agent-spin { to { transform: rotate(360deg); } }
.agent-viz__thoughts {
    position: relative;
    height: 1.4em;
    overflow: hidden;
    flex: 1;
}
.thought {
    position: absolute;
    left: 0; top: 0;
    font-size: 0.9rem;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s, transform 0.5s;
}
[data-current="1"] .thought-1, [data-current="2"] .thought-2,
[data-current="3"] .thought-3, [data-current="4"] .thought-4,
[data-current="5"] .thought-5, [data-current="6"] .thought-6,
[data-current="7"] .thought-7, [data-current="8"] .thought-8 {
    opacity: 1; transform: none; color: rgba(255, 255, 255, 0.75);
}
[data-current="2"] .thought-1, [data-current="3"] .thought-2,
[data-current="4"] .thought-3, [data-current="5"] .thought-4,
[data-current="6"] .thought-5, [data-current="7"] .thought-6,
[data-current="8"] .thought-7 {
    opacity: 0; transform: translateY(-8px);
}
.agent-viz__progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
}
.agent-viz__progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    box-shadow: 0 0 12px rgba(227, 82, 5, 0.5);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0 1px 1px 0;
}
.agent-viz__canvas {
    display: flex;
    gap: 0;
    padding: 18px 18px 14px;
    min-height: 160px;
    align-items: stretch;
    opacity: 1;
    transition: opacity 0.3s;
}
.agent-viz.resetting .agent-viz__canvas,
.agent-viz.resetting .agent-viz__reasoning { opacity: 0; transition: opacity 1.2s ease; }
.zone { display: flex; flex-direction: column; border-radius: 10px; }
.zone__label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0 0 10px;
    flex-shrink: 0;
    font-family: var(--font);
}
.zone--customer {
    flex: 0 0 115px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 12px 14px;
    border-radius: 10px 0 0 10px;
    position: relative;
    display: flex; flex-direction: column;
}
.zone--customer .zone__label { color: rgba(255, 255, 255, 0.35); position: relative; z-index: 3; flex-shrink: 0; }
.slot-viewport {
    height: 120px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
}
.slot-reel {
    display: flex; flex-direction: column;
    gap: 8px;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.slot-reel .cust-block { flex-shrink: 0; }
.zone--lane-in, .zone--lane-out {
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}
.zone--maistack {
    flex: 1;
    background: rgba(227, 82, 5, 0.03);
    border: 1px solid rgba(227, 82, 5, 0.12);
    padding: 14px;
    border-radius: 2px;
}
.zone--maistack .zone__label { color: rgba(227, 82, 5, 0.6); }
.ms-blocks { display: flex; flex-wrap: wrap; gap: 8px; align-content: start; }
.zone--output {
    flex: 0 0 110px;
    background: rgba(168, 85, 247, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.12);
    padding: 14px 12px;
    gap: 8px;
    border-radius: 0 10px 10px 0;
    display: flex; flex-direction: column;
}
.zone--output .zone__label { color: rgba(168, 85, 247, 0.5); }
.cust-block {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.35);
    transition: all 0.7s ease;
    white-space: nowrap;
    text-align: center;
    font-family: var(--font);
}
.s1 .cust-block--erp, .s4 .cust-block--sp, .s5 .cust-block--mail {
    border-color: rgba(100, 165, 255, 0.25);
    color: rgba(255, 255, 255, 0.6);
    background: rgba(100, 165, 255, 0.06);
}
[data-current="1"] .cust-block--erp,
[data-current="4"] .cust-block--sp,
[data-current="5"] .cust-block--mail {
    border-color: rgba(100, 165, 255, 0.6);
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px rgba(100, 165, 255, 0.25);
    background: rgba(100, 165, 255, 0.1);
}
.lane-link {
    width: 100%; height: 2px;
    position: relative; overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.6s;
}
.lane-link::after {
    content: '';
    position: absolute; top: -1px;
    width: 10px; height: 4px;
    border-radius: 2px;
    background: var(--orange);
    box-shadow: 0 0 10px rgba(227, 82, 5, 0.9);
    animation: lane-particle 1.2s linear infinite;
}
@keyframes lane-particle {
    0%   { left: -10px; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: calc(100% + 10px); opacity: 0; }
}
.s1 .lane-link--in, .s8 .lane-link--out { opacity: 1; }
[data-current="1"] .lane-link--in::after,
[data-current="8"] .lane-link--out::after {
    box-shadow: 0 0 16px rgba(227, 82, 5, 1), 0 0 6px rgba(227, 82, 5, 0.9);
    width: 14px;
}
.ms-block {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.73rem;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    opacity: 0;
    transform: scale(0.88) translateY(8px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s;
    border: 1px solid;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-family: var(--font);
}
.ms-block--connector {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(59, 130, 246, 0.06));
    border-color: rgba(59, 130, 246, 0.25);
    color: rgba(147, 197, 253, 1);
}
.ms-block--process {
    background: linear-gradient(135deg, rgba(227, 82, 5, 0.18), rgba(227, 82, 5, 0.06));
    border-color: rgba(227, 82, 5, 0.28);
    color: rgba(251, 191, 146, 1);
}
.ms-block--infra {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(34, 197, 94, 0.05));
    border-color: rgba(34, 197, 94, 0.22);
    color: rgba(134, 239, 172, 1);
}
.s1 .ms-1, .s2 .ms-2, .s3 .ms-3,
.s4 .ms-4, .s6 .ms-6, .s7 .ms-7 { opacity: 1; transform: none; }
[data-current="1"] .ms-1 { box-shadow: 0 0 26px rgba(59, 130, 246, 0.35), 0 2px 10px rgba(0, 0, 0, 0.2); }
[data-current="2"] .ms-2 { box-shadow: 0 0 26px rgba(34, 197, 94, 0.3), 0 2px 10px rgba(0, 0, 0, 0.2); }
[data-current="3"] .ms-3 { box-shadow: 0 0 26px rgba(34, 197, 94, 0.3), 0 2px 10px rgba(0, 0, 0, 0.2); }
[data-current="4"] .ms-4 { box-shadow: 0 0 26px rgba(227, 82, 5, 0.35), 0 2px 10px rgba(0, 0, 0, 0.2); }
[data-current="6"] .ms-6 { box-shadow: 0 0 26px rgba(34, 197, 94, 0.3), 0 2px 10px rgba(0, 0, 0, 0.2); }
[data-current="7"] .ms-7 { box-shadow: 0 0 26px rgba(227, 82, 5, 0.35), 0 2px 10px rgba(0, 0, 0, 0.2); }
.s5 .ms-discard { animation: shake-discard 2.8s ease forwards; }
@keyframes shake-discard {
    0%   { opacity: 0; transform: scale(0.88) translateY(8px); }
    15%  { opacity: 1; transform: none; box-shadow: 0 0 22px rgba(227, 82, 5, 0.3); }
    60%  { opacity: 1; }
    72%  { transform: translateX(-5px); opacity: 0.6; }
    80%  { transform: translateX(5px); opacity: 0.3; }
    100% { opacity: 0; transform: scale(0.88); }
}
.out-block {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.73rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: scale(0.88) translateY(8px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(168, 85, 247, 0.06));
    color: rgba(216, 180, 254, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: var(--font);
}
.s8 .out-block { opacity: 1; transform: none; }
[data-current="8"] .out-block { box-shadow: 0 0 26px rgba(168, 85, 247, 0.35), 0 2px 10px rgba(0, 0, 0, 0.2); }
.agent-viz__status {
    padding: 12px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}
.agent-viz__status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 10px rgba(227, 82, 5, 0.7);
    display: inline-block;
    margin-right: 8px;
    animation: status-pulse 2s ease-in-out infinite;
}
@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}
.zone-flow-arrow {
    display: none;
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    line-height: 1;
    padding: 2px 0;
}

/* ========================================
   TERMINAL-MOCK (Amicable Hero)
   ======================================== */
.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--dark-border);
    position: relative;
    z-index: 2;
}
.terminal-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.terminal-dot:nth-child(1) { background: #ff5f57; }
.terminal-dot:nth-child(2) { background: #febc2e; }
.terminal-dot:nth-child(3) { background: #28c840; }
.terminal-title {
    flex: 1;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}
.terminal-log {
    padding: 16px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 2;
    border-bottom: 1px solid var(--dark-border);
    position: relative;
    z-index: 2;
}
.terminal-log .log-accent { color: var(--orange); }
.terminal-log .log-green  { color: #28c840; }
.terminal-body {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 2;
}
.terminal-col-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 12px;
}
.terminal-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(227, 82, 5, 0.12);
    border: 1px solid rgba(227, 82, 5, 0.25);
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: var(--orange);
    margin: 3px;
}
.terminal-tag-muted {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 3px;
}
.terminal-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    border-top: 1px solid var(--dark-border);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}
.terminal-status-dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: #28c840;
    border-radius: 50%;
    margin-right: 6px;
}

/* ========================================
   PROBLEM-SEKTION
   ======================================== */
.problem {
    background: var(--white);
    padding: var(--section-v) 0;
    position: relative;
}
.wp-block-group.problem__header { max-width: 680px !important; margin-left: 0 !important; margin-right: auto !important; margin-bottom: 80px !important; }
.problem__grid > .wp-block-group__inner-container,
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.wp-block-group.problem-card { margin: 0 !important; }
.problem-card {
    border-radius: 24px;
    padding: clamp(32px, 4vw, 48px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 0 #fff inset, 0 12px 48px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1px 0 #fff inset, 0 24px 64px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.04);
}
.problem-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 0 !important;
    margin-bottom: 14px !important;
    letter-spacing: -0.02em;
    font-family: var(--font);
}
.problem-card p { font-size: 0.95rem; line-height: 1.75; color: var(--text-secondary); margin-top: 0 !important; margin-bottom: 0 !important; }
.problem-stat {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--orange);
    font-size: 0.88rem;
}

/* ========================================
   LÖSUNGS-SEKTION
   ======================================== */
.solution {
    background: var(--beige);
    padding: var(--section-v) 0;
    position: relative;
}
.wp-block-group.solution__header { max-width: 680px !important; margin-left: 0 !important; margin-right: auto !important; margin-bottom: 80px !important; }
.solution__grid > .wp-block-group__inner-container,
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.section-solution {
    background: linear-gradient(175deg, #0e0c0a 0%, #14100c 30%, #0a0a0c 70%, #0c0a0e 100%);
    padding: var(--section-v) 0;
    position: relative;
    overflow: hidden;
}
.section-solution .orb-1 {
    width: 1000px; height: 600px;
    top: 25%; right: -10%;
    background: radial-gradient(rgba(227, 82, 5, 0.22) 0%, rgba(227, 82, 5, 0.08) 35%, transparent 60%);
}
.wp-block-group.solution-card { margin: 0 !important; }
.solution-card {
    border-radius: 24px;
    padding: clamp(28px, 3.5vw, 44px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 0 #fff inset, 0 12px 48px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1px 0 #fff inset, 0 24px 64px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.04);
}
.solution-card h3 { margin-top: 0 !important; margin-bottom: 12px !important; }
.solution-card strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    color: var(--dark);
    letter-spacing: -0.02em;
    font-family: var(--font);
}
.solution-card p { font-size: 0.93rem; line-height: 1.7; color: var(--text-secondary); margin-top: 0 !important; margin-bottom: 0 !important; }

/* ========================================
   DIFFERENZIERUNGS-SEKTION (Feature-Strips)
   ======================================== */
.diff,
.section-diff {
    background: linear-gradient(175deg, #0e0c0a 0%, #14100c 30%, #0a0a0c 70%, #0c0a0e 100%);
    color: #fff;
    padding: var(--section-v) 0;
    position: relative;
    overflow: hidden;
}
.diff .container,
.section-diff .container { position: relative; z-index: 2; }
.wp-block-group.diff__header,
.section-diff__header { max-width: 700px !important; margin-left: 0 !important; margin-right: auto !important; margin-bottom: 88px !important; }
.diff__header h2,
.section-diff h2 { color: #fff; }
.diff__header .subline,
.section-diff .subline { color: var(--text-on-dark); }
.section-diff .orb-1 {
    width: 700px; height: 700px;
    bottom: -15%; right: -10%;
    background: radial-gradient(circle, rgba(227, 82, 5, 0.2) 0%, rgba(227, 82, 5, 0.06) 45%, transparent 60%);
}
.section-diff .orb-2 {
    width: 500px; height: 500px;
    top: -10%; left: -10%;
    background: radial-gradient(circle, rgba(227, 82, 5, 0.12) 0%, transparent 55%);
}
.feature-strip {
    padding: clamp(52px, 6vw, 80px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.feature-strip > .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: clamp(48px, 7vw, 112px);
    align-items: start;
}
.feature-strip:last-child { border-bottom: none; }
.feature-strip h3,
.feature-strip__title {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #fff;
    font-family: var(--font);
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.feature-strip__accent {
    width: 48px; height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin-top: 20px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    box-shadow: 0 0 24px rgba(227, 82, 5, 0.7), 0 0 8px rgba(227, 82, 5, 0.5);
}
.feature-strip p,
.feature-strip__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-on-dark);
    margin-top: 0 !important;
    margin-bottom: 28px !important;
}
.feature-strip__result {
    display: inline-block;
    padding: 16px 28px;
    border-radius: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, rgba(227, 82, 5, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(227, 82, 5, 0.2);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 0 20px rgba(227, 82, 5, 0.08);
}

/* ========================================
   ANWENDUNGSFÄLLE / AUDIENCES
   ======================================== */
.usecases {
    background: var(--beige);
    padding: var(--section-v) 0;
}
.wp-block-group.usecases__header { max-width: 700px !important; margin-left: 0 !important; margin-right: auto !important; margin-bottom: 80px !important; }
.usecases__grid > .wp-block-group__inner-container,
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
/* Letztes Item über volle Breite wenn ungerade Gesamtzahl (3, 5, 7 …) */
.usecases__grid > .wp-block-group__inner-container > .wp-block-group:last-child:nth-child(odd) {
    grid-column: span 2;
}
.wp-block-group.usecase-card {
    margin: 0 !important;
}
.usecase-card,
.audience-card {
    border-radius: 24px;
    padding: clamp(32px, 4vw, 48px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 0 #fff inset, 0 12px 48px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}
.audience-card.wide { grid-column: span 2; }
.usecase-card:hover,
.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1px 0 #fff inset, 0 24px 64px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.04);
}
.usecase-card h3,
.audience-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 0 !important;
    margin-bottom: 22px !important;
    letter-spacing: -0.02em;
    font-family: var(--font);
}
.job-flow {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    padding: 0;
}
.job-flow li {
    background: rgba(0, 0, 0, 0.04);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid rgba(0, 0, 0, 0.03);
    font-family: var(--font);
}
.job-flow li.arrow  { background: transparent; border: none; padding: 0; color: #ccc; font-size: 0.85rem; }
.job-flow li.result { background: var(--orange); color: #fff; border-color: transparent; box-shadow: 0 2px 16px rgba(227, 82, 5, 0.3); }
.usecase-card p,
.audience-card p { font-size: 0.95rem; line-height: 1.75; color: var(--text-secondary); margin-top: auto; }

/* ========================================
   FUNDAMENT / FEATURE-GRID (dunkel)
   ======================================== */
.fundament,
.section-features {
    background: linear-gradient(170deg, #0c0a0e 0%, #12100c 40%, #0a0a0c 100%);
    color: #fff;
    padding: var(--section-v) 0;
    position: relative;
    overflow: hidden;
}
.fundament .container,
.section-features .container { position: relative; z-index: 2; }
.wp-block-group.fundament__header { max-width: 700px !important; margin-left: 0 !important; margin-right: auto !important; margin-bottom: 80px !important; text-align: left; }
.fundament__header h2,
.section-features h2 { color: #fff; }
.fundament__header .subline,
.section-features .subline { color: var(--text-on-dark); }
.section-features .orb-1 {
    width: 900px; height: 900px;
    top: -20%; left: -15%;
    background: radial-gradient(circle, rgba(227, 82, 5, 0.18) 0%, rgba(227, 82, 5, 0.05) 40%, transparent 60%);
}
.section-features .orb-2 {
    width: 600px; height: 600px;
    bottom: -10%; right: -5%;
    background: radial-gradient(circle, rgba(227, 82, 5, 0.15) 0%, transparent 55%);
}
.fundament__grid > .wp-block-group__inner-container,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.wp-block-group.fundament-item {
    margin: 0 !important;
    padding: clamp(28px, 3.5vw, 36px);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
.fundament-item::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}
.fundament-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
    border-color: var(--dark-border-hover);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}
.fundament-item .label { margin-top: 0 !important; margin-bottom: 12px !important; }
.fundament-item strong,
.fundament-item h3 {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    color: #fff;
    line-height: 1.3;
    font-family: var(--font);
}
.fundament-item p { font-size: 0.9rem; line-height: 1.7; color: var(--text-on-dark-muted); margin-top: 0 !important; margin-bottom: 0 !important; }

/* ========================================
   VERTRAUEN / SOCIAL PROOF
   ======================================== */
.trust {
    background: var(--beige);
    padding: var(--section-v) 0;
}
.trust__header { text-align: center; margin-bottom: 80px !important; }
.trust__layout > .wp-block-group__inner-container,
.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 80px);
    align-items: start;
}
.wp-block-group.trust__quote,
.wp-block-group.trust__text {
    margin: 0 !important;
}
.trust__quote,
.proof-quote {
    border-radius: 28px;
    padding: clamp(36px, 4vw, 52px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 0 #fff inset, 0 12px 48px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
}
.proof-quote__bar {
    width: 48px; height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin-bottom: 24px;
}
.trust__quote blockquote,
.proof-quote blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    color: #333;
    margin: 0 0 20px !important;
    padding: 24px 0 0 !important;
    border: none !important;
    border-left: none !important;
    position: relative;
}
.trust__quote .wp-block-quote p {
    font-size: inherit;
    font-style: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0 !important;
}
.trust__quote blockquote::before {
    content: '';
    display: block;
    width: 48px; height: 3px;
    background: var(--orange);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(227, 82, 5, 0.35);
    position: absolute;
    top: 0; left: 0;
}
.trust__quote cite,
.proof-quote cite { font-style: normal; font-size: 0.85rem; color: var(--text-muted); }
.trust__text p,
.proof-text p { font-size: 1.05rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 28px; }
.trust__text p:last-child { font-weight: 700; color: var(--dark); font-size: 1.2rem; letter-spacing: -0.02em; }
.proof-text strong { color: var(--text-dark); font-weight: 600; }

/* ========================================
   PROZESS / TIMELINE
   ======================================== */
.process {
    background: var(--white);
    padding: var(--section-v) 0;
}
.wp-block-group.process__header {
    text-align: center;
    max-width: 600px !important;
    margin: 0 auto 96px !important;
}
/* Grid-Timeline (maistack-Stil) */
.timeline > .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process .timeline > .wp-block-group__inner-container::before {
    content: '';
    position: absolute;
    top: 40px; left: 8%; right: 8%;
    height: 2px;
    background: linear-gradient(90deg,
        var(--orange), rgba(227, 82, 5, 0.15) 30%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(227, 82, 5, 0.15) 70%, var(--orange));
    z-index: 0;
}
/* Flex-Timeline (Amicable-Stil) */
.timeline-section { text-align: center; background: var(--beige); padding: var(--section-v) 0; }
.timeline-section h2 { text-align: center; }
.timeline-section .subline { margin-left: auto; margin-right: auto; text-align: center; }
.timeline-section .timeline {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: clamp(48px, 6vw, 80px);
    position: relative;
    grid-template-columns: unset;
}
.timeline-section .timeline::before {
    content: '';
    position: absolute;
    top: 32px; left: 15%; right: 15%;
    height: 2px;
    background: rgba(0, 0, 0, 0.08);
    z-index: 0;
}
.timeline-step {
    margin: 0 !important;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.timeline-step > .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}
.timeline-dot {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 28px;
    box-shadow: 0 0 40px rgba(227, 82, 5, 0.35), 0 4px 20px rgba(227, 82, 5, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    font-family: var(--font);
}
.timeline-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(227, 82, 5, 0.2);
}
.timeline-dot:hover {
    transform: scale(1.1);
    box-shadow: 0 0 56px rgba(227, 82, 5, 0.5), 0 8px 32px rgba(227, 82, 5, 0.2);
}
.timeline-circle {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    font-family: var(--font);
}
.timeline-circle.muted { background: rgba(227, 82, 5, 0.25); }
.timeline-step .label { margin-bottom: 12px; }
.timeline-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    font-family: var(--font);
}
.timeline-step p { font-size: 0.85rem; line-height: 1.65; color: var(--text-muted); max-width: 180px; margin-top: 0 !important; }

/* ========================================
   CTA-SEKTION
   ======================================== */
.cta {
    background: var(--beige);
    padding: var(--section-v) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta__header { text-align: center; margin-bottom: 56px; }
.cta__header .subline { margin-top: 20px; }
.cta .container { position: relative; z-index: 1; }
.cta h2 { text-align: center; }
.cta .subline { margin-left: auto; margin-right: auto; text-align: center; }
.wp-block-group.cta__form-wrapper {
    max-width: 640px !important;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 64px);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.55) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 0 #fff inset, 0 16px 64px rgba(0, 0, 0, 0.06);
    position: relative;
}
.cta__contacts {
    margin-top: 40px !important;
    margin-bottom: 0 !important;
}
.cta__contacts > .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.cta__form-placeholder {
    color: var(--text-secondary);
    padding: 2rem 0;
}
.wp-block-group.cta__contact {
    margin: 0 !important;
    display: inline-flex;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: var(--glass-light);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-light-border);
    box-shadow: 0 1px 0 #fff inset, 0 4px 20px rgba(0, 0, 0, 0.04);
}
.wp-block-group.cta__contact > .wp-block-group__inner-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
}
.cta__contact-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--beige-warm);
    flex-shrink: 0;
    overflow: hidden;
    margin: 0 !important;
}
.cta__contact-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wp-block-group.cta__contact strong { color: var(--dark); }
.wp-block-group.cta__contact p { margin: 0; }

/* ========================================
   SCROLL-REVEAL-ANIMATIONEN
   ======================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-ready .reveal          { opacity: 0; transform: translateY(48px); }
.reveal-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* CSS-Fallback-Animation (Amicable-Stil) */
.reveal-css {
    opacity: 0;
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.reveal-css.d1 { animation-delay: 0.1s; }
.reveal-css.d2 { animation-delay: 0.2s; }
.reveal-css.d3 { animation-delay: 0.3s; }
.reveal-css.d4 { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-css { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
    .orb { animation: none !important; }
}

/* ========================================
   HERO – BILD
   ======================================== */
.wp-block-group.hero-image-single {
    margin-top: 72px !important;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.hero-image-single > .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
}
.wp-block-image.hero-image-single__img {
    margin: 0 !important;
    display: block;
    line-height: 0;
}
.hero-image-single__img img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-image-label {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 20px !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-family: 'JetBrains Mono', monospace;
    margin: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.label-accent { color: var(--orange); margin-right: 6px; }

/* ========================================
   SCREENSHOTS / TABBED IMAGES
   ======================================== */
.screenshots {
    background: linear-gradient(165deg, #0a0a0c 0%, #12100e 35%, #1a1410 60%, #0e0c0a 100%);
    overflow: hidden;
}
.screenshots .container { position: relative; z-index: 2; }
.screenshots h2 { color: #fff; margin-top: 0 !important; margin-bottom: 0 !important; }
.screenshots .subline { color: var(--text-on-dark); margin-top: 0 !important; margin-bottom: 48px !important; }
.tab-container { width: 100%; }
.tab-bar {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.tab-btn {
    flex: 1;
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    font-family: var(--font);
}
.tab-btn .tab-dot { color: rgba(255, 255, 255, 0.2); font-size: 0.6rem; }
.tab-btn.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.tab-btn.active .tab-dot { color: var(--orange); }
.tab-btn:hover:not(.active) { color: rgba(255, 255, 255, 0.75); }
.tab-content-area { position: relative; }
.tab-panel {
    display: none;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.tab-panel.active { display: block; }
.tab-panel img { width: 100%; height: auto; display: block; }
.tab-desc {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .feature-strip > .wp-block-group__inner-container { grid-template-columns: 1fr; }
    .solution__grid > .wp-block-group__inner-container,
    .solution-grid              { grid-template-columns: 1fr; }
    .fundament__grid > .wp-block-group__inner-container,
    .feature-grid               { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .problem__grid > .wp-block-group__inner-container,
    .problem-grid               { grid-template-columns: 1fr; }
    .usecases__grid > .wp-block-group__inner-container,
    .audience-grid              { grid-template-columns: 1fr; }
    .audience-card.wide,
    .usecases__grid > .wp-block-group__inner-container > .wp-block-group:last-child:nth-child(odd) { grid-column: span 1; }
    .trust__layout > .wp-block-group__inner-container,
    .proof-grid                 { grid-template-columns: 1fr; }
    .timeline > .wp-block-group__inner-container { grid-template-columns: 1fr; gap: 48px; justify-items: center; }
    .timeline-step { width: 100%; max-width: 320px; }
    .process .timeline > .wp-block-group__inner-container::before,
    .timeline-section .timeline::before { display: none; }
    .timeline-section .timeline { flex-direction: column; align-items: center; gap: 32px; }
    .fundament__grid > .wp-block-group__inner-container,
    .feature-grid               { grid-template-columns: 1fr; }
    .hero h1 br                 { display: none; }
    .orb                        { display: none; }
    .hero__visual               { margin-top: 48px; }
    .terminal-body              { grid-template-columns: 1fr; }
    /* Agent-Viz Mobile */
    .agent-viz__canvas          { flex-direction: column; gap: 0; min-height: auto; padding: 12px; }
    .zone--lane-in,
    .zone--lane-out             { display: none; }
    .zone-flow-arrow            { display: block; }
    .zone--customer,
    .zone--maistack,
    .zone--output               { flex: none; border-radius: 10px; width: 100%; padding: 12px; }
    .slot-viewport              { height: 32px; overflow: hidden; -webkit-mask-image: none; mask-image: none; }
    .slot-reel                  { position: relative; height: 100%; transform: none !important; transition: none !important; gap: 0; }
    .slot-reel .cust-block      { position: absolute; top: 0; left: 0; right: 0; opacity: 0; transition: opacity 0.5s ease; }
    .slot-reel .cust-block.carousel-active { opacity: 1; }
    .ms-blocks                  { gap: 6px; }
    .zone--output               { justify-content: flex-start; }
    .ms-block, .out-block,
    .cust-block                 { font-size: 0.65rem; padding: 6px 10px; }
    .thought                    { font-size: 0.72rem; }
    .agent-viz__title           { font-size: 0.75rem; }
    .zone__label                { font-size: 0.55rem; padding-bottom: 8px; }
}
