/*
Theme Name: NexusAI
Theme URI: https://example.com
Author: Leon Troester
Author URI: https://example.com
Description: Professionelles KI & Marketing Agentur Theme mit modernem Gradient-Design
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nexusai
Tags: blog, one-page, full-width-template, custom-colors, custom-menu
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --primary:       #4F46E5;
    --secondary:     #9333EA;
    --gradient:      linear-gradient(135deg, #4F46E5 0%, #9333EA 100%);
    --bg-white:      #FFFFFF;
    --bg-light:      #F8F7FF;
    --text-dark:     #1A1A2A;
    --text-mid:      #4B5563;
    --text-grey:     #6B7280;
    --border:        #E5E7EB;
    --border-light:  #F3F4F6;
    --shadow-sm:     0 2px 8px rgba(79,70,229,0.08);
    --shadow:        0 4px 24px rgba(79,70,229,0.12);
    --shadow-lg:     0 12px 40px rgba(79,70,229,0.18);
    --shadow-hover:  0 20px 60px rgba(79,70,229,0.22);
    --radius:        16px;
    --radius-sm:     8px;
    --radius-btn:    50px;
    --nav-height:    72px;
    --section-pad:   120px;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #4B5563;
    background: var(--bg-white);
}

/* Verhindert horizontales Scrollen ohne position:sticky zu brechen.
   overflow-x: clip erzeugt (anders als hidden) keinen neuen Block-Formatting-Context
   und bleibt daher für sticky-Kinder transparent. */
#page-wrap {
    overflow-x: clip;
    position: relative;
    width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

/* h1–h3: subtiler Grau-Verlauf — dunkel → mittelgrau */
h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.15;
    background: linear-gradient(160deg, #1A1A2A 20%, #6B7280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* h4–h6: normales Dunkelgrau, kein Verlauf */
h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
}

/* Playfair-Akzent-Wörter: Blau-Lila Verlauf, immer */
.headline-highlight {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #4F46E5 0%, #9333EA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* .gradient-text bleibt für manuelle Verwendung erhalten */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Ausnahmen: Headlines auf dunklen/farbigen Hintergründen ──
   Grau-Verlauf deaktivieren, klares Weiß setzen              */
.hero-headline,
#cta-section h2 {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.hero-playfair {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

#cta-section h2 .headline-highlight {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.section { padding: var(--section-pad) 0; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,70,229,0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    border: 2px solid transparent;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(79,70,229,0.38);
    position: relative;
    z-index: 0;
}

/* Glow-Schicht hinter dem Button */
.btn-primary::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: var(--gradient);
    opacity: 0;
    filter: blur(16px);
    z-index: -1;
    transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 42px rgba(79,70,229,0.52);
    color: #fff;
}

.btn-primary:hover::before { opacity: 0.55; }

.btn-white {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 2px 14px rgba(0,0,0,0.1);
    position: relative;
    z-index: 0;
}

.btn-white::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: rgba(255,255,255,0.6);
    opacity: 0;
    filter: blur(14px);
    z-index: -1;
    transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(255,255,255,0.25), 0 0 0 3px rgba(255,255,255,0.15);
    color: var(--primary);
}

.btn-white:hover::before { opacity: 0.7; }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}

.btn-sm { padding: 10px 24px; font-size: 0.875rem; }

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    min-height: 100vh;
    background: var(--gradient);
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-height) + 32px);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -8%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(255,255,255,0.035);
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.035);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.95);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 26px;
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a3e635;
    box-shadow: 0 0 10px #a3e635;
    animation: blink-pulse 2s infinite;
}

@keyframes blink-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
    font-size: clamp(2.4rem, 4.5vw, 3.7rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 22px;
}

.hero-headline .highlight {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: #fff;
    display: block;
}

.hero-subtext {
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
    margin-bottom: 38px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-value {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* ============================================
   DASHBOARD MOCKUP
   ============================================ */
.dashboard-wrapper {
    position: relative;
}

.dashboard-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
    border-radius: 40px;
    pointer-events: none;
}

.dashboard-mockup {
    background: #0d0d1f;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 40px 100px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.08);
    animation: float-dashboard 7s ease-in-out infinite;
    position: relative;
}

@keyframes float-dashboard {
    0%, 100% { transform: translateY(0) rotateX(2deg); }
    50% { transform: translateY(-12px) rotateX(2deg); }
}

/* Window chrome */
.dash-chrome {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    background: #1a1a30;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dash-chrome-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-chrome-dot:nth-child(1) { background: #FF5F57; }
.dash-chrome-dot:nth-child(2) { background: #FFBD2E; }
.dash-chrome-dot:nth-child(3) { background: #28C840; }

.dash-chrome-bar {
    flex: 1;
    height: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    margin: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-chrome-url {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.02em;
}

/* Dash header */
.dash-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: #12122a;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dash-logo {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.dash-logo-icon {
    width: 22px;
    height: 22px;
    background: var(--gradient);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.dash-nav-items {
    display: flex;
    gap: 2px;
    flex: 1;
}

.dash-nav-item {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.dash-nav-item.active {
    background: rgba(79,70,229,0.25);
    color: #a78bfa;
}

.dash-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient);
    margin-left: auto;
    flex-shrink: 0;
}

/* Metrics row */
.dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dash-metric-card {
    background: #0d0d1f;
    padding: 14px 16px;
}

.dash-metric-label {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.38);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 7px;
}

.dash-metric-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    display: block;
    letter-spacing: -0.02em;
    margin-bottom: 5px;
}

.dash-metric-change {
    font-size: 0.62rem;
    font-weight: 600;
    color: #34d399;
    background: rgba(52,211,153,0.1);
    padding: 2px 7px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

/* Main content area */
.dash-content {
    display: grid;
    grid-template-columns: 1fr 130px;
    gap: 1px;
    background: rgba(255,255,255,0.04);
}

.dash-video-area {
    background: #0d0d1f;
    padding: 14px 16px;
}

.dash-area-title {
    font-size: 0.66rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-area-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.05);
}

.dash-thumbnail {
    background: linear-gradient(135deg, #1a1035, #2d1452);
    border-radius: 10px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.dash-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 50%, rgba(79,70,229,0.22), transparent 55%),
        radial-gradient(circle at 75% 50%, rgba(147,51,234,0.18), transparent 55%);
}

.thumb-grid {
    position: absolute;
    inset: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    opacity: 0.3;
}

.thumb-frame { background: rgba(255,255,255,0.1); border-radius: 4px; }

.play-btn {
    position: relative;
    z-index: 1;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.94);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.play-btn::after {
    content: '';
    border-left: 11px solid #4F46E5;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 2px;
}

.dash-thumbnail:hover .play-btn { transform: scale(1.12); }

.dash-video-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 9px;
}

.dash-video-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
}

.dash-video-badge {
    font-size: 0.6rem;
    color: #a78bfa;
    background: rgba(167,139,250,0.12);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Sidebar */
.dash-sidebar-area {
    background: #0d0d1f;
    padding: 14px 12px;
    border-left: 1px solid rgba(255,255,255,0.04);
}

.dash-stat-item {
    margin-bottom: 11px;
}

.dash-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.dash-stat-name {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.35);
}

.dash-stat-pct {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
}

.dash-bar-track {
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
}

.dash-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--gradient);
}

.mini-chart-label {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 8px;
    margin-top: 14px;
    display: block;
}

.mini-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 32px;
}

.mini-bar {
    flex: 1;
    background: rgba(79,70,229,0.25);
    border-radius: 2px 2px 0 0;
    transition: background 0.2s;
}

.mini-bar.active { background: var(--gradient); }

/* ============================================
   LOGO BAR
   ============================================ */
#logo-bar {
    background: var(--bg-light);
    padding: 52px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.logo-bar-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-grey);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.logo-bar-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 0.95rem;
    font-weight: 700;
    color: #CBD5E1;
    letter-spacing: -0.01em;
    transition: color 0.2s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.logo-item:hover { color: var(--text-grey); }

/* ============================================
   FEATURES SECTION
   ============================================ */
#features { background: #F5F5F7; }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-grey);
    line-height: 1.75;
    margin-top: 16px;
}

/* 3-Spalten-Grid, mittlere Spalte minimal breiter */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* Basis-Card: keine innen Padding, kein Border — visuell sauber */
.feature-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 2px 20px rgba(0,0,0,0.055),
        0 0 0 1px rgba(0,0,0,0.04);
    transition:
        transform  0.38s cubic-bezier(0.4,0,0.2,1),
        box-shadow 0.38s cubic-bezier(0.4,0,0.2,1);
}

/* Mittlere Karte: lila Tint-Schatten, wirkt prominenter */
.feature-card:nth-child(2) {
    box-shadow:
        0 8px 48px rgba(79,70,229,0.15),
        0 0 0 1px rgba(79,70,229,0.08);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 56px rgba(0,0,0,0.1),
        0 0 0 1px rgba(0,0,0,0.05);
}

.feature-card:nth-child(2):hover {
    box-shadow:
        0 24px 64px rgba(79,70,229,0.22),
        0 0 0 1px rgba(79,70,229,0.1);
}

/* ── Visueller Mockup-Bereich (obere Karte) ── */
.feat-visual {
    background: #F0F0F5;
    height: 240px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px 18px 0;
}

/* Mittlere Karte: kein Sonderformat mehr, alle gleich */
.feature-card:nth-child(2) .feat-visual {
    background: #FAFAFA;
    align-items: center;
    padding: 20px 18px;
}

/* ── Textbereich (untere Karte) ── */
.feat-text {
    padding: 26px 28px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feat-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.3;
}

.feat-text p {
    font-size: 0.865rem;
    color: var(--text-grey);
    line-height: 1.72;
}

/* ──────────────────────────────────────────
   KARTE 1: Bar-Chart Dashboard
───────────────────────────────────────── */
.fv1-panel {
    background: #fff;
    border-radius: 14px 14px 0 0;
    padding: 14px 16px 0;
    width: 100%;
    box-shadow: 0 -6px 28px rgba(0,0,0,0.07);
    position: relative;
}

.fv1-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.fv1-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-dark);
}

.fv1-dropdown {
    font-size: 0.58rem;
    color: var(--text-grey);
    background: #F3F4F6;
    padding: 3px 8px;
    border-radius: 5px;
}

.fv1-chart {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 72px;
}

.fv1-bar-col {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    flex: 1;
}

.fv1-b {
    flex: 1;
    border-radius: 3px 3px 0 0;
    min-width: 0;
}

.fv1-b-light { background: rgba(79,70,229,0.13); }
.fv1-b-mid   { background: rgba(79,70,229,0.32); }
.fv1-b-full  { background: linear-gradient(180deg, #4F46E5, #7C3AED); }

/* Schwebendes CTR-Badge */
.fv1-badge {
    position: absolute;
    top: -11px;
    right: 16px;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    color: #fff;
    font-size: 0.61rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(79,70,229,0.42);
}

/* ──────────────────────────────────────────
   KARTE 2: Floating Insight Card + Sparkline
───────────────────────────────────────── */
.fv2-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fv2-card {
    background: #fff;
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow:
        0 8px 32px rgba(79,70,229,0.14),
        0 2px 8px rgba(0,0,0,0.05);
}

.fv2-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(79,70,229,0.38);
}

.fv2-card-body {}

.fv2-card-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    line-height: 1.3;
}

.fv2-card-sub {
    font-size: 0.6rem;
    color: var(--text-grey);
    margin-top: 2px;
    display: block;
}

.fv2-sparkbox {
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px 0;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    overflow: hidden;
}

.fv2-spark-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.fv2-spark-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-grey);
}

.fv2-spark-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
}

.fv2-sparkbox svg {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
}

/* ──────────────────────────────────────────
   KARTE 3: App-Icon + schwebende Chips
───────────────────────────────────────── */
.fv3-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fv3-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 16px 40px rgba(79,70,229,0.4);
    position: relative;
    z-index: 1;
    animation: fv3-float 5s ease-in-out infinite;
}

@keyframes fv3-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-9px); }
}

.fv3-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(79,70,229,0.15);
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fv3-ring-1 { width: 116px; height: 116px; }
.fv3-ring-2 { width: 168px; height: 168px; opacity: 0.55; }

.fv3-chip {
    position: absolute;
    background: #fff;
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 0.64rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,0.09);
    white-space: nowrap;
    z-index: 2;
}

.fv3-chip-1 { top: 24px;    left: 10px;                                color: #4F46E5; }
.fv3-chip-2 { top: 24px;    right: 10px;                               color: #9333EA; }
.fv3-chip-3 { bottom: 24px; left: 50%; transform: translateX(-50%);   color: #059669; }

/* ── FVA: Chat-Interface (Karte 1) ── */
.fva-wrap {
    width: 100%;
    padding: 20px 18px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fva-msg {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    animation: fva-slide 0.4s ease both;
}
.fva-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    letter-spacing: 0.02em;
}
.fva-badge-wa  { background: #dcfce7; color: #16a34a; }
.fva-badge-web { background: #dbeafe; color: #2563eb; }
.fva-badge-tel { background: #fde8d8; color: #ea580c; }
.fva-bubble {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px 10px 10px 2px;
    padding: 7px 11px;
    font-size: 11.5px;
    color: #374151;
    line-height: 1.4;
}
.fva-reply {
    align-self: flex-end;
    flex-direction: row-reverse;
}
.fva-reply .fva-bubble {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: #fff;
    border: none;
    border-radius: 10px 10px 2px 10px;
}
.fva-typing {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0 0 2px;
}
.fva-typing-dots {
    display: flex;
    gap: 3px;
}
.fva-typing-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9333EA;
    animation: fva-dot 1.2s ease-in-out infinite;
}
.fva-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.fva-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes fva-dot {
    0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
    40%            { transform: scale(1);   opacity: 1; }
}
.fva-typing-label { font-size: 10px; color: #9333EA; font-weight: 500; }

/* ── FVB: Kalender (Karte 2) ── */
.fvb-wrap {
    width: 100%;
    padding: 18px 18px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fvb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fvb-month { font-size: 12px; font-weight: 600; color: #1A1A2A; }
.fvb-nav   { font-size: 13px; color: #9ca3af; cursor: default; }
.fvb-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    text-align: center;
}
.fvb-day-label {
    font-size: 9px;
    font-weight: 600;
    color: #9ca3af;
    padding-bottom: 2px;
    text-transform: uppercase;
}
.fvb-day {
    font-size: 10.5px;
    color: #374151;
    padding: 4px 2px;
    border-radius: 5px;
    line-height: 1;
}
.fvb-day-empty { opacity: 0; }
.fvb-day-booked {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
}
.fvb-day-today {
    border: 1.5px solid #4F46E5;
    color: #4F46E5;
    font-weight: 600;
}
.fvb-notification {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 11px;
    color: #16a34a;
    font-weight: 500;
}
.fvb-notif-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #16a34a;
    flex-shrink: 0;
    animation: fva-dot 1.5s ease-in-out infinite;
}

/* ── FVC: Follow-up Sequence (Karte 3) ── */
.fvc-wrap {
    width: 100%;
    padding: 20px 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.fvc-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}
.fvc-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 24px;
    bottom: -8px;
    width: 2px;
    background: #e5e7eb;
}
.fvc-step.fvc-done::before { background: linear-gradient(180deg, #4F46E5, #7C3AED); }
.fvc-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    z-index: 1;
}
.fvc-done .fvc-dot {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-color: transparent;
    color: #fff;
}
.fvc-active .fvc-dot {
    border-color: #4F46E5;
    color: #4F46E5;
    font-weight: 700;
}
.fvc-body { padding-bottom: 14px; }
.fvc-label {
    font-size: 11.5px;
    font-weight: 600;
    color: #1A1A2A;
    line-height: 1.3;
}
.fvc-sub {
    font-size: 10.5px;
    color: #9ca3af;
    margin-top: 1px;
}
.fvc-done .fvc-label { color: #4F46E5; }
.fvc-active .fvc-label { color: #1A1A2A; }
.fvc-pending .fvc-label { color: #9ca3af; }
.fvc-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 20px;
    margin-top: 3px;
}
.fvc-badge-sent    { background: #ede9fe; color: #7C3AED; }
.fvc-badge-active  { background: #dbeafe; color: #2563eb; }
.fvc-badge-pending { background: #f3f4f6; color: #9ca3af; }

/* ── FVD: Ads-Dashboard (Karte 4) ── */
.fvd-wrap {
    width: 100%;
    padding: 18px 18px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fvd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fvd-title  { font-size: 12px; font-weight: 600; color: #1A1A2A; }
.fvd-status { font-size: 10px; font-weight: 600; color: #16a34a; background: #dcfce7; padding: 2px 8px; border-radius: 20px; }
.fvd-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.fvd-metric {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 8px 7px;
    text-align: center;
}
.fvd-metric-val {
    font-size: 14px;
    font-weight: 700;
    color: #1A1A2A;
    display: block;
    line-height: 1;
}
.fvd-metric-val.green { color: #16a34a; }
.fvd-metric-label {
    font-size: 9px;
    color: #9ca3af;
    margin-top: 3px;
    display: block;
    font-weight: 500;
}
.fvd-audience {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    border-radius: 8px;
    padding: 8px 10px;
}
.fvd-audience-label { font-size: 10.5px; color: #7C3AED; font-weight: 500; flex: 1; }
.fvd-audience-bar-wrap {
    flex: 1;
    height: 5px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}
.fvd-audience-bar {
    height: 100%;
    width: 73%;
    background: linear-gradient(90deg, #4F46E5, #9333EA);
    border-radius: 3px;
}
.fvd-audience-pct { font-size: 10px; font-weight: 600; color: #4F46E5; }

/* ── FVE: Unified Dashboard (Karte 5) ── */
.fve-wrap {
    width: 100%;
    padding: 16px 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fve-toprow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.fve-tile {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 8px 7px;
    text-align: center;
}
.fve-tile-icon { font-size: 14px; line-height: 1; }
.fve-tile-val {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1A1A2A;
    margin-top: 3px;
    line-height: 1;
}
.fve-tile-label {
    display: block;
    font-size: 8.5px;
    color: #9ca3af;
    margin-top: 2px;
    font-weight: 500;
}
.fve-sources {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.fve-source-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.fve-source-label { font-size: 10px; color: #374151; font-weight: 500; width: 70px; flex-shrink: 0; }
.fve-source-track {
    flex: 1;
    height: 6px;
    background: #f3f4f6;
    border-radius: 3px;
    overflow: hidden;
}
.fve-source-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #4F46E5, #9333EA);
}
.fve-source-pct { font-size: 10px; color: #4F46E5; font-weight: 600; width: 28px; text-align: right; }

/* ── FVF: Skalierungs-Graph (Karte 6) ── */
.fvf-wrap {
    width: 100%;
    padding: 18px 18px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fvf-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.fvf-title { font-size: 12px; font-weight: 600; color: #1A1A2A; }
.fvf-growth {
    font-size: 18px;
    font-weight: 800;
    color: #4F46E5;
    line-height: 1;
}
.fvf-growth-label { font-size: 9px; color: #9ca3af; display: block; text-align: right; }
.fvf-chart {
    position: relative;
    height: 80px;
}
.fvf-chart svg { width: 100%; height: 100%; overflow: visible; }
.fvf-locations {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.fvf-loc {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    border-radius: 20px;
    padding: 3px 9px 3px 5px;
    font-size: 9.5px;
    font-weight: 500;
    color: #4F46E5;
}
.fvf-loc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
#how-it-works { background: #fff; }

.hiw-steps {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.hiw-step {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    gap: 56px;
    align-items: center;
}

/* ── Left text ── */
.hiw-step-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

.hiw-left h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.hiw-left p {
    font-size: 0.96rem;
    color: var(--text-mid);
    line-height: 1.85;
}

/* ── Center timeline column ── */
.hiw-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    justify-content: center;
    position: relative;
}

/* Vertical line spanning the full column height */
.hiw-center::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
        rgba(79,70,229,0.08) 0%,
        #4F46E5 30%,
        #9333EA 70%,
        rgba(147,51,234,0.08) 100%);
    z-index: 0;
}

/* First step: line starts at the dot, not the top */
.hiw-step:first-child .hiw-center::before { top: 50%; }

/* Last step: line ends at the dot, not the bottom */
.hiw-step:last-child .hiw-center::before  { bottom: 50%; }

/* Bridge line spanning the gap between steps */
.hiw-step:not(:last-child) .hiw-center::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    height: 100px;
    width: 2px;
    background: linear-gradient(180deg, #9333EA, rgba(79,70,229,0.08));
    z-index: 0;
}

/* ── Timeline dot ── */
.hiw-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid #d1d5db;
    z-index: 2;
    position: relative;
    flex-shrink: 0;
    transition:
        background  0.5s ease,
        border-color 0.5s ease,
        box-shadow  0.5s ease;
}

.hiw-dot.is-visible {
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    border-color: transparent;
    box-shadow:
        0 0 0 5px rgba(79,70,229,0.12),
        0 0 20px rgba(79,70,229,0.30);
}

/* ── Right visual card ── */
.hiw-card {
    background: #fff;
    border-radius: 20px;
    box-shadow:
        0 4px 32px rgba(0,0,0,0.07),
        0 0 0 1px rgba(0,0,0,0.04);
    overflow: hidden;
    position: relative;
    padding: 28px 28px 24px;
}

.hiw-badge-num {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 2;
}

/* ── Shared panel primitives ── */
.hw-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-top: 8px;
}

.hw-panel-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
}

.hw-status-badge {
    font-size: 10.5px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
}

.hw-status-green  { background: #dcfce7; color: #16a34a; }
.hw-status-purple { background: #ede9fe; color: #7C3AED; }
.hw-status-blue   { background: #dbeafe; color: #2563eb; }
.hw-green         { color: #16a34a; }

/* Shared bar track */
.hw-bar-track {
    flex: 1;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.hw-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4F46E5, #9333EA);
    border-radius: 3px;
}

/* ── Step 1: Ads ── */
.hw-ads { display: flex; flex-direction: column; gap: 14px; }

.hw-ads-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.hw-metric {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
}

.hw-metric-val {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.hw-metric-lbl {
    display: block;
    font-size: 9.5px;
    color: #9ca3af;
    margin-top: 4px;
    font-weight: 500;
}

.hw-audience-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    border-radius: 10px;
    padding: 10px 14px;
}

.hw-audience-label { font-size: 11px; font-weight: 500; color: #7C3AED; flex-shrink: 0; }
.hw-audience-pct   { font-size: 11px; font-weight: 700; color: #4F46E5; flex-shrink: 0; }

.hw-sparkbox {
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 14px 0;
    overflow: hidden;
}

.hw-spark-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.hw-spark-label { font-size: 10.5px; font-weight: 500; color: var(--text-mid); }
.hw-spark-val   { font-size: 10.5px; font-weight: 700; color: #16a34a; }
.hw-sparkbox svg { display: block; width: 100%; height: 40px; }

/* ── Step 2: Chat ── */
.hw-chat { display: flex; flex-direction: column; gap: 0; }
.hw-chat-msgs { display: flex; flex-direction: column; gap: 9px; }

.hw-msg { display: flex; align-items: flex-start; gap: 9px; }
.hw-msg-reply { flex-direction: row-reverse; }

.hw-ch-badge {
    font-size: 9.5px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    flex-shrink: 0;
    margin-top: 3px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.hw-ch-wa  { background: #dcfce7; color: #16a34a; }
.hw-ch-web { background: #dbeafe; color: #2563eb; }
.hw-ch-tel { background: #fde8d8; color: #ea580c; }

.hw-bubble {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px 10px 10px 2px;
    padding: 8px 12px;
    font-size: 11.5px;
    color: #374151;
    line-height: 1.5;
}

.hw-bubble-reply {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: #fff;
    border: none;
    border-radius: 10px 10px 2px 10px;
}

.hw-typing-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0 0 2px;
}

.hw-typing-dots { display: flex; gap: 3px; }

.hw-typing-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9333EA;
    animation: fva-dot 1.2s ease-in-out infinite;
}

.hw-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.hw-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
.hw-typing-lbl { font-size: 10px; color: #9333EA; font-weight: 500; }

/* ── Step 3: Calendar ── */
.hw-cal { display: flex; flex-direction: column; gap: 14px; }

.hw-cal-nav { font-size: 14px; color: #9ca3af; }

.hw-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.hw-cal-dl {
    font-size: 9.5px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    padding-bottom: 4px;
}

.hw-cal-d {
    font-size: 12px;
    color: #374151;
    padding: 5px 2px;
    border-radius: 6px;
    line-height: 1;
}

.hw-cal-empty { opacity: 0; }

.hw-cal-booked {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: #fff;
    font-weight: 600;
    border-radius: 7px;
}

.hw-cal-today {
    border: 1.5px solid #4F46E5;
    color: #4F46E5;
    font-weight: 600;
}

.hw-cal-events { display: flex; flex-direction: column; gap: 8px; }

.hw-cal-event {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.hw-event-new { background: #f0fdf4; border-color: #bbf7d0; }

.hw-event-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    flex-shrink: 0;
}

.hw-event-dot-live {
    background: #16a34a;
    animation: fva-dot 1.5s ease-in-out infinite;
}

.hw-event-title { font-size: 11.5px; font-weight: 600; color: var(--text-dark); }
.hw-event-sub   { font-size: 10px;  color: #9ca3af; margin-top: 2px; }

.hw-event-tag {
    margin-left: auto;
    font-size: 9px;
    font-weight: 600;
    background: #dcfce7;
    color: #16a34a;
    padding: 2px 8px;
    border-radius: 20px;
    flex-shrink: 0;
}

/* ── Step 4: Cockpit ── */
.hw-cockpit { display: flex; flex-direction: column; gap: 14px; }

.hw-cockpit-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.hw-tile {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 13px 10px;
    text-align: center;
}

.hw-tile-accent {
    background: #f5f3ff;
    border-color: #ddd6fe;
}

.hw-tile-val {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.hw-tile-val-accent { color: #4F46E5; }

.hw-tile-lbl {
    display: block;
    font-size: 9.5px;
    color: #9ca3af;
    margin-top: 5px;
    font-weight: 500;
}

.hw-pipeline {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
}

.hw-pipeline-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 14px;
}

.hw-pipeline-stages {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 76px;
}

.hw-stage {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    height: 100%;
}

.hw-stage-bar {
    width: 100%;
    background: linear-gradient(180deg, #4F46E5, #7C3AED);
    border-radius: 5px 5px 0 0;
    opacity: 0.75;
}

.hw-stage-green {
    background: linear-gradient(180deg, #16a34a, #059669);
    opacity: 1;
}

.hw-stage-lbl {
    font-size: 9px;
    color: #6B7280;
    text-align: center;
    line-height: 1.4;
}

/* ── HOW IT WORKS RESPONSIVE ── */
@media (max-width: 900px) {
    .hiw-step {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hiw-center { display: none; }
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
#comparison { background: #F8F7FF; }

.vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/* ── Column cards ── */
.vs-col {
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vs-col-bad {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 8px 40px rgba(239, 68, 68, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.vs-col-good {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 8px 40px rgba(79, 70, 229, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ── Column headers ── */
.vs-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 26px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.vs-header-bad  { background: rgba(239, 68, 68, 0.08); color: #1A1A2A; border-bottom: 1px solid rgba(239, 68, 68, 0.12); }
.vs-header-good { background: linear-gradient(135deg,#4F46E5,#9333EA); color: #fff; }

.vs-header-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 800; flex-shrink: 0;
}

.vs-header-icon-bad  { background: rgba(239,68,68,0.15); color: #ef4444; }
.vs-header-icon-good { background: rgba(255,255,255,0.22); color: #fff; }

/* ── Mockup area ── */
.vs-mockup {
    padding: 20px 20px 0;
    position: relative;
}

/* ─ CHAOS MOCKUP (left card) ─ */
.chaos-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    border-radius: 10px;
}

.chaos-win {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.45);
    font-size: 9px;
}

/* Window bars */
.chaos-bar {
    display: flex; align-items: center; gap: 5px;
    padding: 5px 8px;
    font-size: 9px; font-weight: 600; color: #fff;
}

.chaos-dots { display: flex; gap: 3px; margin-right: 4px; }
.chaos-dots i { width: 6px; height: 6px; border-radius: 50%; display: block; }
.chaos-dots i:nth-child(1) { background: #ff5f57; }
.chaos-dots i:nth-child(2) { background: #ffbd2e; }
.chaos-dots i:nth-child(3) { background: #28c840; }

.chaos-body { padding: 6px 8px; }

/* WhatsApp window */
.chaos-win-wa {
    width: 164px; left: 6px; top: 12px;
    transform: rotate(-2.5deg);
    background: #fff;
    z-index: 2;
}
.chaos-bar-wa { background: #075E54; }
.chaos-wa-row { display: flex; align-items: center; gap: 6px; padding: 5px 0; border-bottom: 1px solid #f0f0f0; }
.chaos-wa-avatar { width: 24px; height: 24px; border-radius: 50%; background: #ddd; flex-shrink: 0; }
.chaos-wa-meta { flex: 1; }
.chaos-wa-name { font-size: 9px; font-weight: 600; color: #111; }
.chaos-wa-msg  { font-size: 8px; color: #888; margin-top: 1px; }
.chaos-wa-time { font-size: 7.5px; color: #aaa; }
.chaos-wa-unread { width: 16px; height: 16px; border-radius: 50%; background: #25D366; color: #fff; font-size: 8px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* Excel window */
.chaos-win-xl {
    width: 178px; left: 105px; top: 28px;
    transform: rotate(2deg);
    background: #fff;
    z-index: 3;
}
.chaos-bar-xl { background: #1D6F42; }
.chaos-xl-grid { display: grid; grid-template-columns: 28px repeat(3,1fr); gap: 1px; background: #d0d0d0; }
.chaos-xl-cell { background: #fff; padding: 3px 4px; font-size: 7.5px; color: #333; white-space: nowrap; overflow: hidden; }
.chaos-xl-cell-h { background: #E2EFDA; font-weight: 600; color: #1D6F42; }
.chaos-xl-cell-num { text-align: right; color: #1D6F42; font-weight: 600; }
.chaos-xl-cell-red { color: #C00000; font-weight: 600; text-align: right; }

/* Calendar window */
.chaos-win-cal {
    width: 158px; right: 4px; top: 8px;
    transform: rotate(-1.5deg);
    background: #fff;
    z-index: 2;
}
.chaos-bar-cal { background: #1a73e8; }
.chaos-cal-month { font-size: 9px; font-weight: 600; color: #333; padding: 5px 8px 3px; }
.chaos-cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 1px; padding: 0 6px 6px; text-align: center; }
.chaos-cal-d { font-size: 8px; padding: 2px 1px; color: #555; }
.chaos-cal-d-h { font-size: 7.5px; font-weight: 600; color: #888; }
.chaos-cal-d-busy { background: #fce8e6; color: #c5221f; border-radius: 3px; font-weight: 600; }
.chaos-cal-d-today { background: #1a73e8; color: #fff; border-radius: 50%; font-weight: 700; }

/* Email window */
.chaos-win-mail {
    width: 182px; left: 40px; bottom: 6px;
    transform: rotate(1.5deg);
    background: #fff;
    z-index: 4;
}
.chaos-bar-mail { background: #4285f4; }
.chaos-mail-row { display: flex; align-items: center; gap: 6px; padding: 5px 8px; border-bottom: 1px solid #f0f0f0; }
.chaos-mail-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.chaos-mail-dot-unread { background: #4285f4; }
.chaos-mail-dot-read   { background: #ccc; }
.chaos-mail-from  { font-size: 8.5px; font-weight: 600; color: #333; flex: 1; }
.chaos-mail-subj  { font-size: 8px; color: #666; flex: 1.5; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chaos-mail-time  { font-size: 7.5px; color: #aaa; }
.chaos-mail-unread-badge { background: #4285f4; color: #fff; font-size: 7px; font-weight: 700; padding: 1px 5px; border-radius: 10px; }

/* Notification bubble */
.chaos-notif {
    position: absolute;
    bottom: 14px; right: 10px;
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(239,68,68,0.5);
    white-space: nowrap;
}

/* ─ CLEAN DASHBOARD MOCKUP (right card) ─ */
.arena-dash {
    background: #F5F4FF;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(79,70,229,0.1);
}

.arena-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px;
    background: linear-gradient(135deg,#4F46E5,#7C3AED);
}

.arena-logo {
    font-size: 11px; font-weight: 700; color: #fff;
    display: flex; align-items: center; gap: 5px;
}

.arena-nav-links { display: flex; gap: 12px; }
.arena-nav-link  { font-size: 9px; color: rgba(255,255,255,0.65); font-weight: 500; }
.arena-nav-link-active { color: #fff; font-weight: 700; }

.arena-tiles {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
    padding: 12px 12px 8px;
}

.arena-tile {
    background: #fff;
    border-radius: 8px;
    padding: 10px 10px 9px;
    text-align: center;
    border: 1px solid rgba(79,70,229,0.08);
}

.arena-tile-val {
    display: block;
    font-size: 18px; font-weight: 700; color: #1A1A2A; line-height: 1;
}

.arena-tile-val-accent { color: #4F46E5; }

.arena-tile-lbl {
    display: block;
    font-size: 8.5px; color: #9ca3af; margin-top: 3px; font-weight: 500;
}

.arena-tile-trend {
    display: block;
    font-size: 8px; font-weight: 600; color: #16a34a; margin-top: 2px;
}

.arena-activity {
    padding: 0 12px 12px;
}

.arena-act-hdr {
    font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: #9ca3af; padding: 6px 0 8px;
    border-top: 1px solid rgba(79,70,229,0.08);
}

.arena-act-item {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 0; border-bottom: 1px solid rgba(79,70,229,0.06);
}
.arena-act-item:last-child { border-bottom: none; }

.arena-act-dot {
    width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.arena-act-dot-purple { background: #7C3AED; }
.arena-act-dot-green  { background: #16a34a; }
.arena-act-dot-blue   { background: #2563eb; }

.arena-act-text  { font-size: 10px; color: #374151; font-weight: 500; flex: 1; }
.arena-act-time  { font-size: 9px; color: #9ca3af; white-space: nowrap; }
.arena-act-badge {
    font-size: 8px; font-weight: 600; padding: 1.5px 7px; border-radius: 20px;
    background: #ede9fe; color: #7C3AED; white-space: nowrap;
}

/* ── Item list (shared) ── */
.vs-items { padding: 6px 0 10px; flex: 1; }

.vs-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(239, 68, 68, 0.08);
}

.vs-col-good .vs-item { border-bottom-color: #f3f4f6; }
.vs-item:last-child   { border-bottom: none; }

/* ── Bad items ── */
.vs-item-bad {
    opacity: 0; transform: translateX(-12px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.vs-item-bad.is-visible { opacity: 1; transform: translateX(0); }

.vs-icon-bad {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(239,68,68,0.12); color: #ef4444;
    font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.vs-item-bad .vs-text { font-size: 0.875rem; color: #4B5563; line-height: 1.5; }

/* ── Good items ── */
.vs-item-good {
    opacity: 0; transform: translateX(12px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.vs-item-good.is-visible { opacity: 1; transform: translateX(0); }

.vs-check {
    width: 22px; height: 22px; border-radius: 50%;
    background: #dcfce7; color: #16a34a;
    font-size: 11px; font-weight: 800;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transform: scale(0); opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
}
.vs-item-good.is-visible .vs-check { transform: scale(1); opacity: 1; }

.vs-item-good .vs-text { font-size: 0.875rem; color: var(--text-dark); font-weight: 500; line-height: 1.5; }

@media (max-width: 720px) {
    .vs-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ONBOARDING — Horizontal scroll / sticky steps
   ============================================ */
#onboarding { background: #F8F7FF; }

/* Tall wrapper creates the scroll travel distance (500vh = 5 × 100vh) */
.ob-scroll-wrap {
    height: 500vh;
    position: relative;
}

/* The sticky viewport that pins to the top during scroll */
.ob-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
body.admin-bar .ob-sticky          { top: 32px; height: calc(100vh - 32px); }
@media (max-width: 782px) {
    body.admin-bar .ob-sticky      { top: 46px; height: calc(100vh - 46px); }
}

/* Section headline sits above the cards, stays visible throughout */
.ob-headline-wrap {
    flex-shrink: 0;
    padding: 44px 0 20px;
    text-align: center;
}
.ob-headline {
    font-size: clamp(1.65rem, 2.8vw, 2.4rem);
    margin: 8px 0 0;
}

/* Overflow-clipped container that frames exactly one card at a time */
.ob-viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* Wide track — 5 × viewport width, slides left via translateX */
.ob-track {
    display: flex;
    width: calc(5 * 100%);
    height: 100%;
    transform: translateX(0);
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Each step fills one viewport-width slot */
.ob-step {
    width: 20%;           /* 1/5 of track = 100% of ob-viewport */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px 20px;
    flex-shrink: 0;
}

/* ─── Glassmorphism card ─── */
.ob-card {
    width: 100%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    box-shadow: 0 12px 48px rgba(79, 70, 229, 0.12), 0 2px 12px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    min-height: 500px;
    max-height: calc(100vh - 150px);
}

/* Left: text */
.ob-card-left {
    padding: 56px 56px 48px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(79, 70, 229, 0.08);
}
.ob-card-left h3 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.15;
    margin: 14px 0 18px;
    background: linear-gradient(160deg, #1A1A2A 20%, #4F46E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ob-card-left p {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.72;
    flex: 1;
    margin: 0 0 32px;
}

/* "Schritt N von 5" pill */
.ob-step-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #4F46E5;
    background: rgba(79, 70, 229, 0.08);
    display: inline-block;
    padding: 5px 13px;
    border-radius: 20px;
    align-self: flex-start;
}

/* Progress bar + dots */
.ob-progress-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}
.ob-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(79, 70, 229, 0.12);
    border-radius: 2px;
    overflow: hidden;
}
.ob-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4F46E5, #9333EA);
    border-radius: 2px;
}
.ob-progress-dots { display: flex; gap: 6px; flex-shrink: 0; }
.ob-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.18);
    transition: background 0.3s ease;
}
.ob-dot-done   { background: rgba(79, 70, 229, 0.45); }
.ob-dot-active { background: #4F46E5; box-shadow: 0 0 0 2.5px rgba(79, 70, 229, 0.22); }

/* Right: mockup area */
.ob-card-right {
    background: #EEEDF7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px;
    overflow: hidden;
}

/* ─── Mockup: Video Call ─── */
.obm-vc { width: 100%; max-width: 420px; display: flex; flex-direction: column; gap: 12px; }
.obm-vc-screen {
    background: #1A1A2A;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.obm-vc-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.obm-vc-dots { display: flex; gap: 4px; flex-shrink: 0; }
.obm-vc-dots i {
    width: 7px; height: 7px; border-radius: 50%; display: block;
}
.obm-vc-dots i:nth-child(1) { background: #ff5f57; }
.obm-vc-dots i:nth-child(2) { background: #febc2e; }
.obm-vc-dots i:nth-child(3) { background: #28c840; }
.obm-vc-url  { flex: 1; font-size: 0.6rem; color: rgba(255,255,255,0.4); text-align: center; }
.obm-vc-live { font-size: 0.58rem; font-weight: 700; color: #4ade80; letter-spacing: 0.05em; }
.obm-vc-persons {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 16px 20px 10px;
}
.obm-vc-person { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.obm-vc-avatar {
    width: 58px; height: 58px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.68rem; font-weight: 700; color: #fff;
    border: 2px solid rgba(255,255,255,0.12);
}
.obm-vc-av1 { background: linear-gradient(135deg, #4F46E5, #9333EA); }
.obm-vc-av2 { background: linear-gradient(135deg, #0891b2, #0ea5e9); }
.obm-vc-person span { font-size: 0.58rem; color: rgba(255,255,255,0.55); }
.obm-vc-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px 14px;
}
.obm-vc-btn {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
}
.obm-vc-hang { background: #ef4444; }
.obm-vc-invite {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.obm-vc-inv-icon  { font-size: 1.1rem; flex-shrink: 0; }
.obm-vc-inv-title { font-size: 0.72rem; font-weight: 600; color: var(--text-dark); }
.obm-vc-inv-time  { font-size: 0.62rem; color: var(--text-mid); margin-top: 1px; }
.obm-vc-inv-badge {
    margin-left: auto;
    width: 22px; height: 22px; border-radius: 50%;
    background: #dcfce7; color: #16a34a;
    font-size: 0.68rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* ─── Mockup: Audit ─── */
.obm-audit {
    width: 100%; max-width: 420px;
    background: #fff;
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.obm-audit-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 15px;
    background: #F8F7FF;
    border-bottom: 1px solid rgba(79,70,229,0.1);
}
.obm-audit-title { font-size: 0.72rem; font-weight: 600; color: var(--text-dark); }
.obm-audit-badge {
    font-size: 0.58rem; font-weight: 700;
    background: #dcfce7; color: #16a34a;
    padding: 2px 8px; border-radius: 20px;
}
.obm-process-flow {
    display: flex; align-items: center; gap: 4px;
    padding: 13px 15px 9px;
}
.obm-proc-node {
    flex: 1; background: #F8F7FF; border-radius: 8px;
    padding: 7px; text-align: center;
    border: 1px solid rgba(79,70,229,0.1);
}
.obm-proc-warn { background: #fffbeb; border-color: rgba(234,179,8,0.25); }
.obm-proc-crit { background: #fff1f0; border-color: rgba(239,68,68,0.25); }
.obm-proc-label { display: block; font-size: 0.52rem; color: var(--text-mid); }
.obm-proc-val   { display: block; font-size: 0.62rem; font-weight: 700; color: var(--text-dark); margin-top: 2px; }
.obm-proc-arrow { font-size: 0.65rem; color: #9ca3af; flex-shrink: 0; }
.obm-audit-scores { padding: 9px 15px 13px; display: flex; flex-direction: column; gap: 7px; }
.obm-score-row { display: flex; align-items: center; gap: 7px; }
.obm-score-label { font-size: 0.6rem; color: var(--text-mid); width: 86px; flex-shrink: 0; }
.obm-score-track {
    flex: 1; height: 5px; background: #f3f4f6;
    border-radius: 3px; overflow: hidden;
}
.obm-score-fill {
    height: 100%;
    background: linear-gradient(90deg, #4F46E5, #9333EA);
    border-radius: 3px;
}
.obm-score-val { font-size: 0.62rem; font-weight: 700; color: #4F46E5; width: 34px; text-align: right; flex-shrink: 0; }

/* ─── Mockup: Setup / Hub & Spoke ─── */
.obm-setup { width: 100%; max-width: 320px; }
.obm-setup-ring {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    align-items: center;
    justify-items: center;
}
.obm-st-wa  { grid-column: 1; grid-row: 1; }
.obm-st-ads { grid-column: 3; grid-row: 1; }
.obm-setup-center {
    grid-column: 2; grid-row: 1 / 3;
    width: 68px; height: 68px;
    background: linear-gradient(135deg, #4F46E5, #9333EA);
    border-radius: 18px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(79,70,229,0.38);
    color: #fff; font-size: 0.52rem; font-weight: 700;
    gap: 2px;
}
.obm-setup-icon { font-size: 1.4rem; line-height: 1; }
.obm-st-crm { grid-column: 1; grid-row: 2; }
.obm-st-cal { grid-column: 3; grid-row: 2; }
.obm-setup-tool {
    display: flex; flex-direction: column;
    align-items: center; gap: 4px;
    font-size: 0.54rem; color: var(--text-mid); font-weight: 500;
    position: relative;
}
.obm-st-icon {
    width: 42px; height: 42px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.58rem; font-weight: 800;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.obm-st-check {
    position: absolute; top: -4px; right: -4px;
    width: 14px; height: 14px; border-radius: 50%;
    background: #16a34a; color: #fff;
    font-size: 0.48rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 2px #EEEDF7;
}

/* ─── Mockup: Live Cockpit ─── */
.obm-live {
    width: 100%; max-width: 420px;
    background: #fff;
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.obm-live-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 15px;
    background: #1A1A2A;
}
.obm-live-title { font-size: 0.7rem; font-weight: 600; color: #fff; }
.obm-live-badge {
    font-size: 0.58rem; font-weight: 700; color: #4ade80; letter-spacing: 0.05em;
    animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
.obm-live-leads { padding: 7px 11px; display: flex; flex-direction: column; gap: 1px; }
.obm-lead-item {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 7px; border-radius: 8px;
}
.obm-lead-new { background: rgba(74, 222, 128, 0.07); }
.obm-lead-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80; flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(74,222,128,0.18);
}
.obm-lead-dot-purple { background: #9333EA; box-shadow: 0 0 0 3px rgba(147,51,234,0.15); }
.obm-lead-dot-gray   { background: #d1d5db; box-shadow: none; }
.obm-lead-info { flex: 1; }
.obm-lead-name   { display: block; font-size: 0.62rem; font-weight: 600; color: var(--text-dark); }
.obm-lead-status { display: block; font-size: 0.56rem; color: var(--text-mid); }
.obm-lead-time   { font-size: 0.52rem; color: #9ca3af; flex-shrink: 0; }
.obm-live-stats { display: flex; border-top: 1px solid #f3f4f6; }
.obm-live-stat {
    flex: 1; text-align: center; padding: 9px 6px;
    border-right: 1px solid #f3f4f6;
}
.obm-live-stat:last-child { border-right: none; }
.obm-ls-val   { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.obm-ls-label { display: block; font-size: 0.52rem; color: var(--text-mid); margin-top: 2px; }

/* ─── Mockup: Growth ─── */
.obm-growth {
    width: 100%; max-width: 420px;
    background: #fff;
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.obm-growth-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 15px 7px;
}
.obm-growth-title { font-size: 0.72rem; font-weight: 600; color: var(--text-dark); }
.obm-growth-badge {
    font-size: 0.62rem; font-weight: 700;
    background: #dcfce7; color: #16a34a;
    padding: 3px 9px; border-radius: 20px;
}
.obm-growth-chart { padding: 2px 15px 2px; }
.obm-chart-svg    { width: 100%; display: block; }
.obm-growth-kpis  { display: flex; border-top: 1px solid #f3f4f6; }
.obm-kpi {
    flex: 1; text-align: center; padding: 9px 6px;
    border-right: 1px solid #f3f4f6;
}
.obm-kpi:last-child { border-right: none; }
.obm-kpi-val   { display: block; font-size: 0.9rem; font-weight: 700; color: #4F46E5; }
.obm-kpi-label { display: block; font-size: 0.52rem; color: var(--text-mid); margin-top: 2px; }

/* ─── Mobile: vertical stacked fallback ─── */
@media (max-width: 768px) {
    .ob-scroll-wrap { height: auto; }
    .ob-sticky      { position: relative; height: auto; overflow: visible; }
    .ob-viewport    { overflow: visible; }
    .ob-track {
        flex-direction: column;
        width: 100%;
        transform: none !important;
        transition: none;
        gap: 20px;
        padding: 0 0 40px;
    }
    .ob-step        { width: 100%; height: auto; padding: 0 16px; }
    .ob-card        { grid-template-columns: 1fr; max-height: none; min-height: 0; }
    .ob-card-left   { border-right: none; border-bottom: 1px solid rgba(79,70,229,0.08); padding: 32px 28px 28px; }
    .ob-card-left h3 { font-size: 1.75rem; }
    .ob-card-left p  { font-size: 0.95rem; }
    .ob-card-right  { padding: 28px; min-height: 240px; }
    .ob-headline-wrap { padding: 36px 0 12px; }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
#problems { background: #F5F5F7; padding-bottom: 0; }
#features  { padding-top: 110px; }

.problem-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 68px;
}

.problem-headline {
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    position: sticky;
    top: calc(var(--nav-height) + 24px);
}

.problem-body p {
    font-size: 1rem;
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 18px;
}

.problem-body p strong { color: var(--text-dark); }

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

/* Gleicher Stil wie Feature-Cards */
.problem-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: none;
    padding: 0;
    box-shadow:
        0 2px 24px rgba(0,0,0,0.055),
        0 0 0 1px rgba(0,0,0,0.04);
    transition:
        transform  0.38s cubic-bezier(0.4,0,0.2,1),
        box-shadow 0.38s cubic-bezier(0.4,0,0.2,1);
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 56px rgba(0,0,0,0.1),
        0 0 0 1px rgba(0,0,0,0.05);
}

/* Textbereich innerhalb Problem-Karten */
.feat-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.feat-text p {
    font-size: 0.855rem;
    color: var(--text-grey);
    line-height: 1.7;
}

.problem-number {
    font-size: 0.63rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    opacity: 0.5;
}

/* Variante: visueller Bereich zentriert (für nicht-panel Mockups) */
.feat-visual-center {
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
}

/* ──────────────────────────────────────────
   PP1: Declining Metrics (sinkende Balken)
───────────────────────────────────────── */
.pp1-panel {
    background: #fff;
    border-radius: 14px 14px 0 0;
    padding: 14px 16px 0;
    width: 100%;
    box-shadow: 0 -5px 24px rgba(0,0,0,0.07);
    position: relative;
}

.pp1-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.pp1-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pp1-badge {
    font-size: 0.6rem;
    font-weight: 700;
    color: #ef4444;
    background: rgba(239,68,68,0.1);
    padding: 3px 9px;
    border-radius: 50px;
}

.pp1-bars {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 72px;
}

.pp1-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, rgba(239,68,68,0.75), rgba(239,68,68,0.35));
}

/* ──────────────────────────────────────────
   PP2: Task Overload (überladene Aufgaben)
───────────────────────────────────────── */
.pp2-panel {
    background: #fff;
    border-radius: 14px 14px 0 0;
    padding: 14px 16px 0;
    width: 100%;
    box-shadow: 0 -5px 24px rgba(0,0,0,0.07);
}

.pp2-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.pp2-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pp2-count {
    font-size: 0.58rem;
    font-weight: 700;
    color: #f97316;
    background: rgba(249,115,22,0.1);
    padding: 3px 8px;
    border-radius: 50px;
}

.pp2-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pp2-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: #F9FAFB;
    border-radius: 8px;
}

.pp2-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pp2-dot-red    { background: #ef4444; }
.pp2-dot-orange { background: #f97316; }

.pp2-text {
    font-size: 0.62rem;
    color: var(--text-dark);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.pp2-tag {
    font-size: 0.56rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pp2-tag-red    { color: #ef4444; }
.pp2-tag-orange { color: #f97316; }

/* ──────────────────────────────────────────
   PP3: Slow Agency (langsame Nachrichten)
───────────────────────────────────────── */
.pp3-thread {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 18px 8px;
}

.pp3-msg {
    max-width: 82%;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.63rem;
    line-height: 1.45;
    font-weight: 500;
}

.pp3-sent {
    align-self: flex-end;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: #fff;
    border-bottom-right-radius: 3px;
}

.pp3-sent-dim { opacity: 0.45; }

.pp3-recv {
    align-self: flex-start;
    background: #F3F4F6;
    color: var(--text-dark);
    border-bottom-left-radius: 3px;
}

.pp3-gap {
    align-self: center;
    font-size: 0.57rem;
    color: #ef4444;
    font-weight: 700;
    background: rgba(239,68,68,0.08);
    padding: 3px 10px;
    border-radius: 50px;
}

/* ──────────────────────────────────────────
   PP4: Wasted Budget (verbranntes Geld)
───────────────────────────────────────── */
.pp4-panel {
    background: #fff;
    border-radius: 18px;
    padding: 20px 22px;
    width: calc(100% - 32px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.09);
}

.pp4-label {
    font-size: 0.6rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
}

.pp4-amount {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    line-height: 1;
}

.pp4-track {
    height: 5px;
    background: #F3F4F6;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.pp4-fill {
    height: 100%;
    width: 90%;
    background: linear-gradient(90deg, #ef4444, #f97316);
    border-radius: 3px;
}

.pp4-roi {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pp4-roi-label {
    font-size: 0.6rem;
    color: var(--text-grey);
}

.pp4-roi-val {
    font-size: 0.82rem;
    font-weight: 800;
    color: #ef4444;
}

/* ──────────────────────────────────────────
   PP5: Bad Leads (Funnel mit Drop-off)
───────────────────────────────────────── */
.pp5-funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.pp5-stage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 9px;
    padding: 9px 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}

.pp5-stage-1 { width: 100%; }
.pp5-stage-2 { width: 72%; }
.pp5-stage-3 { width: 46%; }

.pp5-num {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.pp5-num-red { color: #ef4444; }

.pp5-tag {
    font-size: 0.58rem;
    color: var(--text-grey);
}

.pp5-tag-red {
    color: #ef4444;
    font-weight: 700;
}

.pp5-arrow {
    font-size: 0.58rem;
    color: rgba(239,68,68,0.45);
    align-self: center;
}

/* ──────────────────────────────────────────
   PP6: Generic Content (alle gleich)
───────────────────────────────────────── */
.pp6-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.pp6-row {
    display: flex;
    gap: 9px;
    width: 100%;
}

.pp6-card {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    opacity: 0.55;
    transition: opacity 0.2s;
}

.pp6-card-mid {
    opacity: 1;
    box-shadow: 0 4px 18px rgba(79,70,229,0.14);
}

.pp6-thumb {
    height: 48px;
    background: linear-gradient(135deg, #E5E7EB, #D1D5DB);
}

.pp6-card-mid .pp6-thumb {
    background: linear-gradient(135deg, #C7D2FE, #DDD6FE);
}

.pp6-body { padding: 7px 8px 8px; }

.pp6-line {
    height: 5px;
    border-radius: 3px;
    background: #E5E7EB;
    margin-bottom: 4px;
}

.pp6-line-short { width: 60%; }
.pp6-line-xshort { width: 40%; }

.pp6-label {
    font-size: 0.6rem;
    color: #ef4444;
    font-weight: 700;
    background: rgba(239,68,68,0.08);
    padding: 4px 12px;
    border-radius: 50px;
}

/* ============================================
   CTA SECTION
   ============================================ */
#cta-section {
    background: var(--gradient);
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.cta-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.07);
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

.cta-inner p {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 42px;
    line-height: 1.72;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
    background: #1A1A2A;
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 52px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.72;
    max-width: 280px;
    color: rgba(255,255,255,0.45);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.22s;
    border: 1px solid rgba(255,255,255,0.07);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 22px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
    text-decoration: none;
}

.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.28);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ============================================
   BLOG / POST STYLES
   ============================================ */
.blog-page-wrap {
    padding-top: calc(var(--nav-height) + 64px);
    padding-bottom: var(--section-pad);
    min-height: 100vh;
}

.blog-page-header {
    margin-bottom: 52px;
}

.blog-page-header h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.02em;
}

.blog-page-header p {
    color: var(--text-grey);
    margin-top: 10px;
    font-size: 1rem;
}

.blog-grid-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 52px;
    align-items: start;
}

.post-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 28px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79,70,229,0.15);
}

.post-card-body { padding: 30px 30px 26px; }

.post-card h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.35;
}

.post-card h2 a { transition: color 0.2s; }
.post-card h2 a:hover { color: var(--primary); }

.post-meta {
    font-size: 0.78rem;
    color: var(--text-grey);
    margin-bottom: 12px;
    display: flex;
    gap: 14px;
    align-items: center;
}

.post-excerpt {
    font-size: 0.875rem;
    color: var(--text-grey);
    line-height: 1.72;
    margin-bottom: 18px;
}

.post-thumb {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
}

/* Single post */
.single-header {
    background: var(--bg-light);
    padding: calc(var(--nav-height) + 60px) 0 60px;
    border-bottom: 1px solid var(--border);
}

.single-header .section-label { margin-bottom: 16px; }

.single-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.025em;
    max-width: 800px;
}

.single-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-grey);
}

.single-body-wrap {
    padding: 64px 0 var(--section-pad);
}

.article-body {
    max-width: 740px;
    font-size: 1.05rem;
    line-height: 1.82;
    color: var(--text-mid);
}

.article-body h2, .article-body h3 {
    margin: 2em 0 0.7em;
    color: var(--text-dark);
}

.article-body p { margin-bottom: 1.3em; }

.article-body ul, .article-body ol {
    padding-left: 1.5em;
    margin-bottom: 1.3em;
}

.article-body li { margin-bottom: 0.4em; }

.article-body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Sidebar */
.widget {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.widget-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(79,70,229,0.12);
}

/* 404 */
.error-page {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 40px) 24px 80px;
}

.error-number {
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 900;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.error-page h2 {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.error-page p {
    color: var(--text-grey);
    margin-bottom: 36px;
    font-size: 1rem;
    max-width: 400px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    :root { --section-pad: 80px; }

    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 52px; }
    .hero-subtext { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .dashboard-wrapper { max-width: 560px; margin: 0 auto; }

    /* Bei Tablet: alle 3 Karten untereinander, mittlere verliert Größen-Vorteil */
    .features-grid { grid-template-columns: 1fr; }
    .feature-card:nth-child(2) { box-shadow: 0 4px 24px rgba(79,70,229,0.1); }

    .problem-top { grid-template-columns: 1fr; gap: 28px; }
    .problem-headline { position: static; }
    .problem-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    :root { --section-pad: 60px; --nav-height: 64px; }

    /* ── Container-Absicherung auf Mobile ── */
    .container      { max-width: 100%; box-sizing: border-box; }

    /* ── Slide-Animationen: kleinere translateX damit pre-JS-Zustand nicht überläuft ── */
    [data-anim="slide-left"]  { transform: translateX(-24px) translateY(6px); }
    [data-anim="slide-right"] { transform: translateX(24px)  translateY(6px); }

    /* ── Hero ── */
    #hero { padding-top: calc(var(--nav-height) + 16px); overflow: hidden; }
    .hero-inner   { grid-template-columns: 1fr; padding: 32px 0; gap: 32px; text-align: center; }
    .hero-subtext { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-badge   { margin-bottom: 16px; font-size: 0.72rem; padding: 5px 14px; }
    .hero-subtext { font-size: 0.95rem; margin-bottom: 28px; }

    /* Dashboard: keine feste Breite, keine Überlauf-Effekte */
    .dashboard-wrapper        { max-width: 100%; width: 100%; overflow: hidden; }
    .dashboard-wrapper::before { display: none; }
    .dashboard-mockup          { animation: none; transform: none; max-width: 100%; }

    .problem-grid { grid-template-columns: 1fr; }
    .blog-grid-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .logo-bar-logos { gap: 28px; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 520px) {
    .hero-inner       { padding: 16px 0; gap: 20px; }
    .hero-headline    { font-size: 2rem; }
    .hero-subtext     { font-size: 0.9rem; line-height: 1.65; margin-bottom: 22px; }
    .hero-badge       { margin-bottom: 12px; }
    .hero-buttons     { flex-direction: column; align-items: stretch; }
    .btn              { justify-content: center; }
    .cta-buttons      { flex-direction: column; align-items: center; }
    .dashboard-mockup { font-size: 11px; max-width: 100%; }
    .dashboard-wrapper { width: 100%; max-width: 100%; }

    /* Slide-Animationen auf kleine Screens weiter reduzieren */
    [data-anim="slide-left"]  { transform: translateX(-16px) translateY(4px); }
    [data-anim="slide-right"] { transform: translateX(16px)  translateY(4px); }
}

/* ============================================
   SCROLL ANIMATION SYSTEM
   ============================================ */

/* Alle animierbaren Elemente starten unsichtbar */
[data-anim] {
    opacity: 0;
    transition:
        opacity  0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-anim="fade-up"]     { transform: translateY(44px); }
[data-anim="slide-left"]  { transform: translateX(-60px) translateY(8px); }
[data-anim="slide-right"] { transform: translateX(60px) translateY(8px); }
[data-anim="scale-up"]    { transform: scale(0.88) translateY(16px); }
[data-anim="fade"]        { /* nur opacity */ }

/* Eingeblendet — JS fügt diese Klasse via IntersectionObserver hinzu */
[data-anim].is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* Reduce motion: nur Opacity, kein Transform */
@media (prefers-reduced-motion: reduce) {
    [data-anim] {
        transform: none !important;
        transition: opacity 0.4s ease;
    }
}
