/* ================================================
   Cloud Gateway | Riecken.io – Light Mode Stylesheet
   ================================================ */

:root {
    /* Brand colours extracted from the real logo */
    --brand-orange: #ff9400;
    --brand-orange-dark: #e07d00;
    --brand-orange-light: #ffab33;
    --brand-gray: #696969;

    /* Accent */
    --primary: #ff9400;
    --primary-dark: #e07d00;
    --primary-light: #ffab33;
    --primary-bg: rgba(255, 148, 0, 0.08);
    --primary-border: rgba(255, 148, 0, 0.25);

    /* UI */
    --bg: #f8f9fb;
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --bg-card2: #f2f4f7;
    --bg-muted: #f0f2f5;
    --border: #e4e7ec;
    --border-hover: #c8cdd6;

    /* Typography */
    --text: #1a1f2e;
    --text-muted: #4b5563;
    --text-faint: #9ca3af;
    --white: #ffffff;

    /* Gradients */
    --gradient: linear-gradient(135deg, #ff9400, #ff6b00);
    --gradient-soft: linear-gradient(135deg, rgba(255,148,0,0.1), rgba(255,107,0,0.06));

    /* Misc */
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 2px 12px rgba(0,0,0,0.04);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-muted); }
::-webkit-scrollbar-thumb { background: var(--brand-orange); border-radius: 3px; }

/* ── Utility ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 50px;
    font-size: 0.92rem; font-weight: 600;
    text-decoration: none; cursor: pointer; border: none;
    transition: var(--transition); white-space: nowrap; font-family: inherit;
}
.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(255,148,0,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,148,0,0.5);
}
.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    border-color: var(--brand-orange);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-outline {
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    transform: translateY(-2px);
    background: var(--primary-bg);
}
.btn-white {
    background: white;
    color: var(--primary-dark);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 14px;
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
    border-radius: 50px;
    color: var(--brand-orange-dark);
    font-size: 0.77rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 800; color: var(--text);
    margin-bottom: 14px; line-height: 1.2;
}
.section-desc {
    font-size: 1.05rem; color: var(--text-muted);
    max-width: 620px; margin: 0 auto;
}

/* ================================================================
   NAVBAR + MEGA MENU
   ================================================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0;
    transition: var(--transition);
    background: rgba(255,255,255,0.0);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: stretch; justify-content: space-between; gap: 8px;
    height: 58px;
}
.nav-logo {
    display: flex; align-items: center; text-decoration: none;
    flex-shrink: 0; padding-right: 20px;
    margin-right: 4px;
}
.nav-logo-img { height: 34px; width: auto; display: block; }

/* ── Nav items ─────────────────────────────────────── */
.nav-links {
    display: flex; align-items: stretch; gap: 0; flex: 1;
}
.nav-item {
    position: relative; display: flex; align-items: stretch;
}
.nav-item-mega { position: static; }

.nav-link {
    display: flex; align-items: center; gap: 6px;
    padding: 0 14px;
    color: var(--text-muted);
    text-decoration: none; font-size: 0.855rem; font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    white-space: nowrap; background: none; border-top: none; border-left: none; border-right: none;
    cursor: pointer; font-family: inherit;
}
.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item-mega:hover > .nav-link {
    color: var(--text);
    border-bottom-color: var(--brand-orange);
    background: rgba(255,148,0,0.04);
}
.nav-link.nav-link-active {
    color: var(--brand-orange); font-weight: 600;
    border-bottom-color: var(--brand-orange);
}
.nav-chevron {
    font-size: 0.62rem; margin-top: 1px;
    transition: transform 0.25s ease;
}
.nav-item-mega:hover .nav-chevron {
    transform: rotate(180deg);
}

/* CTA button */
.nav-link.nav-cta {
    margin: auto 0 auto auto; /* pushes to far right */
    padding: 7px 16px; height: 34px;
    background: var(--gradient);
    color: white; border-radius: 50px; font-weight: 600;
    border: none;
    box-shadow: 0 2px 10px rgba(255,148,0,0.3);
    align-items: center;
    display: flex;
}
.nav-link.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,148,0,0.5);
    border-bottom-color: transparent;
    background: var(--gradient);
}

/* ── Mega Menu ─────────────────────────────────────── */
.mega-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: white;
    border-top: 2px solid var(--brand-orange);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
    opacity: 0; pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 999;
}
.mega-menu-narrow {
    left: auto; right: auto;
    width: 720px;
    /* will be overridden by JS to left-align under trigger */
}
.nav-item-mega:hover .mega-menu {
    opacity: 1; pointer-events: all; transform: translateY(0);
}
.mega-inner {
    max-width: 1200px; margin: 0 auto; padding: 28px 24px;
    display: flex; gap: 0;
}

/* ── Mega columns ──────────────────────────────────── */
.mega-col {
    flex: 1; padding: 0 24px;
    border-right: 1px solid var(--border);
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child  { border-right: none; padding-right: 0; }

.mega-col-title {
    font-size: 0.69rem; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-faint); margin-bottom: 14px;
    padding-bottom: 8px; border-bottom: 1px solid var(--border);
}

/* Highlighted last column */
.mega-col-highlight {
    background: rgba(255,148,0,0.02); border-radius: 12px;
    padding: 0 20px 16px 20px;   /* top: 0 – bündig mit anderen Spalten */
    display: flex; flex-direction: column;
}
.mega-col-highlight .mega-col-title { color: var(--brand-orange-dark); }

/* External-link icon inside label */
.mega-ext-icon {
    font-size: 0.6rem; color: var(--text-faint);
    margin-left: 4px; vertical-align: middle;
    opacity: 0.7;
    transition: opacity 0.15s, color 0.15s;
}
.mega-item:hover .mega-ext-icon { opacity: 1; color: var(--brand-orange); }

/* ── Mega items ────────────────────────────────────── */
.mega-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 10px; border-radius: 10px;
    text-decoration: none; color: inherit;
    transition: background 0.15s ease;
    margin-bottom: 2px;
}
.mega-item:hover { background: rgba(255,148,0,0.06); }
.mega-item:hover .mega-item-label { color: var(--brand-orange); }

.mega-item-icon {
    width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.14);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; color: #4f5ad2;
    transition: background 0.15s ease;
}
.mega-item:hover .mega-item-icon { background: rgba(99,102,241,0.14); }

.mega-item-icon-orange {
    background: rgba(255,148,0,0.1);
    border-color: rgba(255,148,0,0.2);
    color: var(--brand-orange);
}
.mega-item:hover .mega-item-icon-orange { background: rgba(255,148,0,0.18); }

.mega-item-icon-green {
    background: rgba(22,163,74,0.09);
    border-color: rgba(22,163,74,0.2);
    color: #16a34a;
}
.mega-item:hover .mega-item-icon-green { background: rgba(22,163,74,0.16); }

/* "Premium" inline badge inside a menu label */
.mega-badge {
    display: inline-flex; align-items: center;
    padding: 1px 7px; border-radius: 50px;
    font-size: 0.65rem; font-weight: 700;
    background: rgba(255,148,0,0.12);
    color: var(--brand-orange);
    border: 1px solid rgba(255,148,0,0.25);
    vertical-align: middle; margin-left: 5px;
    letter-spacing: 0.03em;
}

/* Single-column narrow menus (Beratung, Über uns) */
.mega-menu-single {
    left: auto; right: auto;
    width: 420px;
}

.mega-item-label {
    font-size: 0.855rem; font-weight: 600; color: var(--text);
    line-height: 1.25; margin-bottom: 2px;
    transition: color 0.15s;
    white-space: nowrap;
}
.mega-item-desc {
    font-size: 0.775rem; color: var(--text-faint); line-height: 1.45;
}

/* CTA box inside mega column */
.mega-cta-box {
    margin-top: 16px; padding: 14px 14px;
    background: linear-gradient(135deg, rgba(255,148,0,0.08), rgba(255,107,0,0.05));
    border: 1px solid rgba(255,148,0,0.2);
    border-radius: 12px; text-align: center;
}
.mega-cta-text {
    font-size: 0.78rem; color: var(--text-muted);
    margin-bottom: 10px; font-weight: 500;
}
.mega-cta-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 16px; border-radius: 50px;
    background: var(--gradient); color: white;
    font-size: 0.82rem; font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(255,148,0,0.3);
    transition: var(--transition);
}
.mega-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 5px 18px rgba(255,148,0,0.45); }

/* ── Mobile toggle ─────────────────────────────────── */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
    align-self: center;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--text); border-radius: 2px; transition: var(--transition);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    min-height: 100vh; padding: 120px 0 80px;
    display: flex; align-items: center; position: relative;
    background: linear-gradient(160deg, #fff 0%, #fef9f2 50%, #fff5e6 100%);
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,148,0,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,148,0,0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 85% 85% at 50% 40%, black 40%, transparent 100%);
}
.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(90px); animation: float 9s ease-in-out infinite;
}
.orb-1 {
    width: 500px; height: 500px;
    background: rgba(255,148,0,0.1);
    top: -100px; right: 0%;
}
.orb-2 {
    width: 320px; height: 320px;
    background: rgba(255,107,0,0.07);
    bottom: 0; left: 5%;
    animation-delay: -4s;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-28px)} }

.hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px;
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
    border-radius: 50px;
    color: var(--brand-orange-dark);
    font-size: 0.82rem; font-weight: 600;
    margin-bottom: 22px; animation: fadeInUp 0.6s ease both;
}
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.3rem, 4.5vw, 3.5rem);
    font-weight: 800; color: var(--text); line-height: 1.1;
    margin-bottom: 20px; animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-desc {
    font-size: 1.1rem; color: var(--text-muted); line-height: 1.7;
    margin-bottom: 14px; animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-desc strong { color: var(--text); }
.hero-sub {
    font-size: 1rem; color: var(--text-muted); margin-bottom: 32px;
    animation: fadeInUp 0.6s 0.25s ease both;
}
.hero-sub strong { color: var(--brand-orange-dark); }
.hero-actions {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    margin-bottom: 24px; animation: fadeInUp 0.6s 0.3s ease both;
}
.hero-or {
    font-size: 0.82rem; font-weight: 500;
    color: var(--text-faint);
    user-select: none;
}
.hero-trust {
    font-size: 0.82rem; color: var(--text-faint);
    animation: fadeInUp 0.6s 0.4s ease both;
}

/* API Diagram */
.hero-visual {
    display: flex; justify-content: center; align-items: center;
    animation: fadeInRight 0.8s 0.3s ease both;
}
/* Hero Diagram */
.api-diagram {
    display: flex; align-items: center; gap: 0;
    width: 100%; max-width: 520px;
}
.api-node {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 22px 16px;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    text-align: center; flex: 1;
    transition: var(--transition); min-width: 110px;
    box-shadow: var(--shadow-sm);
    z-index: 1;
}
.api-node:hover { border-color: var(--brand-orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.api-node i { font-size: 2rem; }
.saas-node i { color: #3b82f6; }
.datev-node i { color: #ff6b35; }
.api-node span { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.api-node small { font-size: 0.72rem; color: var(--text-faint); }

/* Bridge: horizontal row – line | center-box | line */
.api-bridge {
    display: flex; align-items: center; flex-direction: row;
    flex: 0 0 auto;
    width: 190px;
}
.bridge-line {
    flex: 1; height: 2.5px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-dark));
    position: relative; overflow: hidden;
}
.bridge-pulse {
    position: absolute; top: -3px; left: -30px;
    width: 30px; height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 3px;
    animation: pulseLine 2s linear infinite;
}
@keyframes pulseLine { to { left: calc(100% + 30px); } }
.bridge-center {
    display: flex; align-items: center; justify-content: center;
    padding: 14px 18px; background: var(--gradient); border-radius: var(--radius-sm);
    box-shadow: 0 4px 24px rgba(255,148,0,0.4);
    animation: glow 3s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes glow { 0%,100%{box-shadow:0 4px 20px rgba(255,148,0,0.3)} 50%{box-shadow:0 8px 36px rgba(255,148,0,0.55)} }
.bridge-logo-crop {
    overflow: hidden;
    width: 110px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bridge-logo-img {
    width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: -38% 0;
}

/* ================================================================
   PROBLEM vs. LÖSUNG
   ================================================================ */
.problem-solution {
    padding: 100px 0;
    background: var(--bg);
}
.ps-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}
.ps-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800; color: var(--text);
    line-height: 1.2; margin-bottom: 16px;
}
.ps-desc {
    font-size: 0.97rem; color: var(--text-muted); line-height: 1.65;
}
.ps-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/* Basis-Karte */
.ps-card {
    border-radius: var(--radius);
    padding: 40px 36px;
    display: flex; flex-direction: column; gap: 18px;
}
.ps-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem; font-weight: 800;
    line-height: 1.3;
}
.ps-card p {
    font-size: 0.93rem; line-height: 1.7;
    flex-grow: 1;
}

/* Problem-Karte – dunkel */
.ps-problem {
    background: #1e2433;
    border: 1.5px solid #2a3040;
    color: #e2e8f0;
}
.ps-problem h3 { color: #f1f5f9; }
.ps-problem p  { color: #94a3b8; }
.ps-problem .ps-card-label { color: #ef4444; }

/* Lösung-Karte – hell */
.ps-solution {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow);
    color: var(--text);
}
.ps-solution h3 { color: var(--text); }
.ps-solution p  { color: var(--text-muted); }
.ps-solution .ps-card-label { color: #16a34a; }

/* Label oben */
.ps-card-label {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.72rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
}
.ps-card-label i { font-size: 0.78rem; }

/* Icon-Box */
.ps-icon {
    width: 52px; height: 52px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.ps-icon-red {
    background: rgba(239,68,68,0.12);
    color: #ef4444;
}
.ps-icon-green {
    background: rgba(22,163,74,0.1);
    color: #16a34a;
}

/* Outcome-Zeile */
.ps-outcome {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem; font-weight: 600;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.ps-solution .ps-outcome {
    border-top-color: var(--border);
}
.ps-outcome-bad {
    color: #ef4444;
}
.ps-outcome-good {
    color: #16a34a;
}
.ps-outcome i { font-size: 0.78rem; flex-shrink: 0; }

@media (max-width: 768px) {
    .ps-cards { grid-template-columns: 1fr; }
    .ps-title { font-size: 1.7rem; }
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    box-shadow: var(--shadow-sm);
}
.stats-grid {
    display: flex; align-items: center;
    justify-content: center; flex-wrap: wrap;
}
.stat-item {
    text-align: center; padding: 8px 44px;
    display: flex; flex-direction: column; align-items: center;
}
.stat-val {
    display: flex; align-items: baseline; gap: 1px;
    justify-content: center; white-space: nowrap;
}
.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem; font-weight: 800; color: var(--text); display: inline;
}
.stat-plus { font-size: 1.6rem; font-weight: 800; color: var(--brand-orange); line-height: 1; }
.stat-lbl { font-size: 0.78rem; color: var(--text-faint); margin-top: 3px; }
.stat-sep { width: 1px; height: 44px; background: var(--border); }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how-it-works { padding: 100px 0; }

.steps-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    width: 100%;
}

.step-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    flex: 1 1 0;
    min-width: 0;
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-orange);
    box-shadow: 0 8px 28px rgba(255,148,0,0.15);
}
.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem; font-weight: 800;
    color: var(--brand-orange); letter-spacing: 0.1em;
    margin-bottom: 14px; text-transform: uppercase;
}
.step-icon {
    width: 44px; height: 44px;
    background: var(--primary-bg);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-orange); font-size: 1.05rem; margin-bottom: 16px;
    flex-shrink: 0;
}
.step-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px;
}
.step-card p {
    font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; margin: 0;
}
.step-card p + p { margin-top: 10px; }
.step-note {
    font-size: 0.8rem !important;
    color: var(--text-faint) !important;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 10px;
    display: flex; gap: 8px; align-items: flex-start;
    line-height: 1.55;
}
.step-note i { color: var(--brand-orange); margin-top: 2px; flex-shrink: 0; font-size: 0.8rem; }

.steps-footnote {
    display: flex; align-items: flex-start; gap: 10px;
    justify-content: center; text-align: center;
    margin-top: 28px;
    padding: 14px 24px;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.83rem; color: var(--text-muted); line-height: 1.55;
    max-width: 560px;
    margin-left: auto; margin-right: auto;
}
.steps-footnote i { color: var(--brand-orange); flex-shrink: 0; font-size: 0.82rem; margin-top: 2px; }

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-faint);
    font-size: 1rem;
    flex-shrink: 0;
    width: 48px;
    min-height: 80px;
}

/* ================================================================
   FEATURES
   ================================================================ */
.features { padding: 100px 0; background: var(--bg-muted); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}
.feature-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-orange);
    box-shadow: 0 8px 28px rgba(255,148,0,0.12);
}
.feature-icon {
    width: 50px; height: 50px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 16px;
}
.icon-blue   { background: rgba(59,130,246,0.1);  color: #2563eb; }
.icon-purple { background: rgba(109,40,217,0.1);  color: #7c3aed; }
.icon-teal   { background: rgba(13,148,136,0.1);  color: #0d9488; }
.icon-orange { background: var(--primary-bg);      color: var(--brand-orange); }
.icon-green  { background: rgba(22,163,74,0.1);   color: #16a34a; }
.icon-pink   { background: rgba(190,24,93,0.1);   color: #be185d; }
.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 9px;
}
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ================================================================
   PARTNER PRODUCTS
   ================================================================ */
/* ================================================================
   PARTNER-LEISTE (kompakt)
   ================================================================ */
.partners-strip {
    padding: 72px 0 64px;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.partners-strip-header {
    margin-bottom: 36px;
}
.partners-strip-header .section-badge {
    margin-bottom: 14px;
}
.partners-strip-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem; font-weight: 800;
    color: var(--text); line-height: 1.2;
    margin-bottom: 12px;
}
.partners-strip-desc {
    font-size: 0.95rem; color: var(--text-muted); line-height: 1.65;
}

.partners-logo-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--bg-muted);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    flex-wrap: nowrap;           /* kein Zeilenumbruch */
    overflow-x: auto;            /* horizontal scrollen auf kleinen Screens */
    scrollbar-width: none;       /* Firefox: Scrollbar verstecken */
    -ms-overflow-style: none;    /* IE/Edge */
}
.partners-logo-bar::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.partner-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    min-height: 52px;
    min-width: 0;
    flex-shrink: 0;              /* Chips nicht stauchen */
    transition: var(--transition);
}
.partner-chip:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 2px 12px rgba(255,148,0,0.12);
}
/* Einheitliche Bild-Behandlung: Grayscale im Ruhezustand, Farbe on Hover */
.chip-img {
    height: 26px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(100%) opacity(0.55);
    transition: filter var(--transition);
}
.partner-chip:hover .chip-img {
    filter: grayscale(0%) opacity(1);
}
/* DATEV-Logo hat farbigen Hintergrund → ganzes Chip-Bild zeigen, Höhe anpassen */
.chip-img--datev {
    height: 40px;
    border-radius: 4px;
}
/* Qonto/Tidely: schwarzer oder dunkler HG → multiply */
.chip-img--dark {
    mix-blend-mode: multiply;
}
.partner-chip img {
    height: 26px; max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition: var(--transition);
}
.partner-chip:hover img { filter: grayscale(0%) opacity(1); }
.partner-chip-tess svg { transition: var(--transition); opacity: 0.55; }
.partner-chip-tess:hover svg { opacity: 1; color: var(--text); }
.partner-chip-ghost {
    background: var(--bg-muted);
    border-style: dashed;
    color: var(--text-faint);
    font-size: 0.82rem; font-weight: 500;
}
.partner-chip-text {
    color: var(--text-muted);
    font-size: 0.88rem; font-weight: 600;
    gap: 7px;
    letter-spacing: 0.01em;
}
.partner-chip-text i {
    color: var(--brand-orange);
    font-size: 0.85rem;
}
.partner-chip-text:hover { color: var(--text); }
.partner-chip-svg img { transition: var(--transition); }
.partner-chip-svg:hover img { filter: grayscale(0%) opacity(1) !important; }
.partner-chip-more {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text-muted);
    font-size: 0.85rem; font-weight: 600;
    white-space: nowrap;
}
.partners-strip-footer {
    margin-top: 20px;
}
.partners-list-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--brand-orange-dark);
    font-size: 0.9rem; font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.partners-list-link:hover { color: var(--brand-orange); gap: 12px; }
.partners-list-link .fa-arrow-right { font-size: 0.8rem; }


/* ================================================================
   PRICING
   ================================================================ */
.pricing-section { padding: 100px 0; background: var(--bg-muted); }
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; align-items: start; margin-bottom: 60px;
}
.pricing-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    border-color: var(--brand-orange);
    box-shadow: 0 8px 40px rgba(255,148,0,0.18);
    transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-5px); }
.pricing-card.dark {
    background: #1a1f2e;
    border-color: #2a3040;
    color: #e2e8f0;
}
.pricing-card.dark .pricing-header h3,
.pricing-card.dark .amount { color: #fff; }
.pricing-card.dark .pricing-header > p,
.pricing-card.dark .period,
.pricing-card.dark .price-secondary { color: #94a3b8; }
.pricing-card.dark .pricing-features li { color: #94a3b8; }
.pricing-card.dark .currency { color: #94a3b8; }
.pricing-card.dark small { color: #64748b; }

.featured-ribbon {
    position: absolute; top: 0; right: 28px;
    background: var(--gradient); color: white;
    font-size: 0.72rem; font-weight: 700;
    padding: 6px 14px 9px; border-radius: 0 0 9px 9px;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.pricing-header { margin-bottom: 24px; }
.pricing-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 5px;
}
.pricing-header > p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 16px; }
.price { display: flex; align-items: flex-end; gap: 3px; }
.currency { font-size: 1.2rem; font-weight: 700; color: var(--text-muted); padding-bottom: 5px; }
.amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem; font-weight: 800; color: var(--text); line-height: 1;
}
.period { font-size: 0.82rem; color: var(--text-muted); padding-bottom: 6px; }
.price-secondary { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; line-height: 1.5; }
.price-secondary strong { color: var(--text); }
.pricing-features {
    list-style: none; margin-bottom: 28px;
    display: flex; flex-direction: column; gap: 11px;
}
.pricing-features li {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: 0.88rem; color: var(--text-muted); line-height: 1.4;
}
.pricing-features li > span {
    display: flex; flex-direction: column;
}
.pricing-features li small {
    font-size: 0.76rem; color: var(--text-faint); margin-top: 2px; line-height: 1.35;
}
.pricing-card.dark .pricing-features li small { color: #64748b; }
.pricing-features .fa-check { color: #16a34a; font-size: 0.78rem; margin-top: 3px; flex-shrink: 0; }
.feat-note {
    display: block;
    font-size: 0.76rem; color: var(--text-faint);
    margin-top: 2px; line-height: 1.4;
}
.pricing-card.dark .feat-note { color: #64748b; }
.price-note { display: block; font-size: 0.76rem; color: var(--text-faint); margin-top: 2px; }

/* Staffelpreis-Tabelle */
.tier-table {
    background: var(--bg-muted);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
}
.tier-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 9px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 0.84rem;
}
.tier-row:last-child { border-bottom: none; }
.tier-row-highlight { background: rgba(255,148,0,0.07); }
.tier-price {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800; color: var(--text);
    font-size: 0.95rem; white-space: nowrap;
    min-width: 48px;
}
.tier-label {
    color: var(--text-muted);
    display: flex; flex-direction: column;
}
.tier-label small {
    font-size: 0.74rem; color: var(--text-faint);
}

/* Comparison Table */
.comparison-table { margin-top: 56px; }
.comparison-table h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem; font-weight: 700; color: var(--text);
    text-align: center; margin-bottom: 24px;
}
.table-wrap {
    overflow-x: auto; border-radius: var(--radius);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
}
table { width: 100%; border-collapse: collapse; }
thead { background: var(--bg-muted); }
th {
    padding: 14px 20px; text-align: left;
    font-size: 0.82rem; font-weight: 700;
    color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.05em; border-bottom: 1.5px solid var(--border);
}
th:not(:first-child) { text-align: center; }
td {
    padding: 13px 20px; font-size: 0.87rem;
    color: var(--text-muted); border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}
td:not(:first-child) { text-align: center; }
td small { display: block; font-size: 0.76rem; color: var(--text-faint); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #fdfaf6; }
.featured-col { background: rgba(255,148,0,0.04) !important; }
tr:hover .featured-col { background: rgba(255,148,0,0.07) !important; }
.text-green { color: #16a34a; }
.text-muted { color: var(--text-faint); }

.pricing-footnotes {
    font-size: 0.74rem; color: var(--text-faint);
    margin-top: 24px; text-align: center; line-height: 1.8;
}

/* ================================================================
   DOWNLOADS
   ================================================================ */
.downloads-section { padding: 80px 0; }
.download-card-big {
    display: flex; align-items: center; gap: 24px;
    background: var(--bg-card); border: 1.5px solid var(--border);
    border-radius: var(--radius); padding: 30px 34px;
    margin-bottom: 20px; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.download-card-big:hover { border-color: var(--brand-orange); box-shadow: 0 8px 28px rgba(255,148,0,0.12); }
.download-icon-big {
    width: 62px; height: 62px; background: var(--primary-bg);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--brand-orange); flex-shrink: 0;
}
.download-info-big { flex: 1; }
.download-info-big h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 5px;
}
.download-info-big p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 10px; }
.download-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px; background: var(--bg-muted);
    border-radius: 50px; font-size: 0.74rem; color: var(--text-muted);
    border: 1px solid var(--border);
}
.badge-green { background: rgba(22,163,74,0.08); color: #16a34a; border-color: rgba(22,163,74,0.2); }
.docs-hint {
    display: flex; align-items: center; gap: 10px;
    padding: 15px 20px; background: var(--primary-bg);
    border: 1px solid var(--primary-border); border-radius: var(--radius-sm);
    font-size: 0.88rem; color: var(--text-muted);
}
.docs-hint i { color: var(--brand-orange); }
.docs-hint a { color: var(--brand-orange-dark); text-decoration: none; font-weight: 600; }
.docs-hint a:hover { text-decoration: underline; }

/* ================================================================
   PAGE HERO (Unterseiten)
   ================================================================ */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(160deg, #fff 0%, #fef9f2 50%, #fff5e6 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,148,0,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,148,0,0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 85% 85% at 50% 40%, black 40%, transparent 100%);
    pointer-events: none;
}
.page-hero-inner {
    position: relative; z-index: 1;
    max-width: 720px; margin: 0 auto;
}
.page-hero-inner .section-badge { margin-bottom: 20px; }
.page-hero-inner h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; color: var(--text);
    line-height: 1.15; margin-bottom: 18px;
}
.page-hero-inner p {
    font-size: 1.1rem; color: var(--text-muted);
    line-height: 1.7; max-width: 580px; margin: 0 auto;
}
.page-hero-actions {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; flex-wrap: wrap; margin-top: 32px;
}

/* ================================================================
   EXPLAINER SECTION – Light Mode, 1:1 nach Original-Animation
   ================================================================ */
.explainer-section {
    padding: 100px 0 80px;
    background: linear-gradient(165deg, #f0f4ff 0%, #fefcf8 55%, #f0fdf4 100%);
    position: relative; overflow: hidden;
}
.explainer-section::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(circle at 15% 50%, rgba(99,102,241,0.07) 0%, transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(232,119,34,0.07) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(232,119,34,0.05) 0%, transparent 40%);
}
.explainer-header {
    text-align: center; max-width: 660px;
    margin: 0 auto 36px; position: relative; z-index: 2;
}
.explainer-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; color: var(--text);
    line-height: 1.2; margin: 16px 0 14px;
}
.explainer-header p { font-size: 1.05rem; color: var(--text-faint); line-height: 1.7; }

/* ── Toggle ─────────────────────────────────────────── */
.explainer-toggle {
    display: flex; justify-content: center; gap: 10px;
    margin-bottom: 40px; position: relative; z-index: 2;
}
.etoggle-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 11px 26px; border-radius: 50px;
    border: 1.5px solid rgba(99,102,241,0.2);
    background: rgba(255,255,255,0.9); color: #64748b;
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.etoggle-btn:hover { border-color: rgba(255,148,0,0.4); color: #1e293b; }
.etoggle-btn.active {
    background: linear-gradient(135deg,#ff9400,#ff6b00);
    border-color: transparent; color: #fff;
    box-shadow: 0 6px 28px rgba(255,148,0,0.38);
}

/* ═══════════════════════════════════════════════════════
   SCENE – main container
   ═══════════════════════════════════════════════════════ */
.exc-scene {
    position: relative;
    width: 100%; max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 40px 16px 28px;
    z-index: 2;
}

/* Ambient glows */
.exc-amb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); pointer-events: none;
}
.exc-amb-l {
    width: 260px; height: 260px;
    background: rgba(99,102,241,0.07);
    top: 50%; left: 2%; transform: translateY(-50%);
}
.exc-amb-r {
    width: 260px; height: 260px;
    background: rgba(232,119,34,0.09);
    top: 50%; right: 2%; transform: translateY(-50%);
    animation: excAmbPulse 5s ease-in-out infinite alternate;
}
.exc-amb-c {
    width: 140px; height: 140px;
    background: rgba(232,119,34,0.12);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    animation: excAmbPulse2 3.5s ease-in-out infinite alternate;
}
@keyframes excAmbPulse  { from{opacity:.5} to{opacity:1} }
@keyframes excAmbPulse2 {
    from { opacity:.5; transform:translate(-50%,-50%) scale(1); }
    to   { opacity:1;  transform:translate(-50%,-50%) scale(1.4); }
}

/* ── Zone columns ─────────────────────────────────────── */
.exc-zone-col {
    display: flex; flex-direction: column; align-items: center;
    position: relative;
}
.exc-zone-box {
    border-radius: 16px;
    padding: 36px 16px 20px;
    position: relative;
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
}
.exc-zone-l {
    border: 1.5px dashed rgba(99,102,241,0.3);
    background: rgba(238,242,255,0.5);
    box-shadow: inset 0 0 40px rgba(99,102,241,0.04), 0 0 24px rgba(99,102,241,0.07);
}
.exc-zone-r {
    border: 1.5px dashed rgba(232,119,34,0.28);
    background: rgba(255,247,237,0.5);
    box-shadow: inset 0 0 40px rgba(232,119,34,0.04), 0 0 24px rgba(232,119,34,0.07);
}

/* Zone tags */
.exc-zone-tag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    font-size: 9px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase;
    padding: 3px 12px; border-radius: 20px; white-space: nowrap;
}
.exc-ztl {
    color: rgba(79,90,210,0.95);
    background: rgba(238,242,255,0.9);
    border: 1px solid rgba(99,102,241,0.32);
}
.exc-ztr {
    color: rgba(180,80,0,0.95);
    background: rgba(255,247,237,0.95);
    border: 1px solid rgba(232,119,34,0.35);
}

/* Firewall row */
.exc-fw-row {
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 4px;
}
.exc-fw-ic { font-size: 12px; }
.exc-fw-tx {
    font-size: 8px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: rgba(79,90,210,0.65);
}

/* ── Cards (Kanzlei) ────────────────────────────────── */
.exc-card {
    width: 172px;
    background: rgba(255,255,255,0.88);
    border-radius: 12px; padding: 13px 14px;
    display: flex; align-items: center; gap: 11px;
    position: relative;
    box-shadow: 0 2px 12px rgba(99,102,241,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
    border: 1px solid rgba(99,102,241,0.14);
    border-left: 2.5px solid rgba(99,102,241,0.5);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.exc-card.connected {
    border-color: rgba(34,197,94,0.3);
    border-left-color: rgba(34,197,94,0.7);
    box-shadow: 0 2px 12px rgba(34,197,94,0.1);
}
.exc-ci {
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.22);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0; color: #4f5ad2;
}
.exc-ct { font-size: 12.5px; font-weight: 700; color: #1e293b; line-height: 1.2; }
.exc-cs { font-size: 9.5px; color: #94a3b8; margin-top: 2px; }

/* Dot indicator */
.exc-dot {
    position: absolute; top: 11px; right: 11px;
    width: 7px; height: 7px; border-radius: 50%;
    animation: excDotPulse 2.3s infinite;
}
.exc-dot-blue { background: #818cf8; box-shadow: 0 0 7px #818cf8; }
.exc-dot.active { background: #22c55e; box-shadow: 0 0 7px #22c55e; }
@keyframes excDotPulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.4; transform:scale(1.9); }
}

/* ── App Card ───────────────────────────────────────── */
.exc-app-card {
    width: 172px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(232,119,34,0.2);
    border-right: 2.5px solid rgba(232,119,34,0.55);
    border-radius: 14px; padding: 24px 18px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    position: relative;
    box-shadow: 0 4px 24px rgba(232,119,34,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.exc-app-card.connected {
    border-color: rgba(34,197,94,0.3);
    border-right-color: rgba(34,197,94,0.6);
}
.exc-dot-app {
    position: absolute; top: 11px; right: 11px;
    width: 8px; height: 8px; border-radius: 50%;
    background: #E87722; box-shadow: 0 0 10px rgba(232,119,34,0.5);
    animation: excDotPulse 2.3s infinite;
}
.exc-dot-app.connected { background: #22c55e; box-shadow: 0 0 10px rgba(34,197,94,0.5); }
.exc-app-icon { font-size: 28px; }
.exc-app-title { font-size: 15px; font-weight: 800; color: #1e293b; text-align: center; }
.exc-app-sub   { font-size: 9.5px; color: #94a3b8; text-align: center; line-height: 1.6; }
.exc-app-tag {
    font-size: 8.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 4px;
    color: #dc2626; background: rgba(220,38,38,0.07); border: 1px solid rgba(220,38,38,0.2);
    transition: color 0.4s, background 0.4s, border-color 0.4s;
}
.exc-app-tag.connected { color: #E87722; background: rgba(232,119,34,0.08); border-color: rgba(232,119,34,0.25); }

/* ── Center Hub ─────────────────────────────────────── */
.exc-hub-wrap {
    display: flex; flex-direction: column; align-items: center;
    flex-shrink: 0; padding: 0 20px;
}
.exc-hub {
    width: 130px; height: 130px; border-radius: 50%;
    position: relative; display: flex; align-items: center; justify-content: center;
}
.exc-hbg {
    position: absolute; inset: 0; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,119,34,0.22) 0%, rgba(232,119,34,0.03) 72%);
    border: 1.5px solid rgba(232,119,34,0.4);
    box-shadow: 0 0 40px rgba(232,119,34,0.22), 0 0 80px rgba(232,119,34,0.08);
}
/* Outer ring with orbiting dot */
.exc-hr1 {
    position: absolute; inset: -15px; border-radius: 50%;
    border: 1px solid rgba(232,119,34,0.2);
    animation: excSpin 13s linear infinite;
}
.exc-hr1::before {
    content: '';
    position: absolute; top: -5px; left: 50%; margin-left: -5px;
    width: 10px; height: 10px; border-radius: 50%;
    background: #E87722;
    box-shadow: 0 0 12px #E87722, 0 0 24px rgba(232,119,34,0.35);
}
.exc-hr2 {
    position: absolute; inset: -28px; border-radius: 50%;
    border: 1px dashed rgba(232,119,34,0.08);
    animation: excSpin 24s linear infinite reverse;
}
@keyframes excSpin { to { transform: rotate(360deg); } }

/* Logo image */
.exc-himg {
    width: 64px; height: 64px;
    position: relative; z-index: 2;
    filter: drop-shadow(0 0 12px rgba(232,119,34,0.5));
    mix-blend-mode: multiply;
}
.exc-hname { margin-top: 14px; text-align: center; }
.exc-hmain { font-size: 15px; font-weight: 800; color: #c2410c; }
.exc-hsub  { font-size: 9.5px; color: #94a3b8; margin-top: 3px; }

/* ── SVG Overlay ────────────────────────────────────── */
.exc-svg-overlay {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; overflow: visible;
    z-index: 5;
}

/* ── Pills ─────────────────────────────────────────── */
.exc-pills {
    display: flex; justify-content: center; gap: 10px;
    flex-wrap: wrap; margin-top: 32px;
    position: relative; z-index: 2;
}
.exc-pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 16px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 500;
    animation: fadeInUp 0.45s ease both;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.exc-pill i { font-size: 0.78rem; }
.exc-pill:nth-child(2) { animation-delay: 0.08s; }
.exc-pill:nth-child(3) { animation-delay: 0.16s; }
.exc-pill-bad  { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.exc-pill-good { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

/* ── CTA ────────────────────────────────────────────── */
.explainer-cta {
    display: flex; justify-content: center;
    margin-top: 44px; position: relative; z-index: 2;
}

/* ================================================================
   BENEFITS SECTION (3 Kernvorteile)
   ================================================================ */
.benefits-section {
    padding: 96px 0 80px;
    background: #fff;
}
.section-header.center { text-align: center; max-width: 680px; margin: 0 auto 52px; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.benefit-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex; flex-direction: column; gap: 16px;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.benefit-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.09);
    transform: translateY(-3px);
    border-color: rgba(255,148,0,0.25);
}
.benefit-card--primary {
    background: linear-gradient(145deg, #fff8f0 0%, #ffffff 60%);
    border-color: rgba(255,148,0,0.3);
}
.benefit-card-top {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.benefit-icon-wrap {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.benefit-icon-wrap--blue  { background: rgba(99,102,241,0.1);  color: #4f5ad2; border: 1px solid rgba(99,102,241,0.18); }
.benefit-icon-wrap--green { background: rgba(22,163,74,0.1);   color: #16a34a; border: 1px solid rgba(22,163,74,0.18); }
.benefit-icon-wrap--orange{ background: rgba(255,148,0,0.12); color: var(--brand-orange); border: 1px solid rgba(255,148,0,0.22); }
.benefit-badge {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 50px;
    background: rgba(99,102,241,0.08); color: #4f5ad2;
    border: 1px solid rgba(99,102,241,0.16);
}
.benefit-badge--green  { background: rgba(22,163,74,0.08);  color: #16a34a; border-color: rgba(22,163,74,0.16); }
.benefit-badge--orange { background: rgba(255,148,0,0.1);  color: var(--brand-orange); border-color: rgba(255,148,0,0.2); }
.benefit-card h3 { font-size: 1.12rem; font-weight: 700; color: var(--text); line-height: 1.3; margin: 0; }
.benefit-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.benefit-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
    flex: 1;
}
.benefit-list li {
    display: flex; align-items: center; gap: 9px;
    font-size: 0.85rem; color: var(--text-muted);
}
.benefit-list li i { color: #16a34a; font-size: 0.75rem; flex-shrink: 0; }
.benefit-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.875rem; font-weight: 600; color: var(--brand-orange);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease;
}
.benefit-link:hover { gap: 9px; }

/* ================================================================
   AUDIENCE SECTION (Zielgruppen-Teaser)
   ================================================================ */
.audience-section {
    padding: 88px 0 80px;
    background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}
.audience-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex; flex-direction: column; gap: 14px;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.audience-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.audience-card--center {
    background: linear-gradient(145deg,#fff8f0,#fff);
    border-color: rgba(255,148,0,0.3);
}
.audience-icon {
    width: 52px; height: 52px; border-radius: 15px;
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #4f5ad2;
}
.audience-card--center .audience-icon { background: rgba(255,148,0,0.1); border-color: rgba(255,148,0,0.2); color: var(--brand-orange); }
.audience-card:last-child .audience-icon { background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.15); color: #7c3aed; }
.audience-tag {
    display: inline-flex; align-items: center;
    font-size: 0.68rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 50px;
    background: rgba(99,102,241,0.08); color: #4f5ad2;
    width: fit-content;
}
.audience-tag--orange { background: rgba(255,148,0,0.1); color: var(--brand-orange); }
.audience-tag--purple { background: rgba(139,92,246,0.1); color: #7c3aed; }
.audience-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 0; line-height: 1.35; }
.audience-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0; flex: 1; }
.audience-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 7px;
}
.audience-list li {
    display: flex; align-items: center; gap: 9px;
    font-size: 0.82rem; color: var(--text-muted);
}
.audience-list li i { font-size: 0.78rem; color: #4f5ad2; flex-shrink: 0; width: 16px; text-align: center; }
.audience-card--center .audience-list li i  { color: var(--brand-orange); }
.audience-card:last-child .audience-list li i { color: #7c3aed; }
.audience-cta {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 0.875rem; font-weight: 600;
    color: #4f5ad2; text-decoration: none;
    margin-top: 4px;
    transition: gap 0.2s;
}
.audience-cta:hover { gap: 10px; }
.audience-cta--orange { color: var(--brand-orange); }
.audience-cta--purple { color: #7c3aed; }

/* ================================================================
   TRUST SECTION (Badges)
   ================================================================ */
.trust-section {
    padding: 80px 0 72px;
    background: #fff;
    border-top: 1px solid var(--border);
}
.trust-header {
    text-align: center; max-width: 640px; margin: 0 auto 48px;
}
.trust-badges-row {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 0;
    background: linear-gradient(135deg, #f8faff 0%, #fff8f0 100%);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 32px;
}
.trust-badge {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 20px;
}
.trust-badge-sep {
    width: 1px; height: 44px;
    background: var(--border);
    flex-shrink: 0;
}
.trust-badge-icon {
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.trust-badge-icon--blue   { background: rgba(99,102,241,0.1);  color: #4f5ad2; border: 1px solid rgba(99,102,241,0.18); }
.trust-badge-icon--purple { background: rgba(139,92,246,0.1); color: #7c3aed; border: 1px solid rgba(139,92,246,0.18); }
.trust-badge-icon--orange { background: rgba(255,148,0,0.1);  color: var(--brand-orange); border: 1px solid rgba(255,148,0,0.2); }
.trust-badge-icon--green  { background: rgba(22,163,74,0.1);  color: #16a34a; border: 1px solid rgba(22,163,74,0.18); }
.trust-badge-icon--datev  { background: rgba(0,132,61,0.08); border: 1px solid rgba(0,132,61,0.18); display: flex; align-items: center; justify-content: center; }
.trust-badge-label { font-size: 0.85rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.trust-badge-sub   { font-size: 0.72rem; color: var(--text-faint); margin-top: 2px; }
.trust-footer-row {
    display: flex; align-items: center; justify-content: center; gap: 16px;
}
.btn-ghost {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 20px; border-radius: 50px;
    background: transparent; color: var(--text-muted);
    font-size: 0.875rem; font-weight: 600;
    border: 1.5px solid var(--border);
    text-decoration: none;
    transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--brand-orange); color: var(--brand-orange); }

/* ================================================================
   TEASER GRID (Landing Page)
   ================================================================ */
.teaser-section {
    padding: 80px 0;
    background: var(--bg-muted);
}
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.teaser-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
    display: flex; flex-direction: column; gap: 10px;
}
.teaser-card:hover {
    border-color: var(--brand-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.teaser-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 4px;
}
.teaser-icon i { font-size: 1.2rem; color: var(--brand-orange); }
.teaser-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.teaser-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.teaser-link {
    font-size: 0.85rem; font-weight: 600;
    color: var(--brand-orange);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 4px;
    transition: gap 0.2s;
}
.teaser-link:hover { gap: 10px; }

/* ================================================================
   SCHNITTSTELLENBERATUNG
   ================================================================ */
.consulting-section {
    padding: 100px 0;
    background: var(--bg-muted);
}
.consulting-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.consulting-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    margin: 16px 0 14px;
}
.consulting-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.consulting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.consulting-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
}
.consulting-card:hover {
    border-color: var(--brand-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.consulting-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.consulting-icon i { font-size: 1.4rem; color: var(--brand-orange); }
.consulting-card h4 {
    font-size: 1.05rem; font-weight: 700;
    color: var(--text); margin-bottom: 10px;
}
.consulting-card p {
    font-size: 0.9rem; color: var(--text-muted); line-height: 1.65;
}
.consulting-cta {
    background: var(--gradient);
    border-radius: var(--radius);
    padding: 40px 48px;
    box-shadow: 0 8px 40px rgba(255,148,0,0.25);
}
.consulting-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.consulting-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.78rem; font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}
.consulting-cta-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; font-weight: 800;
    color: #fff; margin-bottom: 8px;
}
.consulting-cta-text p {
    font-size: 0.95rem; color: rgba(255,255,255,0.85);
}
.consulting-cta-actions {
    display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0;
}

/* ================================================================
   CTA
   ================================================================ */
.cta-section { padding: 100px 0; position: relative; overflow: hidden; }
.cta-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #ff9400, #ff6b00);
}
.cta-content { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800;
    color: white; margin-bottom: 14px;
}
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 32px; }
.cta-actions { display: flex; align-items: center; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-or {
    font-size: 0.82rem; font-weight: 500;
    color: rgba(255,255,255,0.6);
    user-select: none;
}
.cta-trust { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: #1a1f2e; border-top: 1px solid #2a3040; }
.footer-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; padding: 56px 0 40px; }
.footer-logo-crop {
    overflow: hidden;
    width: 220px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
}
.footer-logo-img { 
    width: 320px; 
    height: auto; 
    opacity: 0.9; 
    display: block; 
    margin: -30% 0 -30% -32%;
}
.footer-brand p { font-size: 0.87rem; color: #94a3b8; line-height: 1.7; max-width: 260px; margin-top: 14px; }
.footer-brand a { color: var(--brand-orange-light); text-decoration: none; }
.footer-brand a:hover { text-decoration: underline; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.84rem; color: #64748b; text-decoration: none; transition: var(--transition); display: flex; align-items: center; gap: 7px; }
.footer-col a:hover { color: #94a3b8; padding-left: 3px; }
.footer-notes { padding: 14px 0; border-top: 1px solid #2a3040; }
.footer-note-text { font-size: 0.72rem; color: #3a4460; line-height: 1.7; }
.footer-note-text sup { color: #55627a; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-top: 1px solid #2a3040; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.77rem; color: #475569; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.77rem; color: #475569; text-decoration: none; transition: var(--transition); }
.footer-legal a:hover { color: #64748b; }

/* ================================================================
   COMPLIANCE & CERTIFICATIONS
   ================================================================ */
.compliance { padding: 100px 0; background: var(--bg); }

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.cert-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.cert-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-orange);
    box-shadow: 0 8px 28px rgba(255,148,0,0.12);
}
.cert-card.cert-highlight {
    border-left: 3px solid var(--brand-orange);
}

.cert-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: var(--primary-bg);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--brand-orange);
}
.cert-body h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.98rem; font-weight: 700; color: var(--text); margin-bottom: 5px;
}
.cert-body p {
    font-size: 0.85rem; color: var(--text-muted); line-height: 1.55;
}

/* ---- Cert Badge Row (echte Logos) ---- */
.cert-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding: 28px 32px;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.cert-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.cert-badge-item img {
    height: 80px;
    width: auto;
    object-fit: contain;
}
.cert-badge-item span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 0.03em;
}
.cert-badge-item--wide img { height: 60px; }
.cert-badge-item--eba img  { height: 52px; }

/* ---- Partner chip: einheitliche Bild-Klassen ---- */
.chip-img {
    height: 28px; max-width: 130px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
    display: block;
}
.partner-chip:hover .chip-img { filter: grayscale(0%) opacity(1); }

/* Taxflow: schwarzer Hintergrund via multiply unsichtbar machen */
.partner-chip--blend { background: #fff; }
.chip-img--blend {
    mix-blend-mode: multiply;
    filter: opacity(0.75);
    height: 30px;
}
.partner-chip--blend:hover .chip-img--blend { filter: opacity(1); }

/* DATEV inline-SVG Chip */
.partner-chip--datev { min-width: 100px; }
.chip-datev-svg { opacity: 0.55; transition: var(--transition); }
.partner-chip--datev:hover .chip-datev-svg { opacity: 1; }

/* DATEV-geprüfte Schnittstelle Karte */
.cert-icon--datev {
    width: 42px; height: 42px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.cert-card--datev { border-left-color: #00843D; }
.cert-datev-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(0,132,61,0.1);
    color: #00843D;
    border: 1px solid rgba(0,132,61,0.25);
    border-radius: 100px;
    padding: 1px 7px;
    vertical-align: middle;
    margin-left: 6px;
}

/* ---- Portal Preview ---- */
.portal-preview {
    margin-top: 52px;
    text-align: center;
}
.portal-preview-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,148,0,0.08);
    color: var(--brand-orange);
    border: 1px solid rgba(255,148,0,0.2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.portal-screen {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
    max-width: 860px;
    margin: 0 auto;
}
.portal-screen-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #f0f2f5;
    border-bottom: 1px solid var(--border);
}
.psb-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.psb-red    { background: #ff5f57; }
.psb-yellow { background: #febc2e; }
.psb-green  { background: #28c840; }
.psb-url {
    margin-left: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: #fff;
    padding: 3px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 5px;
}
.portal-screen-img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.portal-preview-caption {
    margin-top: 14px;
    font-size: 0.83rem;
    color: var(--text-faint);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.compliance-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #fff8ee, #fff3e0);
    border: 1.5px solid var(--primary-border);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-top: 8px;
    box-shadow: var(--shadow-sm);
}
.compliance-banner-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    background: var(--gradient);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: white;
    box-shadow: 0 4px 16px rgba(255,148,0,0.3);
}
.compliance-banner-text {
    flex: 1;
    display: flex; flex-direction: column; gap: 4px;
}
.compliance-banner-text strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem; font-weight: 700; color: var(--text);
}
.compliance-banner-text span {
    font-size: 0.88rem; color: var(--text-muted); line-height: 1.55;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
.animate-in { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .hero-badge { align-self: center; }
    .hero-actions { justify-content: center; }
    .hero-visual { max-width: 460px; width: 100%; margin: 0 auto; display: flex; justify-content: center; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .footer-top { grid-template-columns: 1fr; }
    .compliance-grid { grid-template-columns: 1fr 1fr; }
    .cert-badge-row { gap: 20px; padding: 20px; }
    .cert-badge-item img { height: 60px; }
    .cert-badge-item--wide img { height: 44px; }
    .cert-badge-item--eba img  { height: 38px; }
    /* Steps – auf Tablet vertikal stapeln */
    .steps-grid { flex-direction: column; align-items: stretch; gap: 16px; }
    .step-arrow { display: none; }
    .step-card { flex: none; width: 100%; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none; position: fixed; top: 58px; left: 0; right: 0;
        background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
        flex-direction: column; padding: 16px 20px;
        border-bottom: 1px solid var(--border); gap: 3px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .nav-links.open { display: flex; }
    .nav-link { padding: 11px 14px; border-radius: 10px; }
    .nav-toggle { display: flex; }
    /* Mobile Mega-Dropdown */
    .nav-item-mega .mega-menu {
        position: static; opacity: 0; pointer-events: none;
        transform: none; border: none; box-shadow: none;
        max-height: 0; overflow: hidden;
        transition: opacity 0.25s ease, max-height 0.3s ease;
        border-radius: 12px; margin: 4px 0;
        background: rgba(248,250,252,0.98);
        border: 1px solid var(--border);
    }
    .nav-item-mega.mobile-open .mega-menu {
        opacity: 1; pointer-events: all; max-height: 800px;
    }
    .mega-menu-narrow { width: 100%; left: 0 !important; }
    .mega-menu-single { width: 100%; left: 0 !important; }
    .mega-inner { flex-direction: column; gap: 0; padding: 12px 16px; }
    .mega-col { padding: 12px 0; border-right: none; border-bottom: 1px solid var(--border); }
    .mega-col:last-child { border-bottom: none; }
    .nav-item-mega .nav-chevron { transition: transform 0.25s ease; }
    .nav-item-mega.mobile-open .nav-chevron { transform: rotate(180deg); }
    .steps-grid { flex-direction: column; align-items: center; }
    .step-arrow { display: none; }
    .step-card { max-width: 100%; width: 100%; }
    .features-grid { grid-template-columns: 1fr; }
    .compliance-grid { grid-template-columns: 1fr; }
    .cert-badge-row { gap: 14px; padding: 16px; }
    .cert-badge-item img { height: 50px; }
    .cert-badge-item--wide img { height: 36px; }
    .cert-badge-item--eba img  { height: 32px; }
    .portal-screen { max-width: 100%; }
    .compliance-banner { flex-direction: column; text-align: center; }
    .stats-grid { flex-wrap: wrap; gap: 0; }
    .stat-item { padding: 12px 20px; width: 50%; }
    .stat-sep { display: none; }
    .download-card-big { flex-direction: column; text-align: center; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .hero-or, .cta-or { display: block; width: 100%; text-align: center; }
    /* Explainer scene mobile 768 */
    .exc-scene { padding: 28px 8px 20px; gap: 0; }
    .exc-card { width: 148px; padding: 10px 11px; gap: 8px; }
    .exc-ci { width: 30px; height: 30px; font-size: 13px; }
    .exc-ct { font-size: 11px; }
    .exc-cs { display: none; }
    .exc-hub { width: 108px; height: 108px; }
    .exc-himg { width: 52px; height: 52px; }
    .exc-hmain { font-size: 13px; }
    .exc-app-card { width: 148px; padding: 18px 12px; }
    .exc-app-title { font-size: 13px; }
    .exc-app-sub { font-size: 8.5px; }
    .exc-pills { gap: 8px; }
    .exc-pill { font-size: 0.76rem; padding: 7px 13px; }
    .teaser-grid { grid-template-columns: 1fr 1fr; }
    .consulting-grid { grid-template-columns: 1fr; }
    .consulting-cta { padding: 28px 24px; }
    .consulting-cta-inner { flex-direction: column; text-align: center; }
    .consulting-cta-actions { justify-content: center; }
    .api-diagram { max-width: 100%; width: 100%; }
    .partners-logo-bar { overflow-x: auto; }
}
@media (max-width: 480px) {
    .teaser-grid { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; }
    .hero-title { font-size: 2rem; }
    .stat-item { width: 100%; }
    /* Explainer scene mobile 480 */
    .exc-scene { padding: 20px 4px 16px; flex-wrap: wrap; justify-content: center; gap: 12px; }
    .exc-hub-wrap { order: -1; }
    .exc-card { width: 130px; padding: 9px 10px; gap: 7px; }
    .exc-ci { width: 26px; height: 26px; font-size: 12px; }
    .exc-hub { width: 90px; height: 90px; }
    .exc-himg { width: 44px; height: 44px; }
    .exc-hmain { font-size: 12px; }
    .exc-hsub { display: none; }
    .exc-app-card { width: 130px; padding: 14px 10px; }
    .exc-app-title { font-size: 12px; }
    .exc-app-sub { display: none; }
    .exc-pills { flex-direction: column; align-items: center; }
    .exc-pill { font-size: 0.78rem; padding: 7px 14px; }
}
