/* ============================================================
   Fox-112 — index.css
   Fonts: Sora (Überschriften) + IBM Plex Sans (Fließtext)
   Mobile-First, ein einziges Stylesheet
   ============================================================ */

/* === VARIABLES ============================================= */
:root {
    --red:        #C8222A;
    --red-dark:   #A11920;
    --red-light:  #FFF1F1;
    --red-mid:    #F2CCCE;

    --bg:         #FFFFFF;
    --bg-2:       #F8F9FB;
    --bg-3:       #EEF0F4;
    --border:     #E0E3EA;
    --border-2:   #C9CDD8;

    --text:       #18213A;
    --text-2:     #505B77;
    --text-3:     #8891A8;

    --green:      #18714E;
    --green-bg:   #ECF7F2;
    --green-b:    #AFDCC9;

    --font-h:     'Sora', sans-serif;
    --font-b:     'IBM Plex Sans', sans-serif;

    --r:          6px;
    --r-lg:       10px;
    --trans:      0.18s ease;
    --shadow-s:   0 1px 4px rgba(0,0,0,0.06);
    --shadow:     0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg:  0 6px 32px rgba(0,0,0,0.10);
    --shadow-r:   0 4px 18px rgba(200,34,42,0.16);
}

/* === RESET ================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-padding-top: 68px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    /* KEIN overflow-x: hidden hier — bricht position:sticky */
}

body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 1rem;
    min-height: 100vh;
    overflow-x: hidden; /* nur auf body, nicht html */
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--red-dark); text-decoration: underline; }
ul { list-style: none; }

/* === SKIP LINK ============================================= */
.skip-link {
    position: absolute;
    top: -50px;
    left: 1rem;
    background: var(--red);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--r);
    font-weight: 600;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* === CONTAINER ============================================= */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .container { padding: 0 2rem; }
}

/* === HEADER ================================================ */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 68px;
    background: var(--text);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.35); }

.header-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-container { padding: 0 2rem; gap: 2rem; }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}
.logo:hover { text-decoration: none; }
.logo-image { height: 38px; width: auto; }
.logo-text h1 {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.1rem;
}
.tagline {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
    display: none; /* Mobile: ausblenden */
}
@media (min-width: 480px) {
    .tagline { display: block; }
    .logo-image { height: 40px; }
    .logo-text h1 { font-size: 1.35rem; }
}

/* Desktop-Nav */
.nav-menu {
    display: none; /* Mobile: sidebar, Desktop: flex */
    align-items: center;
    gap: 0.1rem;
}
.nav-menu a {
    font-family: var(--font-h);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    padding: 0.4rem 0.75rem;
    border-radius: var(--r);
    transition: color var(--trans), background var(--trans);
}
.nav-menu a:hover,
.nav-menu a:focus {
    color: #fff;
    background: rgba(255,255,255,0.1);
    text-decoration: none;
}

@media (min-width: 769px) {
    .nav-menu { display: flex; }
}

/* Burger */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--r);
    transition: background var(--trans);
    flex-shrink: 0;
}
.mobile-menu-toggle:hover { background: rgba(255,255,255,0.1); }
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (min-width: 769px) {
    .mobile-menu-toggle { display: none; }
}

/* === SIDEBAR OVERLAY ======================================= */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* === MOBILE SIDEBAR ======================================== */
@media (max-width: 768px) {

    /* Sidebar-Panel */
    .nav-menu {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 85vw);
        height: 100dvh;
        background: var(--text);
        z-index: 99;
        padding: 0;   /* sidebar-header ist jetzt normaler flex-child */
        gap: 0;
        box-shadow: -6px 0 32px rgba(0,0,0,0.4);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
        overflow-y: auto;
        align-items: stretch;
    }
    .nav-menu.active { transform: translateX(0); }

    /* Navigationslinks */
    .nav-menu a {
        font-family: var(--font-h);
        font-size: 0.95rem;
        font-weight: 500;
        color: rgba(255,255,255,0.75);
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        text-align: left;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        transition: background var(--trans), color var(--trans), padding-left var(--trans);
        letter-spacing: 0.01em;
    }
    .nav-menu a:last-child { border-bottom: none; }
    .nav-menu a::before {
        content: '';
        width: 3px;
        height: 0;
        background: var(--red);
        border-radius: 2px;
        flex-shrink: 0;
        transition: height 0.2s ease;
    }
    .nav-menu a:hover,
    .nav-menu a:focus {
        background: rgba(255,255,255,0.07);
        color: #fff;
        text-decoration: none;
        padding-left: 1.75rem;
    }
    .nav-menu a:hover::before,
    .nav-menu a:focus::before {
        height: 1.1rem;
    }

    /* Sidebar-Footer */
    .nav-menu::after {
        content: 'Fox-112 · DSGVO-konform · Cookie-frei';
        display: block;
        margin-top: auto;
        padding: 1.5rem;
        font-size: 0.68rem;
        color: rgba(255,255,255,0.2);
        letter-spacing: 0.05em;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
}

/* Sidebar-Header (Logo + Close) */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem 0 1.25rem;
    height: 68px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}
.sidebar-logo img { height: 30px; width: auto; }
.sidebar-logo span {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}
.sidebar-close {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--trans), border-color var(--trans);
    flex-shrink: 0;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1;
    font-family: sans-serif;
}
.sidebar-close:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* === BUTTONS =============================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: var(--font-h);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.65rem 1.5rem;
    border-radius: var(--r);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--trans);
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: #fff;
    box-shadow: var(--shadow-r);
}
.btn-secondary { background: transparent; color: var(--text-2); border-color: var(--border-2); }
.btn-secondary:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-light);
}
.btn-large { padding: 0.85rem 2rem; font-size: 0.95rem; }

/* === SECTION SCAFFOLDING =================================== */
section { padding: 3.5rem 0; }

@media (min-width: 768px) { section { padding: 5rem 0; } }

.section-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.85;
}
.section-label::before {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: var(--red);
    flex-shrink: 0;
}
section h2 {
    font-family: var(--font-h);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0.85rem;
    line-height: 1.2;
}
.section-center { text-align: center; }
.section-center .section-label { justify-content: center; }
.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 2.5rem;
}
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* === HERO ================================================== */
.hero {
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
}

@media (min-width: 768px) { .hero { padding: 5rem 0 4.5rem; } }

.hero-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-container {
        padding: 0 2rem;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
    }
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.25rem;
    opacity: 0.85;
}
.hero-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--red);
    flex-shrink: 0;
}
.hero-content h2 {
    font-family: var(--font-h);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 1.25rem;
}
.hero-content h2 em { font-style: normal; color: var(--red); }
.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-subtitle { font-size: 1rem; max-width: 500px; margin-bottom: 2.25rem; }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 400px) {
    .hero-buttons { flex-direction: row; flex-wrap: wrap; }
}

.hero-buttons .btn { width: 100%; justify-content: center; }

@media (min-width: 400px) {
    .hero-buttons .btn { width: auto; }
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}
.stat { }
.stat strong {
    display: block;
    font-family: var(--font-h);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--red);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.3rem;
}
.stat span { font-size: 0.75rem; color: var(--text-3); letter-spacing: 0.04em; }

/* Hero-Mockup: auf Mobile ausgeblendet */
.hero-image { display: none; }
@media (min-width: 768px) { .hero-image { display: block; } }

/* === FOX MOCKUP ============================================ */
.fox-mockup {
    font-family: Arial, Verdana, sans-serif;
    font-size: 11px;
    color: #111;
    background: #fff;
    border: 1px solid #999;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 100%;
}
.fox-topbar {
    background: #1a2a5e;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px;
    height: 22px;
}
.fox-logo { color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; white-space: nowrap; }
.fox-topbar-title {
    color: rgba(255,255,255,0.75);
    font-size: 10px;
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fox-qlbar {
    background: #e0e0f0;
    border-bottom: 1px solid #bbb;
    padding: 3px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.fox-ql-label { font-size: 9px; font-weight: 700; color: #333; }
.fox-ql-btn {
    font-size: 9px;
    padding: 2px 7px;
    background: #1a2a5e;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--trans);
}
.fox-ql-btn:hover { background: var(--red); }
.fox-ql-active { background: var(--red) !important; }
.fox-view { display: none; }
.fox-view-active { display: flex; }
.fox-nav-tree { width: 125px; flex-shrink: 0; background: #dde4f0; border-right: 1px solid #bbb; }
.fox-nav-title { background: #1a2a5e; color: #fff; font-size: 9px; font-weight: 700; padding: 2px 6px; }
.fox-nav-item { padding: 2px 6px; font-size: 9px; cursor: default; color: #1a2a5e; border-bottom: 1px solid #ccd; }
.fox-nav-item:hover { background: #c8e0ff; }
.fox-nav-bold { font-weight: 700; }
.fox-nav-indent { padding-left: 14px; }
.fox-nav-active { background: #c8e0ff; font-weight: 700; }
.fox-nav-trash { background: #ddd; color: #555; }
.fox-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.fox-headline { background: #1a2a5e; color: #fff; font-size: 9px; padding: 2px 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fox-list-links { color: #ffcc66; }
.fox-listbar { background: #e8eaf8; border-bottom: 1px solid #bbb; padding: 2px 6px; font-size: 8px; color: #333; flex-wrap: wrap; }
.fox-listbar-link { color: var(--red); text-decoration: underline; cursor: default; margin-right: 2px; }
.fox-listbar-sep { margin-right: 4px; }
.fox-pv-body { display: flex; flex: 1; }
.fox-pv-left { width: 150px; flex-shrink: 0; border-right: 1px solid #ccc; padding: 4px; background: #f4f4fb; }
.fox-section-title { background: var(--red); color: #fff; font-size: 8px; font-weight: 700; padding: 1px 4px; border-radius: 1px; margin-bottom: 3px; }
.fox-stat-table { width: 100%; border-collapse: collapse; margin-bottom: 2px; }
.fox-stat-table td { padding: 1px 2px; font-size: 9px; color: #333; border-bottom: 1px solid #e8e8e8; }
.fox-num { text-align: right; font-weight: 700; color: #111; }
.fox-stat-sum td { border-top: 2px solid #aaa; border-bottom: none; padding-top: 2px; }
.fox-fuehrung-item { font-size: 8px; color: #333; padding: 1px 2px; border-bottom: 1px solid #eee; display: flex; flex-direction: column; }
.fox-fuehrung-label { font-weight: 700; color: #111; }
.fox-pv-right { flex: 1; padding: 4px; }
.fox-module-label { font-size: 8px; font-weight: 700; color: #1a2a5e; margin-bottom: 4px; }
.fox-module-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; }
.fox-module-item { background: #ddeaff; border: 1px solid #b8ccee; border-radius: 2px; padding: 2px 4px; font-size: 8px; color: #1a3a6a; cursor: default; transition: background var(--trans); }
.fox-module-item:hover { background: var(--red); color: #fff; border-color: var(--red-dark); }
.fox-ta-list { flex: 1; overflow: hidden; }
.fox-ta-row { display: flex; align-items: center; gap: 5px; padding: 2px 5px; border-bottom: 1px solid #eee; }
.fox-ta-row:hover { background: #eef; }
.fox-ta-icon { width: 14px; height: 10px; border-radius: 1px; flex-shrink: 0; }
.fox-ta-label { font-size: 9px; flex: 1; color: #111; }
.fox-eb-settings { background: #1a2a5e; color: #fff; font-size: 8px; padding: 1px 6px; }
.fox-eb-newrow { display: flex; align-items: center; gap: 4px; padding: 3px 6px; border-bottom: 1px solid #ccc; background: #f5f5ff; flex-wrap: wrap; }
.fox-eb-newlabel { font-size: 8px; font-weight: 700; color: var(--red); width: 75px; flex-shrink: 0; }
.fox-eb-field-label { font-size: 8px; color: #333; white-space: nowrap; }
.fox-eb-input { font-size: 8px; border: 1px solid #aaa; padding: 1px 3px; border-radius: 1px; background: #fff; color: #111; white-space: nowrap; }
.fox-eb-input-wide { flex: 1; min-width: 40px; }
.fox-eb-btn { font-size: 8px; padding: 1px 6px; background: #1a2a5e; color: #fff; border: none; cursor: default; border-radius: 1px; white-space: nowrap; }
.fox-eb-sectionhdr { background: #1a2a5e; color: #fff; font-size: 8px; font-weight: 700; padding: 1px 6px; }
.fox-eb-reportrow { display: flex; gap: 4px; align-items: center; padding: 2px 6px; border-bottom: 1px solid #ddd; font-size: 8px; flex-wrap: wrap; }
.fox-eb-num { color: var(--red); font-weight: 700; width: 40px; }
.fox-eb-date { width: 60px; color: #333; }
.fox-eb-time { width: 30px; color: #333; }
.fox-eb-ort { flex: 1; font-weight: 700; color: #111; min-width: 80px; }
.fox-eb-art { flex: 1; color: #444; min-width: 80px; }
.fox-eb-abgeg { font-size: 7px; color: #555; padding: 1px 6px 2px; background: #fafafa; border-bottom: 1px dashed #ddd; }
.fox-eb-yrhdr { background: #1a2a5e; color: #fff; font-size: 8px; padding: 1px 6px; text-align: center; }
.fox-eb-yrrow { display: flex; align-items: center; gap: 6px; padding: 2px 6px; border-bottom: 1px solid #eee; font-size: 9px; }
.fox-eb-yrrow:hover { background: #eef; }
.fox-eb-yrchk { width: 12px; height: 12px; background: #3a7ad0; border: 1px solid #888; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 8px; border-radius: 1px; flex-shrink: 0; }
.fox-mockup-footer { background: #1a2a5e; color: rgba(255,255,255,0.4); font-size: 8px; padding: 2px 8px; text-align: center; }

/* === FEATURES ============================================== */
.features { background: var(--bg); }

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}
@media (min-width: 540px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.feature-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.5rem 1.25rem;
    transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.feature-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    background: var(--bg);
}
.feature-number {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 300;
    color: var(--red-mid);
    line-height: 1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.feature-card:hover .feature-number { color: var(--red); opacity: 0.4; }
.feature-card h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.65rem; }
.feature-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; }

/* === INTEGRATIONS ========================================== */
.integrations { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.integrations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}
@media (min-width: 540px)  { .integrations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .integrations-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.integration-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.5rem 1.25rem;
    transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.integration-card:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-2px); }
.integration-badge {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-light);
    border: 1px solid var(--red-mid);
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
    margin-bottom: 1.1rem;
}
.integration-card h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0.65rem; }
.integration-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; }

/* === COVERAGE ============================================== */
.coverage { background: var(--red); color: #fff; }

.coverage-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 768px) {
    .coverage-content { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}

.coverage .section-label { color: rgba(255,255,255,0.65); }
.coverage .section-label::before { background: rgba(255,255,255,0.65); }
.coverage h2 { color: #fff; font-weight: 600; }
.coverage-subtitle { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 2rem; }
.coverage-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }

.coverage-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--r);
    padding: 1.25rem 1rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: background var(--trans);
}
.coverage-item:hover { background: rgba(255,255,255,0.18); text-decoration: none; color: inherit; }
.coverage-number { font-family: var(--font-h); font-size: 1.6rem; font-weight: 600; color: #fff; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.4rem; }
.coverage-label { font-size: 0.75rem; color: rgba(255,255,255,0.75); line-height: 1.4; }

.map-container { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--r-lg); padding: 1.5rem; }
.map-container h3 { font-family: var(--font-h); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 1.1rem; padding-bottom: 0.7rem; border-bottom: 1px solid rgba(255,255,255,0.15); }
.regions-list { display: flex; flex-direction: column; gap: 0.65rem; }
.region-item { display: flex; align-items: center; gap: 1rem; padding: 0.8rem 1rem; background: rgba(255,255,255,0.08); border-radius: var(--r); border-left: 2px solid rgba(255,255,255,0.35); }
.region-item strong { display: block; font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 0.1rem; }
.region-item span { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

/* === BENEFITS ============================================== */
.benefits { background: var(--bg-2); border-top: 1px solid var(--border); }

.benefits-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 768px) {
    .benefits-content { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.benefits-text h2 { margin-bottom: 1.75rem; }
.benefit-list { display: flex; flex-direction: column; gap: 1.25rem; }
.benefit-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.benefit-check {
    width: 22px; height: 22px;
    background: var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 0.15rem;
}
.benefit-check::after {
    content: '';
    width: 8px; height: 5px;
    border-left: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
    display: block;
}
.benefit-item h3 { font-family: var(--font-h); font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.benefit-item p { font-size: 0.855rem; color: var(--text-2); line-height: 1.7; }

.benefit-visual { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--shadow-s); }
@media (min-width: 768px) { .benefit-visual { position: sticky; top: 84px; } }
.benefit-visual h3 { font-family: var(--font-h); font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.region-stats { display: flex; flex-direction: column; gap: 0.85rem; }
.region { padding: 0.9rem 1.1rem; background: var(--bg-2); border-radius: var(--r); border-left: 2px solid var(--red); }
.region strong { display: block; font-size: 0.875rem; color: var(--text); margin-bottom: 0.2rem; font-weight: 600; }
.region span { font-size: 0.8rem; color: var(--text-2); }

/* === MEINE-JF ============================================== */
.meine-jf { background: var(--bg); border-top: 1px solid var(--border); }

.meine-jf-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 768px) {
    .meine-jf-content { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}

.meine-jf-logo-inline { height: 32px; width: 32px; border-radius: 8px; vertical-align: middle; margin-right: 0.5rem; margin-bottom: 4px; display: inline; }
.meine-jf-subtitle { font-size: 0.95rem; color: var(--text-2); line-height: 1.75; margin-bottom: 1.5rem; }
.meine-jf-modules { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-bottom: 1.5rem; }

@media (max-width: 400px) { .meine-jf-modules { grid-template-columns: 1fr; } }

.meine-jf-module {
    display: flex; align-items: flex-start; gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r);
    transition: border-color var(--trans), background var(--trans);
}
.meine-jf-module:hover { border-color: var(--red); background: var(--red-light); }
.meine-jf-module-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.meine-jf-module div { display: flex; flex-direction: column; gap: 1px; }
.meine-jf-module strong { font-size: 0.8rem; font-weight: 600; color: var(--text); font-family: var(--font-h); }
.meine-jf-module span { font-size: 0.75rem; color: var(--text-2); }
.meine-jf-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.meine-jf-badge { font-size: 0.75rem; font-weight: 500; color: var(--green); background: var(--green-bg); border: 1px solid var(--green-b); padding: 0.2rem 0.6rem; border-radius: 3px; }

.meine-jf-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; }
.meine-jf-card-header { background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.meine-jf-card-logo { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; }
.meine-jf-card-header > div { display: flex; flex-direction: column; flex: 1; }
.meine-jf-card-header strong { font-size: 0.9rem; font-family: var(--font-h); color: var(--text); font-weight: 600; }
.meine-jf-card-header span { font-size: 0.75rem; color: var(--text-3); }
.meine-jf-pill { font-size: 0.68rem; font-weight: 500; background: var(--green-bg); color: var(--green); border: 1px solid var(--green-b); padding: 0.2rem 0.55rem; border-radius: 3px; white-space: nowrap; }
.meine-jf-card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1.25rem; }
.meine-jf-role-title { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-3); margin-bottom: 0.6rem; }
.meine-jf-role-row { display: flex; align-items: center; gap: 0.65rem; padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.meine-jf-role-row:last-child { border-bottom: none; }
.meine-jf-role-badge { font-size: 0.68rem; font-weight: 600; padding: 0.15rem 0.55rem; border-radius: 3px; white-space: nowrap; flex-shrink: 0; min-width: 80px; text-align: center; }
.meine-jf-role-badge.member { background: #EEF2FF; color: #3730A3; border: 1px solid #C7D2FE; }
.meine-jf-role-badge.wart { background: #FFF7ED; color: #9A3412; border: 1px solid #FED7AA; }
.meine-jf-role-badge.admin { background: var(--red-light); color: var(--red-dark); border: 1px solid var(--red-mid); }
.meine-jf-role-desc { font-size: 0.78rem; color: var(--text-2); }
.meine-jf-steps { display: flex; flex-direction: column; gap: 0.5rem; }
.meine-jf-step { display: flex; align-items: center; gap: 0.65rem; font-size: 0.82rem; color: var(--text-2); }
.meine-jf-step-nr { width: 20px; height: 20px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 600; flex-shrink: 0; font-family: var(--font-h); }

/* === ÖKOSYSTEM ============================================= */
:root {
    --oe-bg:      #18213A;
    --oe-bg2:     #1e2d4a;
    --oe-border:  rgba(255,255,255,0.1);
    --oe-border2: rgba(255,255,255,0.18);
    --oe-text:    rgba(255,255,255,0.85);
    --oe-muted:   rgba(255,255,255,0.55);
}

.oekosystem { background: var(--oe-bg); border-top: 1px solid rgba(255,255,255,0.06); }
.oekosystem-label { color: var(--oe-muted) !important; }
.oekosystem-label::before { background: var(--oe-muted) !important; }
.oekosystem-h2 { color: #fff !important; }
.oekosystem-sub { color: var(--oe-text) !important; }
.oekosystem-h3 { font-family: var(--font-h); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; color: #fff; letter-spacing: -0.02em; margin-bottom: 0.6rem; }
.oekosystem-interfaces-sub { font-size: 0.9rem; color: var(--oe-text); line-height: 1.75; max-width: 520px; }

.oekosystem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 540px)  { .oekosystem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .oekosystem-grid { grid-template-columns: 1.15fr 1fr 1fr; } }

.oekosystem-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--oe-border);
    border-radius: var(--r-lg);
    padding: 1.75rem 1.5rem 1.25rem;
    display: flex; flex-direction: column; gap: 0.85rem;
    transition: background var(--trans), border-color var(--trans);
}
.oekosystem-card:hover { background: rgba(255,255,255,0.1); border-color: var(--oe-border2); }
.oekosystem-card--main { background: rgba(200,34,42,0.18); border-color: rgba(200,34,42,0.4); }
.oekosystem-card--main:hover { background: rgba(200,34,42,0.25); border-color: rgba(200,34,42,0.6); }

@media (min-width: 540px) and (max-width: 899px) {
    .oekosystem-card--main { grid-column: 1 / -1; }
}

.oekosystem-tag { display: inline-block; font-size: 0.63rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--oe-muted); background: rgba(255,255,255,0.08); border: 1px solid var(--oe-border); padding: 0.15rem 0.5rem; border-radius: 3px; margin-bottom: 0.2rem; }
.oekosystem-card-body { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.oekosystem-card-body h3 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 600; color: #fff; letter-spacing: -0.01em; margin: 0; }
.oekosystem-card-body p { font-size: 0.84rem; color: var(--oe-text); line-height: 1.65; margin: 0; }
.oekosystem-features { display: flex; flex-direction: column; gap: 0.2rem; margin-top: 0.2rem; }
.oekosystem-features span { font-size: 0.77rem; color: var(--oe-muted); }
.oekosystem-link { display: inline-flex; align-items: center; font-family: var(--font-h); font-size: 0.8rem; font-weight: 600; color: #fff; text-decoration: none; border-top: 1px solid var(--oe-border); padding-top: 0.8rem; margin-top: auto; transition: opacity var(--trans); }
.oekosystem-link:hover { opacity: 0.65; text-decoration: none; color: #fff; }

.oekosystem-divider { height: 1px; background: var(--oe-border); margin: 3rem 0 2.5rem; }

.oekosystem-interfaces {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 900px) {
    .oekosystem-interfaces { grid-template-columns: 280px 1fr; gap: 3rem; }
    .oekosystem-interfaces-intro { position: sticky; top: 84px; }
}

.oekosystem-interfaces-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}
@media (min-width: 540px)  { .oekosystem-interfaces-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .oekosystem-interfaces-grid { grid-template-columns: repeat(3, 1fr); } }

.oekosystem-iface-card { background: var(--oe-bg2); border: 1px solid var(--oe-border); border-radius: var(--r); padding: 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; transition: border-color var(--trans), background var(--trans); }
.oekosystem-iface-card:hover { border-color: var(--oe-border2); background: rgba(255,255,255,0.05); }
.oekosystem-iface-title { font-family: var(--font-h); font-size: 0.85rem; font-weight: 600; color: #fff; line-height: 1.3; }
.oekosystem-iface-desc { font-size: 0.78rem; color: var(--oe-muted); line-height: 1.6; margin: 0; }

/* === PRICING =============================================== */
.pricing { background: var(--bg); border-top: 1px solid var(--border); }

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 0.5rem;
}
@media (min-width: 640px) {
    .pricing-cards { grid-template-columns: 1fr 1fr; max-width: 860px; margin-left: auto; margin-right: auto; }
}

.pricing-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; position: relative; transition: box-shadow var(--trans), border-color var(--trans); }
.pricing-card:hover { box-shadow: var(--shadow); background: var(--bg); }
.pricing-card.featured { background: var(--bg); border-color: var(--red); box-shadow: var(--shadow-r); }
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-family: var(--font-h); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 3px; white-space: nowrap; }
.pricing-card h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 1.1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.price { margin-bottom: 1.5rem; }
.price-amount { display: block; font-family: var(--font-h); font-size: 1.6rem; font-weight: 600; color: var(--red); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.35rem; }
.price-period { font-size: 0.82rem; color: var(--text-2); }
.pricing-features { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; }
.pricing-features li { font-size: 0.855rem; color: var(--text-2); display: flex; align-items: flex-start; gap: 0.5rem; }
.pricing-features li::before {
    content: '';
    width: 14px; height: 14px;
    background: var(--green-bg);
    border: 1px solid var(--green-b);
    border-radius: 50%;
    flex-shrink: 0; margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%2318714E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
}

/* === FAQ =================================================== */
.faq { background: var(--bg-2); border-top: 1px solid var(--border); }

.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color var(--trans); }
.faq-item:hover { border-color: var(--border-2); }
.faq-item.active { border-color: var(--red); }
.faq-item h3 { font-family: var(--font-h); font-size: 0.9rem; font-weight: 500; color: var(--text); padding: 1.1rem 3rem 1.1rem 1.35rem; cursor: pointer; position: relative; user-select: none; transition: color var(--trans); line-height: 1.4; }
.faq-item h3:hover { color: var(--red); }
.faq-item.active h3 { color: var(--red); font-weight: 600; }
.faq-item h3::after { content: '+'; position: absolute; right: 1.15rem; top: 50%; transform: translateY(-50%); font-size: 1.25rem; font-weight: 300; color: var(--text-3); transition: transform 0.25s; line-height: 1; }
.faq-item.active h3::after { transform: translateY(-50%) rotate(45deg); color: var(--red); }
.faq-answer { padding: 0 1.35rem; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-item.active .faq-answer { padding: 0 1.35rem 1.35rem; max-height: 400px; }
.faq-answer p { font-size: 0.875rem; color: var(--text-2); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 1rem; margin: 0; }

/* === DEMO ================================================== */
.demo { background: var(--text); text-align: center; color: #fff; }
.demo .section-label { color: rgba(255,255,255,0.5); justify-content: center; }
.demo .section-label::before { background: rgba(255,255,255,0.5); }
.demo h2 { color: #fff; font-weight: 500; margin-left: auto; margin-right: auto; }
.demo-content p { font-size: 0.95rem; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 2.25rem; line-height: 1.75; }
.demo-features { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; flex-direction: column; align-items: center; }
@media (min-width: 600px) { .demo-features { flex-direction: row; gap: 2.5rem; } }
.demo-feature { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; color: rgba(255,255,255,0.75); }
.demo-feature::before { content: ''; width: 16px; height: 16px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2.5 5l2 2 3.5-3.5' stroke='rgba(255,255,255,0.7)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* === CONTACT =============================================== */
.contact { background: var(--bg-2); border-top: 1px solid var(--border); }

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 0.5rem;
}
@media (min-width: 768px) {
    .contact-content { grid-template-columns: 1fr 1.3fr; gap: 4rem; }
}

.contact-info h3 { font-family: var(--font-h); font-size: 1.25rem; font-weight: 600; color: var(--text); margin-bottom: 1.75rem; line-height: 1.3; letter-spacing: -0.02em; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.3rem; display: block; }
.contact-item p { color: var(--text); margin: 0; font-size: 0.9rem; line-height: 1.55; }
.contact-item a { color: var(--text); text-decoration: none; }
.contact-item a:hover { color: var(--red); }
.contact-bar { width: 3px; height: 44px; background: var(--red); border-radius: 2px; flex-shrink: 0; margin-top: 0.1rem; opacity: 0.7; }

.contact-form { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-s); }
@media (min-width: 480px) { .contact-form { padding: 2rem; } }
.contact-form h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-2); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 0.65rem 0.9rem; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r); color: var(--text); font-family: var(--font-b); font-size: 0.9rem; transition: border-color var(--trans), box-shadow var(--trans); -webkit-appearance: none; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,34,42,0.08); background: var(--bg); }
.form-group textarea { resize: vertical; min-height: 105px; }
.form-group small { display: block; margin-top: 0.3rem; font-size: 0.75rem; color: var(--text-3); }
.form-alert { padding: 0.85rem 1rem; border-radius: var(--r); font-size: 0.855rem; margin-bottom: 1.1rem; border: 1px solid; line-height: 1.5; }
.form-alert.success { background: var(--green-bg); border-color: var(--green-b); color: var(--green); }
.form-alert.error { background: var(--red-light); border-color: var(--red-mid); color: var(--red-dark); }

/* === FOOTER =============================================== */
footer { background: var(--text); color: rgba(255,255,255,0.6); padding: 4rem 0 0; }

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
    .footer-content { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
}

.footer-section h4 { font-family: var(--font-h); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 1rem; }
.footer-section p { font-size: 0.82rem; line-height: 1.75; }
.footer-section ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-section ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color var(--trans); text-decoration: none; }
.footer-section ul li a:hover { color: rgba(255,255,255,0.9); text-decoration: none; }
.footer-bottom { padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.badge { font-size: 0.68rem; font-weight: 500; padding: 0.2rem 0.55rem; border-radius: 3px; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.45); }

/* === PRIVACY OVERLAY ====================================== */
.privacy-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 1.25rem; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.privacy-overlay.visible { opacity: 1; pointer-events: all; }
.privacy-modal { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; max-width: 460px; width: 100%; box-shadow: var(--shadow-lg); }
.privacy-modal h3 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; color: var(--text); }
.privacy-modal p { font-size: 0.875rem; color: var(--text-2); line-height: 1.75; margin-bottom: 0.75rem; }

/* === LEGAL PAGES (impressum / datenschutz) ================ */
.legal-hero { background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 3rem 0 2.5rem; }
@media (min-width: 768px) { .legal-hero { padding: 4rem 0 3rem; } }
.legal-hero h1 { font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: var(--text); margin-bottom: 0.75rem; line-height: 1.1; }
.legal-hero p { color: var(--text-2); font-size: 1rem; margin-bottom: 1.5rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-3); }
.breadcrumb a { color: var(--red); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.legal-content { padding: 3rem 0 4rem; }
@media (min-width: 768px) { .legal-content { padding: 4rem 0 5rem; } }
.legal-body { max-width: 800px; margin: 0 auto; line-height: 1.75; }
.legal-body h2 { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--red); margin: 2.5rem 0 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border); }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 1.75rem 0 0.6rem; }
.legal-body p { color: var(--text-2); margin-bottom: 1rem; font-size: 0.95rem; }
.legal-body strong { color: var(--text); }
.legal-body a { color: var(--red); }
.legal-body a:hover { text-decoration: underline; }
.legal-body ul { list-style: none; padding: 0; margin: 0.75rem 0 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.legal-body ul li { display: flex; gap: 0.5rem; font-size: 0.92rem; color: var(--text-2); }
.legal-body ul li::before { content: '–'; color: var(--text-3); flex-shrink: 0; }
.info-box { border-radius: var(--r); padding: 1.25rem 1.5rem; margin: 1.25rem 0; border: 1px solid; font-size: 0.9rem; }
.info-box.green { background: var(--green-bg); border-color: var(--green-b); color: var(--green); }
.info-box.green strong { color: var(--green); }
.info-box.neutral { background: var(--bg-2); border-color: var(--border); color: var(--text-2); }
.info-box.neutral strong { color: var(--text); }
.info-box.highlight { background: var(--red-light); border-color: var(--red-mid); color: var(--text); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin: 1.25rem 0; }
@media (min-width: 540px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-box { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r); padding: 1.25rem 1.5rem; }
.contact-box h3 { font-family: var(--font-h); font-size: 0.95rem; font-weight: 700; color: var(--text-2); margin: 0 0 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-box p { font-size: 0.88rem; color: var(--text-2); margin: 0; }
.contact-box strong { color: var(--text); }
.summary-box { background: var(--bg-2); border: 1px solid var(--border); border-left: 3px solid var(--green); border-radius: var(--r); padding: 2rem; margin: 2.5rem 0; }
.summary-box h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 0 0 1.25rem; }
.summary-box ul { margin: 0; }
.summary-box ul li strong { color: var(--green); font-weight: 600; }
.legal-note { background: var(--bg-2); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: var(--r); padding: 1.25rem 1.5rem; margin: 2rem 0; font-size: 0.88rem; color: var(--text-2); }
.legal-note strong { color: var(--text); }
.back-link { margin-top: 3rem; text-align: center; }

/* === SCROLL REVEAL ======================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* === ACCESSIBILITY ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* === PRINT ================================================ */
@media print {
    header, footer, .hero-buttons, .btn, .contact-form,
    .mobile-menu-toggle, .privacy-overlay { display: none !important; }
    body { color: #000; background: #fff; }
    .coverage { background: #f0f0f0; color: #000; }
    .coverage h2, .coverage-number { color: #000; }
    .demo { background: #f0f0f0; color: #000; }
    .demo h2 { color: #000; }
}