
 :root {
            --wc-bg: #050f18;
            --wc-bg-soft: #071b2a;
            --wc-primary: #0b2535;
            --wc-accent: #c78b2a;
            --wc-accent-soft: #e0a446;
            --wc-text: #f5f7fb;
            --wc-muted: #a9b4c4;
            --wc-border: rgba(255, 255, 255, 0.08);
            --wc-radius-lg: 18px;
            --wc-radius-md: 12px;
            --wc-radius-pill: 999px;
            --wc-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html, body { height: 100%; }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top left, #123a56 0, #050f18 50%, #02060a 100%);
            color: var(--wc-text);
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--wc-accent);
            text-decoration: none;
        }

        a:hover { text-decoration: underline; }

        .page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header / Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: linear-gradient(to bottom, rgba(5, 15, 24, 0.96), rgba(5, 15, 24, 0.75));
            border-bottom: 1px solid var(--wc-border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 0;
            position: relative;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .brand-logo {
            height: 38px;
            width: auto;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .brand-sub {
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .nav {
            display: flex;
            gap: 1.2rem;
            font-size: 0.9rem;
        }

        .nav a {
            color: var(--wc-muted);
            position: relative;
            padding-bottom: 0.2rem;
        }

        .nav a:hover { color: var(--wc-text); }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--wc-accent);
            transition: width 0.18s ease-out;
        }

        .nav a:hover::after { width: 100%; }

        .nav-cta {
            padding: 0.45rem 0.95rem;
            border-radius: var(--wc-radius-pill);
            border: 1px solid rgba(199, 139, 42, 0.85);
            color: var(--wc-text);
            font-weight: 600;
            font-size: 0.85rem;
            background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 30%, #8b5d16 100%);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
            text-decoration: none;
        }

        .nav-cta:hover {
            filter: brightness(1.06);
            text-decoration: none;
        }

        /* Hero */
        .hero {
            padding: 3.5rem 0 3rem;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
            gap: 2.5rem;
            align-items: center;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.2rem 0.7rem;
            border-radius: var(--wc-radius-pill);
            background: rgba(9, 37, 55, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--wc-muted);
            font-size: 0.75rem;
            margin-bottom: 0.9rem;
        }

        .hero-kicker-dot {
            width: 8px;
            height: 8px;
            border-radius: 99px;
            background: #3dd68c;
            box-shadow: 0 0 10px rgba(61, 214, 140, 0.7);
        }

        .hero-title {
            font-size: 2.4rem;
            line-height: 1.15;
            letter-spacing: 0.02em;
            margin-bottom: 0.7rem;
        }

        .hero-highlight {
            color: var(--wc-accent-soft);
        }

        .hero-lead {
            font-size: 1rem;
            color: var(--wc-muted);
            max-width: 32rem;
            margin-bottom: 1.4rem;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.9rem 1.4rem;
            font-size: 0.8rem;
            color: var(--wc-muted);
            margin-bottom: 1.6rem;
        }

        .hero-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .hero-meta-badge {
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: var(--wc-accent);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            margin-bottom: 1.4rem;
        }

        .btn-primary {
            background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 30%, #8b5d16 100%);
            border-radius: var(--wc-radius-pill);
            border: none;
            padding: 0.7rem 1.35rem;
            font-size: 0.95rem;
            font-weight: 600;
            color: #0b2535;
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .btn-primary:hover {
            filter: brightness(1.05);
            text-decoration: none;
        }

        .btn-secondary {
            border-radius: var(--wc-radius-pill);
            border: 1px solid var(--wc-border);
            padding: 0.7rem 1.2rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--wc-muted);
            background: rgba(7, 27, 42, 0.8);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
        }

        .btn-secondary:hover {
            border-color: rgba(255, 255, 255, 0.2);
            color: var(--wc-text);
            text-decoration: none;
        }

        .btn-small {
            margin-top: 0.6rem;
            padding: 0.45rem 0.9rem;
            font-size: 0.8rem;
        }

        .hero-note {
            font-size: 0.8rem;
            color: var(--wc-muted);
        }

        .hero-card {
            background: radial-gradient(circle at top left, #123a56 0, #050f18 60%, #02060a 100%);
            border-radius: var(--wc-radius-lg);
            padding: 1.4rem 1.3rem;
            box-shadow: var(--wc-shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .hero-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.9rem;
        }

        .hero-card-title {
            font-size: 0.9rem;
            font-weight: 600;
        }

        .hero-card-badge {
            font-size: 0.7rem;
            padding: 0.25rem 0.6rem;
            border-radius: var(--wc-radius-pill);
            background: rgba(3, 184, 115, 0.15);
            color: #6bf7b3;
            border: 1px solid rgba(3, 184, 115, 0.4);
        }

        .hero-card-list {
            list-style: none;
            display: grid;
            gap: 0.45rem;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .hero-card-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.45rem;
        }

        .hero-card-bullet {
            flex-shrink: 0;
            margin-top: 0.25rem;
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: var(--wc-accent);
        }

        .hero-card-footer {
            font-size: 0.8rem;
            color: var(--wc-muted);
            border-top: 1px dashed rgba(255, 255, 255, 0.15);
            padding-top: 0.7rem;
        }

        .hero-contact-info {
            font-size: 0.8rem;
            margin-top: 0.4rem;
        }

        /* Sections */
        .section {
            padding: 2.5rem 0;
        }

        .section-header {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .section-kicker {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--wc-accent-soft);
            margin-bottom: 0.35rem;
        }

        .section-title {
            font-size: 1.5rem;
            margin-bottom: 0.3rem;
        }

        .section-subtitle {
            font-size: 0.9rem;
            color: var(--wc-muted);
            max-width: 32rem;
        }

        /* Leistungen / Cards */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.1rem;
        }

        .card {
            background: rgba(9, 30, 48, 0.9);
            border-radius: var(--wc-radius-md);
            border: 1px solid var(--wc-border);
            padding: 1rem;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.6);
            font-size: 0.9rem;
        }

        .card-title {
            font-size: 1rem;
            margin-bottom: 0.35rem;
            font-weight: 600;
        }

        .card-tagline {
            font-size: 0.8rem;
            color: var(--wc-muted);
            margin-bottom: 0.6rem;
        }

        .card ul {
            list-style: none;
            padding-left: 0;
            font-size: 0.8rem;
            color: var(--wc-muted);
        }

        .card ul li {
            margin-bottom: 0.25rem;
            display: flex;
            gap: 0.4rem;
        }

        .card ul li::before {
            content: "•";
            color: var(--wc-accent);
            margin-top: 0.05rem;
        }

        /* Warum WerkConnect */
        .why-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 1.6rem;
        }

        .why-box {
            background: rgba(5, 20, 34, 0.9);
            border-radius: var(--wc-radius-md);
            border: 1px solid var(--wc-border);
            padding: 1.1rem 1.2rem;
            font-size: 0.9rem;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
        }

        .list-check {
            list-style: none;
            font-size: 0.85rem;
            color: var(--wc-muted);
            margin-top: 0.7rem;
        }

        .list-check li {
            margin-bottom: 0.3rem;
            display: flex;
            gap: 0.4rem;
        }

        .list-check li::before {
            content: "✓";
            color: #5ae2a8;
            margin-top: 0.02rem;
        }

        /* Ticket / Kontakt (ohne Formular) */
        .ticket-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
            gap: 1.6rem;
        }

        .form-card {
            background: rgba(5, 20, 34, 0.95);
            border-radius: var(--wc-radius-md);
            border: 1px solid var(--wc-border);
            padding: 1.1rem 1.2rem;
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
            font-size: 0.85rem;
        }

        .form-hint {
            font-size: 0.8rem;
            color: var(--wc-muted);
            margin-bottom: 0.7rem;
        }

        .btn-submit {
            margin-top: 0.7rem;
        }

        .contact-box {
            background: rgba(2, 10, 18, 0.9);
            border-radius: var(--wc-radius-md);
            border: 1px solid var(--wc-border);
            padding: 1rem 1.1rem;
            font-size: 0.85rem;
        }

        .contact-box-heading {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
        }

        .contact-box p {
            margin-bottom: 0.5rem;
            color: var(--wc-muted);
        }

        .contact-box-rows span {
            display: block;
        }

        /* FAQ */
        .faq-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 1.6rem;
        }

        .faq-box {
            background: rgba(5, 20, 34, 0.9);
            border-radius: var(--wc-radius-md);
            border: 1px solid var(--wc-border);
            padding: 1.1rem 1.2rem;
            font-size: 0.9rem;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
        }

        /* Footer */
        .site-footer {
            border-top: 1px solid var(--wc-border);
            padding: 0.9rem 0 1.1rem;
            margin-top: auto;
            background: rgba(5, 15, 24, 0.97);
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            align-items: center;
            justify-content: space-between;
        }

        .footer-links {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .footer-links a { color: var(--wc-muted); }

        .footer-links a:hover { color: var(--wc-text); }

        /* Responsive */
        @media (max-width: 960px) {
            .hero-grid,
            .card-grid,
            .why-grid,
            .ticket-grid,
            .faq-grid {
                grid-template-columns: minmax(0, 1fr);
            }

            .card-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 720px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.7rem;
            }

            .nav {
                flex-wrap: wrap;
            }

            .hero {
                padding-top: 2.4rem;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .card-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }


/* Blöcke & Text-Helpers für Unterseiten (Branchen, Servicekonzept, Downloads, etc.) */

.block {
    margin-bottom: 0.9rem;
}

.muted {
    color: var(--wc-muted);
}

/* Badge über Abschnitts-Einleitungen */
.badge {
    display: inline-block;
    padding: 0.15rem 0.65rem;
    border-radius: var(--wc-radius-pill);
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
    background: rgba(7, 27, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--wc-muted);
}

/* Card-Layout für Inhalte (falls in main.css noch nicht vorhanden) */
.card {
    background: radial-gradient(circle at top left, #123a56 0, #050f18 60%, #02060a 100%);
    border-radius: var(--wc-radius-lg);
    padding: 1.7rem 1.6rem 1.6rem;
    box-shadow: var(--wc-shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Grid mit 3 Spalten (Branchen, Dokumente, etc.) */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 0.8rem;
}

/* Boxen innerhalb der Grids */
.box {
    background: rgba(7, 27, 42, 0.9);
    border-radius: var(--wc-radius-md);
    border: 1px solid var(--wc-border);
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

/* Checklisten mit Häkchen */
.list-check {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.list-check li {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
}

.list-check li::before {
    content: "✓";
    color: #5ae2a8;
    margin-top: 0.02rem;
}

/* Listen mit Bullet-Point in Akzentfarbe (z. B. Tag-Listen) */
.tag-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.tag-list li {
    margin-bottom: 0.3rem;
}

.tag-list li::before {
    content: "• ";
    color: var(--wc-accent);
}

/* Responsive Anpassung der 3er-Grid-Boxen */
@media (max-width: 960px) {
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }
}


/* Cookie-Banner */
.cookie-banner {
    position: fixed;
    inset: auto 0 0 0;
    background: rgba(5, 15, 24, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.7);
    padding: 1rem 0;
    z-index: 9999;
    display: none; /* wird per JS auf block gesetzt */
}

.cookie-banner-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
    font-size: 0.85rem;
    color: #f5f7fb;
}

.cookie-title {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.cookie-text {
    margin-bottom: 0.45rem;
    color: #a9b4c4;
}

.cookie-text a {
    color: #c78b2a;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.cookie-btn {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.4rem 1.1rem;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 500;
}

.cookie-btn-primary {
    background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 30%, #8b5d16 100%);
    color: #0b2535;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

.cookie-btn-primary:hover {
    filter: brightness(1.05);
}

.cookie-btn-secondary {
    background: rgba(7, 27, 42, 0.9);
    color: #f5f7fb;
}

.cookie-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Auf sehr kleinen Bildschirmen etwas kompakter */
@media (max-width: 600px) {
    .cookie-banner-inner {
        font-size: 0.8rem;
        padding-bottom: 0.6rem;
    }
    .cookie-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

.steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.7rem;
    margin-top: 0.5rem;
}

.step {
    background: rgba(7, 27, 42, 0.9);
    border-radius: var(--wc-radius-md);
    border: 1px solid var(--wc-border);
    padding: 0.75rem 0.85rem;
    font-size: 0.85rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.55rem;
    align-items: flex-start;
}

.step-number {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 40%, #8b5d16 100%);
    color: #0b2535;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.6);
}

.step-content-title {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.2rem;
    margin-top: 0.6rem;
}

@media (max-width: 720px) {
    .two-col {
        grid-template-columns: minmax(0, 1fr);
    }
}


/* Mobile-Menü-Button (Hamburger) */

.nav-toggle {
    display: none;           /* Desktop: ausblenden */
    border: none;
    background: transparent;
    padding: 0.35rem;
    margin-left: auto;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    /* wichtig: vertikal stapeln */
    flex-direction: column;
    gap: 4px;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--wc-text);
}

/* Ab hier: Mobile aktivieren */
@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(5, 15, 24, 0.98);
        padding: 0.9rem 1.5rem 1.1rem;
        display: none;
        flex-direction: column;
        gap: 0.6rem;
        border-bottom: 1px solid var(--wc-border);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
        z-index: 60;
    }

    .nav a {
        display: block;
        font-size: 0.95rem;
        padding: 0.2rem 0;
    }

    .nav.nav-open {
        display: flex;
    }
}


/* Header-Optimierung für Mobile: Brand + Menü-Button in einer Zeile */

@media (max-width: 700px) {
    .header-inner {
        flex-wrap: nowrap;        /* nichts umbrechen */
        gap: 0.5rem;
    }

    .brand {
        flex: 1 1 auto;           /* darf schrumpfen */
        min-width: 0;
    }

    .brand-text {
        font-size: 0.85rem;       /* etwas kleiner, damit alles reinpasst */
        line-height: 1.2;
    }

    .brand-name {
        display: block;
    }

    .brand-sub {
        display: block;
        font-size: 0.75rem;
    }

    .nav-toggle {
        flex: 0 0 auto;           /* bleibt rechts, eigene Breite */
    }
}


/* branchen.php */
:root {
            --wc-bg: #050f18;
            --wc-bg-soft: #071b2a;
            --wc-primary: #0b2535;
            --wc-accent: #c78b2a;
            --wc-accent-soft: #e0a446;
            --wc-text: #f5f7fb;
            --wc-muted: #a9b4c4;
            --wc-border: rgba(255, 255, 255, 0.08);
            --wc-radius-lg: 18px;
            --wc-radius-md: 12px;
            --wc-radius-pill: 999px;
            --wc-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html, body { height: 100%; }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top left, #123a56 0, #050f18 50%, #02060a 100%);
            color: var(--wc-text);
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--wc-accent);
            text-decoration: none;
        }

        a:hover { text-decoration: underline; }

        .page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

.container {
    width: 100%;
    max-width: 1120px; /* antes 900px */
    margin: 0 auto;
    padding: 0 1.5rem;
}


        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: linear-gradient(to bottom, rgba(5, 15, 24, 0.96), rgba(5, 15, 24, 0.75));
            border-bottom: 1px solid var(--wc-border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .brand-logo {
            height: 34px;
            width: auto;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .brand-sub {
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .nav {
            display: flex;
            gap: 1.1rem;
            font-size: 0.85rem;
            flex-wrap: wrap;
        }

        .nav a {
            color: var(--wc-muted);
            position: relative;
            padding-bottom: 0.2rem;
        }

        .nav a:hover { color: var(--wc-text); }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--wc-accent);
            transition: width 0.18s ease-out;
        }

        .nav a:hover::after { width: 100%; }

        .nav-cta {
            padding: 0.35rem 0.85rem;
            border-radius: var(--wc-radius-pill);
            border: 1px solid rgba(199, 139, 42, 0.85);
            color: var(--wc-text);
            font-weight: 600;
            font-size: 0.8rem;
            background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 30%, #8b5d16 100%);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
            text-decoration: none;
        }

        .nav-cta:hover {
            filter: brightness(1.06);
            text-decoration: none;
        }

        /* Content */
        main {
            padding: 2.8rem 0 2.2rem;
        }

        .card {
            background: radial-gradient(circle at top left, #123a56 0, #050f18 60%, #02060a 100%);
            border-radius: var(--wc-radius-lg);
            padding: 1.7rem 1.6rem 1.6rem;
            box-shadow: var(--wc-shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        h1 {
            font-size: 1.6rem;
            margin-bottom: 1.3rem;
        }

        h2 {
            font-size: 1.05rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
        }

        h3 {
            font-size: 0.95rem;
            margin-bottom: 0.3rem;
        }

        p {
            margin-bottom: 0.5rem;
            color: var(--wc-text);
        }

        ul {
            margin: 0.25rem 0 0.6rem 1.1rem;
            padding: 0;
        }

        li {
            margin-bottom: 0.3rem;
        }

        .muted {
            color: var(--wc-muted);
        }

        .block {
            margin-bottom: 0.9rem;
        }

        .badge {
            display: inline-block;
            padding: 0.15rem 0.65rem;
            border-radius: var(--wc-radius-pill);
            font-size: 0.75rem;
            margin-bottom: 0.4rem;
            background: rgba(7, 27, 42, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--wc-muted);
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.1rem;
            margin-top: 0.8rem;
        }

        .box {
            background: rgba(7, 27, 42, 0.9);
            border-radius: var(--wc-radius-md);
            border: 1px solid var(--wc-border);
            padding: 0.9rem 1rem;
            font-size: 0.85rem;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
        }

        .list-check {
            list-style: none;
            margin-left: 0;
        }

        .list-check li {
            display: flex;
            gap: 0.4rem;
        }

        .list-check li::before {
            content: "✓";
            color: #5ae2a8;
            margin-top: 0.02rem;
        }

        .tag-list {
            list-style: none;
            margin-left: 0;
        }

        .tag-list li::before {
            content: "• ";
            color: var(--wc-accent);
        }

        .btn-primary {
            background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 30%, #8b5d16 100%);
            border-radius: var(--wc-radius-pill);
            border: none;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: #0b2535;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 0.4rem;
        }

        .btn-primary:hover {
            filter: brightness(1.05);
            text-decoration: none;
        }

        @media (max-width: 960px) {
            .grid-3 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 720px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.7rem;
            }

            .grid-3 {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        /* Footer */
        .site-footer {
            border-top: 1px solid var(--wc-border);
            padding: 0.9rem 0 1.1rem;
            margin-top: auto;
            background: rgba(5, 15, 24, 0.97);
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            align-items: center;
            justify-content: space-between;
        }

        .footer-links {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .footer-links a { color: var(--wc-muted); }

        .footer-links a:hover { color: var(--wc-text); }


/* datenschutz.php */
:root {
            --wc-bg: #050f18;
            --wc-bg-soft: #071b2a;
            --wc-primary: #0b2535;
            --wc-accent: #c78b2a;
            --wc-accent-soft: #e0a446;
            --wc-text: #f5f7fb;
            --wc-muted: #a9b4c4;
            --wc-border: rgba(255, 255, 255, 0.08);
            --wc-radius-lg: 18px;
            --wc-radius-md: 12px;
            --wc-radius-pill: 999px;
            --wc-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html, body { height: 100%; }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top left, #123a56 0, #050f18 50%, #02060a 100%);
            color: var(--wc-text);
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--wc-accent);
            text-decoration: none;
        }

        a:hover { text-decoration: underline; }

        .page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1120px; /* antes 900px */
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: linear-gradient(to bottom, rgba(5, 15, 24, 0.96), rgba(5, 15, 24, 0.75));
            border-bottom: 1px solid var(--wc-border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .brand-logo {
            height: 34px;
            width: auto;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .brand-sub {
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .nav {
            display: flex;
            gap: 1.1rem;
            font-size: 0.85rem;
        }

        .nav a {
            color: var(--wc-muted);
            position: relative;
            padding-bottom: 0.2rem;
        }

        .nav a:hover { color: var(--wc-text); }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--wc-accent);
            transition: width 0.18s ease-out;
        }

        .nav a:hover::after { width: 100%; }

        /* Content */
        main {
            padding: 2.8rem 0 2.2rem;
        }

        .card {
            background: radial-gradient(circle at top left, #123a56 0, #050f18 60%, #02060a 100%);
            border-radius: var(--wc-radius-lg);
            padding: 1.7rem 1.6rem 1.6rem;
            box-shadow: var(--wc-shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        h1 {
            font-size: 1.6rem;
            margin-bottom: 1.3rem;
        }

        h2 {
            font-size: 1.05rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
        }

        p {
            margin-bottom: 0.45rem;
            color: var(--wc-text);
        }

        ul {
            margin: 0.25rem 0 0.6rem 1.1rem;
            padding: 0;
        }

        li {
            margin-bottom: 0.3rem;
        }

        .muted {
            color: var(--wc-muted);
        }

        .block {
            margin-bottom: 0.9rem;
        }

        /* Footer */
        .site-footer {
            border-top: 1px solid var(--wc-border);
            padding: 0.9rem 0 1.1rem;
            margin-top: auto;
            background: rgba(5, 15, 24, 0.97);
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            align-items: center;
            justify-content: space-between;
        }

        .footer-links {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .footer-links a { color: var(--wc-muted); }

        .footer-links a:hover { color: var(--wc-text); }

        @media (max-width: 720px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.7rem;
            }
        }


/* download.php */
:root {
            --wc-bg: #050f18;
            --wc-bg-soft: #071b2a;
            --wc-primary: #0b2535;
            --wc-accent: #c78b2a;
            --wc-accent-soft: #e0a446;
            --wc-text: #f5f7fb;
            --wc-muted: #a9b4c4;
            --wc-border: rgba(255, 255, 255, 0.08);
            --wc-radius-lg: 18px;
            --wc-radius-md: 12px;
            --wc-radius-pill: 999px;
            --wc-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html, body { height: 100%; }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top left, #123a56 0, #050f18 50%, #02060a 100%);
            color: var(--wc-text);
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--wc-accent);
            text-decoration: none;
        }

        a:hover { text-decoration: underline; }

        .page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: linear-gradient(to bottom, rgba(5, 15, 24, 0.96), rgba(5, 15, 24, 0.75));
            border-bottom: 1px solid var(--wc-border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .brand-logo {
            height: 34px;
            width: auto;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .brand-sub {
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .nav {
            display: flex;
            gap: 1.1rem;
            font-size: 0.85rem;
            flex-wrap: wrap;
        }

        .nav a {
            color: var(--wc-muted);
            position: relative;
            padding-bottom: 0.2rem;
        }

        .nav a:hover { color: var(--wc-text); }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--wc-accent);
            transition: width 0.18s ease-out;
        }

        .nav a:hover::after { width: 100%; }

        /* Content */
        main {
            padding: 2.8rem 0 2.2rem;
        }

        .card {
            background: radial-gradient(circle at top left, #123a56 0, #050f18 60%, #02060a 100%);
            border-radius: var(--wc-radius-lg);
            padding: 1.7rem 1.6rem 1.6rem;
            box-shadow: var(--wc-shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        h1 {
            font-size: 1.6rem;
            margin-bottom: 1.3rem;
        }

        h2 {
            font-size: 1.05rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
        }

        h3 {
            font-size: 0.95rem;
            margin-bottom: 0.25rem;
        }

        p {
            margin-bottom: 0.5rem;
            color: var(--wc-text);
        }

        .muted {
            color: var(--wc-muted);
        }

        .block {
            margin-bottom: 0.9rem;
        }

        .badge {
            display: inline-block;
            padding: 0.15rem 0.65rem;
            border-radius: var(--wc-radius-pill);
            font-size: 0.75rem;
            margin-bottom: 0.4rem;
            background: rgba(7, 27, 42, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--wc-muted);
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.1rem;
            margin-top: 0.6rem;
        }

        .box {
            background: rgba(7, 27, 42, 0.9);
            border-radius: var(--wc-radius-md);
            border: 1px solid var(--wc-border);
            padding: 0.9rem 1rem;
            font-size: 0.85rem;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
        }

        ul {
            margin: 0.25rem 0 0.6rem 1.1rem;
            padding: 0;
        }

        li {
            margin-bottom: 0.3rem;
        }

        .list-check {
            list-style: none;
            margin-left: 0;
        }

        .list-check li {
            display: flex;
            gap: 0.4rem;
        }

        .list-check li::before {
            content: "✓";
            color: #5ae2a8;
            margin-top: 0.02rem;
        }

        .tag-list {
            list-style: none;
            margin-left: 0;
        }

        .tag-list li::before {
            content: "• ";
            color: var(--wc-accent);
        }

        .btn-primary {
            background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 30%, #8b5d16 100%);
            border-radius: var(--wc-radius-pill);
            border: none;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: #0b2535;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 0.4rem;
        }

        .btn-primary:hover {
            filter: brightness(1.05);
            text-decoration: none;
        }

        @media (max-width: 960px) {
            .grid-3 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 720px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.7rem;
            }

            .grid-3 {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        /* Footer */
        .site-footer {
            border-top: 1px solid var(--wc-border);
            padding: 0.9rem 0 1.1rem;
            margin-top: auto;
            background: rgba(5, 15, 24, 0.97);
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            align-items: center;
            justify-content: space-between;
        }

        .footer-links {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .footer-links a { color: var(--wc-muted); }

        .footer-links a:hover { color: var(--wc-text); }


/* faq.php */
:root {
            --wc-bg: #050f18;
            --wc-bg-soft: #071b2a;
            --wc-primary: #0b2535;
            --wc-accent: #c78b2a;
            --wc-accent-soft: #e0a446;
            --wc-text: #f5f7fb;
            --wc-muted: #a9b4c4;
            --wc-border: rgba(255, 255, 255, 0.08);
            --wc-radius-lg: 18px;
            --wc-radius-md: 12px;
            --wc-radius-pill: 999px;
            --wc-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html, body { height: 100%; }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top left, #123a56 0, #050f18 50%, #02060a 100%);
            color: var(--wc-text);
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--wc-accent);
            text-decoration: none;
        }

        a:hover { text-decoration: underline; }

        .page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1120px; /* antes 900px */
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: linear-gradient(to bottom, rgba(5, 15, 24, 0.96), rgba(5, 15, 24, 0.75));
            border-bottom: 1px solid var(--wc-border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .brand-logo {
            height: 34px;
            width: auto;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .brand-sub {
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .nav {
            display: flex;
            gap: 1.1rem;
            font-size: 0.85rem;
            flex-wrap: wrap;
        }

        .nav a {
            color: var(--wc-muted);
            position: relative;
            padding-bottom: 0.2rem;
        }

        .nav a:hover { color: var(--wc-text); }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--wc-accent);
            transition: width 0.18s ease-out;
        }

        .nav a:hover::after { width: 100%; }

        /* Content */
        main {
            padding: 2.8rem 0 2.2rem;
        }

        .card {
            background: radial-gradient(circle at top left, #123a56 0, #050f18 60%, #02060a 100%);
            border-radius: var(--wc-radius-lg);
            padding: 1.7rem 1.6rem 1.6rem;
            box-shadow: var(--wc-shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        h1 {
            font-size: 1.6rem;
            margin-bottom: 1.3rem;
        }

        h2 {
            font-size: 1.05rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
        }

        h3 {
            font-size: 0.95rem;
            margin-bottom: 0.2rem;
        }

        p {
            margin-bottom: 0.45rem;
            color: var(--wc-text);
        }

        .muted {
            color: var(--wc-muted);
        }

        .block {
            margin-bottom: 1.1rem;
        }

        .badge {
            display: inline-block;
            padding: 0.15rem 0.65rem;
            border-radius: var(--wc-radius-pill);
            font-size: 0.75rem;
            margin-bottom: 0.4rem;
            background: rgba(7, 27, 42, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--wc-muted);
        }

        .faq-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .faq-item {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 0.7rem 0;
        }

        .faq-item:first-child {
            border-top: none;
        }

        .faq-question {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .faq-answer {
            font-size: 0.9rem;
            color: var(--wc-muted);
        }

        .faq-answer p {
            margin-bottom: 0.35rem;
        }

        .faq-answer ul {
            margin: 0.2rem 0 0.4rem 1.1rem;
            padding: 0;
        }

        .faq-answer li {
            margin-bottom: 0.25rem;
        }

        .btn-primary {
            background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 30%, #8b5d16 100%);
            border-radius: var(--wc-radius-pill);
            border: none;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: #0b2535;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 0.4rem;
        }

        .btn-primary:hover {
            filter: brightness(1.05);
            text-decoration: none;
        }

        /* Footer */
        .site-footer {
            border-top: 1px solid var(--wc-border);
            padding: 0.9rem 0 1.1rem;
            margin-top: auto;
            background: rgba(5, 15, 24, 0.97);
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            align-items: center;
            justify-content: space-between;
        }

        .footer-links {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .footer-links a { color: var(--wc-muted); }

        .footer-links a:hover { color: var(--wc-text); }

        @media (max-width: 720px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.7rem;
            }
        }


/* fernwartung.php */
:root {
            --wc-bg: #050f18;
            --wc-bg-soft: #071b2a;
            --wc-primary: #0b2535;
            --wc-accent: #c78b2a;
            --wc-accent-soft: #e0a446;
            --wc-text: #f5f7fb;
            --wc-muted: #a9b4c4;
            --wc-border: rgba(255, 255, 255, 0.08);
            --wc-radius-lg: 18px;
            --wc-radius-md: 12px;
            --wc-radius-pill: 999px;
            --wc-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html, body { height: 100%; }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top left, #123a56 0, #050f18 50%, #02060a 100%);
            color: var(--wc-text);
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--wc-accent);
            text-decoration: none;
        }

        a:hover { text-decoration: underline; }

        .page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1120px; /* antes 900px */
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: linear-gradient(to bottom, rgba(5, 15, 24, 0.96), rgba(5, 15, 24, 0.75));
            border-bottom: 1px solid var(--wc-border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .brand-logo {
            height: 34px;
            width: auto;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .brand-sub {
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .nav {
            display: flex;
            gap: 1.1rem;
            font-size: 0.85rem;
            flex-wrap: wrap;
        }

        .nav a {
            color: var(--wc-muted);
            position: relative;
            padding-bottom: 0.2rem;
        }

        .nav a:hover { color: var(--wc-text); }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--wc-accent);
            transition: width 0.18s ease-out;
        }

        .nav a:hover::after { width: 100%; }

        /* Content */
        main {
            padding: 2.8rem 0 2.2rem;
        }

        .card {
            background: radial-gradient(circle at top left, #123a56 0, #050f18 60%, #02060a 100%);
            border-radius: var(--wc-radius-lg);
            padding: 1.7rem 1.6rem 1.6rem;
            box-shadow: var(--wc-shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        h1 {
            font-size: 1.6rem;
            margin-bottom: 1.3rem;
        }

        h2 {
            font-size: 1.05rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
        }

        h3 {
            font-size: 0.95rem;
            margin-bottom: 0.3rem;
        }

        p {
            margin-bottom: 0.45rem;
            color: var(--wc-text);
        }

        ul {
            margin: 0.25rem 0 0.6rem 1.1rem;
            padding: 0;
        }

        li {
            margin-bottom: 0.3rem;
        }

        .muted {
            color: var(--wc-muted);
        }

        .block {
            margin-bottom: 1.1rem;
        }

        .badge {
            display: inline-block;
            padding: 0.15rem 0.65rem;
            border-radius: var(--wc-radius-pill);
            font-size: 0.75rem;
            margin-bottom: 0.4rem;
            background: rgba(7, 27, 42, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--wc-muted);
        }

        .steps {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 0.7rem;
            margin-top: 0.5rem;
        }

        .step {
            background: rgba(7, 27, 42, 0.9);
            border-radius: var(--wc-radius-md);
            border: 1px solid var(--wc-border);
            padding: 0.75rem 0.85rem;
            font-size: 0.85rem;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 0.55rem;
            align-items: flex-start;
        }

        .step-number {
            width: 26px;
            height: 26px;
            border-radius: 999px;
            background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 40%, #8b5d16 100%);
            color: #0b2535;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.6);
        }

        .step-content-title {
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .two-col {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 1.2rem;
            margin-top: 0.6rem;
        }

        .box {
            background: rgba(7, 27, 42, 0.9);
            border-radius: var(--wc-radius-md);
            border: 1px solid var(--wc-border);
            padding: 0.9rem 1rem;
            font-size: 0.85rem;
        }

        .list-check {
            list-style: none;
            margin-left: 0;
        }

        .list-check li {
            display: flex;
            gap: 0.4rem;
        }

        .list-check li::before {
            content: "✓";
            color: #5ae2a8;
            margin-top: 0.02rem;
        }

        .tag-list {
            list-style: none;
            margin-left: 0;
        }

        .tag-list li::before {
            content: "• ";
            color: var(--wc-accent);
        }

        .btn-primary {
            background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 30%, #8b5d16 100%);
            border-radius: var(--wc-radius-pill);
            border: none;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: #0b2535;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 0.4rem;
        }

        .btn-primary:hover {
            filter: brightness(1.05);
            text-decoration: none;
        }

        /* Footer */
        .site-footer {
            border-top: 1px solid var(--wc-border);
            padding: 0.9rem 0 1.1rem;
            margin-top: auto;
            background: rgba(5, 15, 24, 0.97);
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            align-items: center;
            justify-content: space-between;
        }

        .footer-links {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .footer-links a { color: var(--wc-muted); }

        .footer-links a:hover { color: var(--wc-text); }

        @media (max-width: 720px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.7rem;
            }

            .two-col {
                grid-template-columns: minmax(0, 1fr);
            }
        }


/* impressum.php */
:root {
            --wc-bg: #050f18;
            --wc-bg-soft: #071b2a;
            --wc-primary: #0b2535;
            --wc-accent: #c78b2a;
            --wc-accent-soft: #e0a446;
            --wc-text: #f5f7fb;
            --wc-muted: #a9b4c4;
            --wc-border: rgba(255, 255, 255, 0.08);
            --wc-radius-lg: 18px;
            --wc-radius-md: 12px;
            --wc-radius-pill: 999px;
            --wc-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html, body { height: 100%; }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top left, #123a56 0, #050f18 50%, #02060a 100%);
            color: var(--wc-text);
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--wc-accent);
            text-decoration: none;
        }

        a:hover { text-decoration: underline; }

        .page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
           max-width: 1120px; /* antes 900px */
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: linear-gradient(to bottom, rgba(5, 15, 24, 0.96), rgba(5, 15, 24, 0.75));
            border-bottom: 1px solid var(--wc-border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .brand-logo {
            height: 34px;
            width: auto;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .brand-sub {
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .nav {
            display: flex;
            gap: 1.1rem;
            font-size: 0.85rem;
        }

        .nav a {
            color: var(--wc-muted);
            position: relative;
            padding-bottom: 0.2rem;
        }

        .nav a:hover { color: var(--wc-text); }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--wc-accent);
            transition: width 0.18s ease-out;
        }

        .nav a:hover::after { width: 100%; }

        /* Content */
        main {
            padding: 2.8rem 0 2.2rem;
        }

        .card {
            background: radial-gradient(circle at top left, #123a56 0, #050f18 60%, #02060a 100%);
            border-radius: var(--wc-radius-lg);
            padding: 1.7rem 1.6rem 1.6rem;
            box-shadow: var(--wc-shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            line-height: 1.55;
        }

        h1 {
            font-size: 1.6rem;
            margin-bottom: 1.3rem;
        }

        h2 {
            font-size: 1.05rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
        }

        p {
            margin-bottom: 0.45rem;
            color: var(--wc-text);
        }

        .muted {
            color: var(--wc-muted);
        }

        .block {
            margin-bottom: 0.9rem;
        }

        /* Footer */
        .site-footer {
            border-top: 1px solid var(--wc-border);
            padding: 0.9rem 0 1.1rem;
            margin-top: auto;
            background: rgba(5, 15, 24, 0.97);
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            align-items: center;
            justify-content: space-between;
        }

        .footer-links {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .footer-links a { color: var(--wc-muted); }

        .footer-links a:hover { color: var(--wc-text); }

        @media (max-width: 720px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.7rem;
            }
        }


/* inhaber.php */
:root {
            --wc-bg: #050f18;
            --wc-bg-soft: #071b2a;
            --wc-primary: #0b2535;
            --wc-accent: #c78b2a;
            --wc-accent-soft: #e0a446;
            --wc-text: #f5f7fb;
            --wc-muted: #a9b4c4;
            --wc-border: rgba(255, 255, 255, 0.08);
            --wc-radius-lg: 18px;
            --wc-radius-md: 12px;
            --wc-radius-pill: 999px;
            --wc-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html, body { height: 100%; }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top left, #123a56 0, #050f18 50%, #02060a 100%);
            color: var(--wc-text);
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--wc-accent);
            text-decoration: none;
        }

        a:hover { text-decoration: underline; }

        .page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1120px; /* antes 900px */
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: linear-gradient(to bottom, rgba(5, 15, 24, 0.96), rgba(5, 15, 24, 0.75));
            border-bottom: 1px solid var(--wc-border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .brand-logo {
            height: 34px;
            width: auto;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .brand-sub {
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .nav {
            display: flex;
            gap: 1.1rem;
            font-size: 0.85rem;
        }

        .nav a {
            color: var(--wc-muted);
            position: relative;
            padding-bottom: 0.2rem;
        }

        .nav a:hover { color: var(--wc-text); }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--wc-accent);
            transition: width 0.18s ease-out;
        }

        .nav a:hover::after { width: 100%; }

        /* Content */
        main {
            padding: 2.8rem 0 2.2rem;
        }

        .card {
            background: radial-gradient(circle at top left, #123a56 0, #050f18 60%, #02060a 100%);
            border-radius: var(--wc-radius-lg);
            padding: 1.7rem 1.6rem 1.6rem;
            box-shadow: var(--wc-shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        h1 {
            font-size: 1.6rem;
            margin-bottom: 1.3rem;
        }

        h2 {
            font-size: 1.05rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
        }

        h3 {
            font-size: 0.95rem;
            margin-bottom: 0.4rem;
        }

        p {
            margin-bottom: 0.5rem;
            color: var(--wc-text);
        }

        ul {
            margin: 0.25rem 0 0.6rem 1.1rem;
            padding: 0;
        }

        li {
            margin-bottom: 0.3rem;
        }

        .muted {
            color: var(--wc-muted);
        }

        .block {
            margin-bottom: 0.9rem;
        }

        .profile-grid {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
            gap: 1.6rem;
            align-items: center;
        }

        .profile-photo-wrapper {
            display: flex;
            justify-content: center;
        }

        .profile-photo {
            width: 210px;
            height: 210px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(199, 139, 42, 0.8);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.75);
            background: #091723;
        }

        .profile-meta {
            font-size: 0.85rem;
            color: var(--wc-muted);
            margin-top: 0.6rem;
        }

        .badge {
            display: inline-block;
            padding: 0.15rem 0.65rem;
            border-radius: var(--wc-radius-pill);
            font-size: 0.75rem;
            margin-bottom: 0.4rem;
            background: rgba(7, 27, 42, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--wc-muted);
        }

        .list-check {
            list-style: none;
            margin-left: 0;
        }

        .list-check li {
            display: flex;
            gap: 0.4rem;
        }

        .list-check li::before {
            content: "✓";
            color: #5ae2a8;
            margin-top: 0.02rem;
        }

        .two-col {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
            gap: 1.4rem;
            margin-top: 0.8rem;
        }

        .box {
            background: rgba(7, 27, 42, 0.9);
            border-radius: var(--wc-radius-md);
            border: 1px solid var(--wc-border);
            padding: 0.9rem 1rem;
            font-size: 0.85rem;
        }

        .tag-list {
            list-style: none;
            margin-left: 0;
        }

        .tag-list li::before {
            content: "• ";
            color: var(--wc-accent);
        }

        .pill-list {
            list-style: none;
            margin-left: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
        }

        .pill-list li {
            margin: 0;
        }

        .pill {
            display: inline-block;
            padding: 0.15rem 0.55rem;
            border-radius: var(--wc-radius-pill);
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(2, 10, 18, 0.85);
            font-size: 0.78rem;
            color: var(--wc-muted);
        }

        .btn-primary {
            background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 30%, #8b5d16 100%);
            border-radius: var(--wc-radius-pill);
            border: none;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: #0b2535;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 0.4rem;
        }

        .btn-primary:hover {
            filter: brightness(1.05);
            text-decoration: none;
        }

        /* Footer */
        .site-footer {
            border-top: 1px solid var(--wc-border);
            padding: 0.9rem 0 1.1rem;
            margin-top: auto;
            background: rgba(5, 15, 24, 0.97);
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            align-items: center;
            justify-content: space-between;
        }

        .footer-links {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .footer-links a { color: var(--wc-muted); }

        .footer-links a:hover { color: var(--wc-text); }

        @media (max-width: 720px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.7rem;
            }

            .profile-grid {
                grid-template-columns: minmax(0, 1fr);
            }

            .profile-photo {
                width: 180px;
                height: 180px;
            }

            .two-col {
                grid-template-columns: minmax(0, 1fr);
            }
        }


/* it-notfall.php */
:root {
            --wc-bg: #050f18;
            --wc-bg-soft: #071b2a;
            --wc-primary: #0b2535;
            --wc-accent: #c78b2a;
            --wc-accent-soft: #e0a446;
            --wc-text: #f5f7fb;
            --wc-muted: #a9b4c4;
            --wc-border: rgba(255, 255, 255, 0.08);
            --wc-radius-lg: 18px;
            --wc-radius-md: 12px;
            --wc-radius-pill: 999px;
            --wc-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html, body { height: 100%; }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top left, #123a56 0, #050f18 50%, #02060a 100%);
            color: var(--wc-text);
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--wc-accent);
            text-decoration: none;
        }

        a:hover { text-decoration: underline; }

        .page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1120px; /* antes 900px */
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: linear-gradient(to bottom, rgba(5, 15, 24, 0.96), rgba(5, 15, 24, 0.75));
            border-bottom: 1px solid var(--wc-border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .brand-logo {
            height: 34px;
            width: auto;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .brand-sub {
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .nav {
            display: flex;
            gap: 1.1rem;
            font-size: 0.85rem;
        }

        .nav a {
            color: var(--wc-muted);
            position: relative;
            padding-bottom: 0.2rem;
        }

        .nav a:hover { color: var(--wc-text); }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--wc-accent);
            transition: width 0.18s ease-out;
        }

        .nav a:hover::after { width: 100%; }

        .nav-cta {
            padding: 0.35rem 0.85rem;
            border-radius: var(--wc-radius-pill);
            border: 1px solid rgba(199, 139, 42, 0.85);
            color: var(--wc-text);
            font-weight: 600;
            font-size: 0.8rem;
            background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 30%, #8b5d16 100%);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
            text-decoration: none;
        }

        .nav-cta:hover {
            filter: brightness(1.06);
            text-decoration: none;
        }

        /* Content */
        main {
            padding: 2.8rem 0 2.2rem;
        }

        .card {
            background: radial-gradient(circle at top left, #123a56 0, #050f18 60%, #02060a 100%);
            border-radius: var(--wc-radius-lg);
            padding: 1.7rem 1.6rem 1.6rem;
            box-shadow: var(--wc-shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        h1 {
            font-size: 1.6rem;
            margin-bottom: 1.3rem;
        }

        h2 {
            font-size: 1.05rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
        }

        p {
            margin-bottom: 0.5rem;
            color: var(--wc-text);
        }

        ul {
            margin: 0.25rem 0 0.6rem 1.1rem;
            padding: 0;
        }

        li {
            margin-bottom: 0.3rem;
        }

        .muted {
            color: var(--wc-muted);
        }

        .block {
            margin-bottom: 0.9rem;
        }

        .badge {
            display: inline-block;
            padding: 0.15rem 0.65rem;
            border-radius: var(--wc-radius-pill);
            font-size: 0.75rem;
            margin-bottom: 0.4rem;
        }

        .badge-critical {
            background: rgba(220, 53, 69, 0.12);
            border: 1px solid rgba(220, 53, 69, 0.7);
            color: #ffb3bd;
        }

        .badge-high {
            background: rgba(255, 193, 7, 0.12);
            border: 1px solid rgba(255, 193, 7, 0.7);
            color: #ffe4a3;
        }

        .badge-normal {
            background: rgba(40, 167, 69, 0.12);
            border: 1px solid rgba(40, 167, 69, 0.7);
            color: #b6f0c3;
        }

        .btn-primary {
            background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 30%, #8b5d16 100%);
            border-radius: var(--wc-radius-pill);
            border: none;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: #0b2535;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 0.3rem;
        }

        .btn-primary:hover {
            filter: brightness(1.05);
            text-decoration: none;
        }

        /* Footer */
        .site-footer {
            border-top: 1px solid var(--wc-border);
            padding: 0.9rem 0 1.1rem;
            margin-top: auto;
            background: rgba(5, 15, 24, 0.97);
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            align-items: center;
            justify-content: space-between;
        }

        .footer-links {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .footer-links a { color: var(--wc-muted); }

        .footer-links a:hover { color: var(--wc-text); }

        @media (max-width: 720px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.7rem;
            }
        }


/* referenzen.php */
:root {
            --wc-bg: #050f18;
            --wc-bg-soft: #071b2a;
            --wc-primary: #0b2535;
            --wc-accent: #c78b2a;
            --wc-accent-soft: #e0a446;
            --wc-text: #f5f7fb;
            --wc-muted: #a9b4c4;
            --wc-border: rgba(255, 255, 255, 0.08);
            --wc-radius-lg: 18px;
            --wc-radius-md: 12px;
            --wc-radius-pill: 999px;
            --wc-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html, body { height: 100%; }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top left, #123a56 0, #050f18 50%, #02060a 100%);
            color: var(--wc-text);
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--wc-accent);
            text-decoration: none;
        }

        a:hover { text-decoration: underline; }

        .page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
           max-width: 1120px; /* antes 900px */
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: linear-gradient(to bottom, rgba(5, 15, 24, 0.96), rgba(5, 15, 24, 0.75));
            border-bottom: 1px solid var(--wc-border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .brand-logo {
            height: 34px;
            width: auto;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .brand-sub {
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .nav {
            display: flex;
            gap: 1.1rem;
            font-size: 0.85rem;
            flex-wrap: wrap;
        }

        .nav a {
            color: var(--wc-muted);
            position: relative;
            padding-bottom: 0.2rem;
        }

        .nav a:hover { color: var(--wc-text); }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--wc-accent);
            transition: width 0.18s ease-out;
        }

        .nav a:hover::after { width: 100%; }

        /* Content */
        main {
            padding: 2.8rem 0 2.2rem;
        }

        .card {
            background: radial-gradient(circle at top left, #123a56 0, #050f18 60%, #02060a 100%);
            border-radius: var(--wc-radius-lg);
            padding: 1.7rem 1.6rem 1.6rem;
            box-shadow: var(--wc-shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        h1 {
            font-size: 1.6rem;
            margin-bottom: 1.3rem;
        }

        h2 {
            font-size: 1.05rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
        }

        h3 {
            font-size: 0.95rem;
            margin-bottom: 0.25rem;
        }

        p {
            margin-bottom: 0.5rem;
            color: var(--wc-text);
        }

        .muted {
            color: var(--wc-muted);
        }

        .block {
            margin-bottom: 0.9rem;
        }

        .badge {
            display: inline-block;
            padding: 0.15rem 0.65rem;
            border-radius: var(--wc-radius-pill);
            font-size: 0.75rem;
            margin-bottom: 0.4rem;
            background: rgba(7, 27, 42, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--wc-muted);
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.1rem;
            margin-top: 0.6rem;
        }

        .case {
            background: rgba(7, 27, 42, 0.9);
            border-radius: var(--wc-radius-md);
            border: 1px solid var(--wc-border);
            padding: 0.9rem 1rem;
            font-size: 0.85rem;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
        }

        .case-meta {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--wc-muted);
            margin-bottom: 0.3rem;
        }

        .case-list {
            margin: 0.25rem 0 0.5rem 1.1rem;
            padding: 0;
        }

        .case-list li {
            margin-bottom: 0.25rem;
        }

        .list-check {
            list-style: none;
            margin-left: 0;
        }

        .list-check li {
            display: flex;
            gap: 0.4rem;
        }

        .list-check li::before {
            content: "✓";
            color: #5ae2a8;
            margin-top: 0.02rem;
        }

        .two-col {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 1.2rem;
            margin-top: 0.6rem;
        }

        .box {
            background: rgba(7, 27, 42, 0.9);
            border-radius: var(--wc-radius-md);
            border: 1px solid var(--wc-border);
            padding: 0.9rem 1rem;
            font-size: 0.85rem;
        }

        .btn-primary {
            background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 30%, #8b5d16 100%);
            border-radius: var(--wc-radius-pill);
            border: none;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: #0b2535;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 0.4rem;
        }

        .btn-primary:hover {
            filter: brightness(1.05);
            text-decoration: none;
        }

        @media (max-width: 960px) {
            .grid-3 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 720px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.7rem;
            }

            .grid-3 {
                grid-template-columns: minmax(0, 1fr);
            }

            .two-col {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        /* Footer */
        .site-footer {
            border-top: 1px solid var(--wc-border);
            padding: 0.9rem 0 1.1rem;
            margin-top: auto;
            background: rgba(5, 15, 24, 0.97);
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            align-items: center;
            justify-content: space-between;
        }

        .footer-links {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .footer-links a { color: var(--wc-muted); }

        .footer-links a:hover { color: var(--wc-text); }


/* servicekonzept.php */
:root {
            --wc-bg: #050f18;
            --wc-bg-soft: #071b2a;
            --wc-primary: #0b2535;
            --wc-accent: #c78b2a;
            --wc-accent-soft: #e0a446;
            --wc-text: #f5f7fb;
            --wc-muted: #a9b4c4;
            --wc-border: rgba(255, 255, 255, 0.08);
            --wc-radius-lg: 18px;
            --wc-radius-md: 12px;
            --wc-radius-pill: 999px;
            --wc-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html, body { height: 100%; }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top left, #123a56 0, #050f18 50%, #02060a 100%);
            color: var(--wc-text);
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--wc-accent);
            text-decoration: none;
        }

        a:hover { text-decoration: underline; }

        .page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1120px; /* antes 900px */
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: linear-gradient(to bottom, rgba(5, 15, 24, 0.96), rgba(5, 15, 24, 0.75));
            border-bottom: 1px solid var(--wc-border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .brand-logo {
            height: 34px;
            width: auto;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .brand-sub {
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .nav {
            display: flex;
            gap: 1.1rem;
            font-size: 0.85rem;
            flex-wrap: wrap;
        }

        .nav a {
            color: var(--wc-muted);
            position: relative;
            padding-bottom: 0.2rem;
        }

        .nav a:hover { color: var(--wc-text); }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--wc-accent);
            transition: width 0.18s ease-out;
        }

        .nav a:hover::after { width: 100%; }

        .nav-cta {
            padding: 0.35rem 0.85rem;
            border-radius: var(--wc-radius-pill);
            border: 1px solid rgba(199, 139, 42, 0.85);
            color: var(--wc-text);
            font-weight: 600;
            font-size: 0.8rem;
            background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 30%, #8b5d16 100%);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
            text-decoration: none;
        }

        .nav-cta:hover {
            filter: brightness(1.06);
            text-decoration: none;
        }

        /* Content */
        main {
            padding: 2.8rem 0 2.2rem;
        }

        .card {
            background: radial-gradient(circle at top left, #123a56 0, #050f18 60%, #02060a 100%);
            border-radius: var(--wc-radius-lg);
            padding: 1.7rem 1.6rem 1.6rem;
            box-shadow: var(--wc-shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        h1 {
            font-size: 1.6rem;
            margin-bottom: 1.3rem;
        }

        h2 {
            font-size: 1.05rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
        }

        h3 {
            font-size: 0.95rem;
            margin-bottom: 0.3rem;
        }

        p {
            margin-bottom: 0.5rem;
            color: var(--wc-text);
        }

        ul {
            margin: 0.25rem 0 0.6rem 1.1rem;
            padding: 0;
        }

        li {
            margin-bottom: 0.3rem;
        }

        .muted {
            color: var(--wc-muted);
        }

        .block {
            margin-bottom: 0.9rem;
        }

        .badge {
            display: inline-block;
            padding: 0.15rem 0.65rem;
            border-radius: var(--wc-radius-pill);
            font-size: 0.75rem;
            margin-bottom: 0.4rem;
            background: rgba(7, 27, 42, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--wc-muted);
        }

        .steps {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 0.7rem;
            margin-top: 0.5rem;
        }

        .step {
            background: rgba(7, 27, 42, 0.9);
            border-radius: var(--wc-radius-md);
            border: 1px solid var(--wc-border);
            padding: 0.75rem 0.85rem;
            font-size: 0.85rem;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 0.55rem;
            align-items: flex-start;
        }

        .step-number {
            width: 26px;
            height: 26px;
            border-radius: 999px;
            background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 40%, #8b5d16 100%);
            color: #0b2535;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.6);
        }

        .step-content-title {
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .two-col {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 1.2rem;
            margin-top: 0.6rem;
        }

        .box {
            background: rgba(7, 27, 42, 0.9);
            border-radius: var(--wc-radius-md);
            border: 1px solid var(--wc-border);
            padding: 0.9rem 1rem;
            font-size: 0.85rem;
        }

        .list-check {
            list-style: none;
            margin-left: 0;
        }

        .list-check li {
            display: flex;
            gap: 0.4rem;
        }

        .list-check li::before {
            content: "✓";
            color: #5ae2a8;
            margin-top: 0.02rem;
        }

        .tag-list {
            list-style: none;
            margin-left: 0;
        }

        .tag-list li::before {
            content: "• ";
            color: var(--wc-accent);
        }

        .btn-primary {
            background: radial-gradient(circle at top left, #f3d08a 0, #c78b2a 30%, #8b5d16 100%);
            border-radius: var(--wc-radius-pill);
            border: none;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: #0b2535;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 0.4rem;
        }

        .btn-primary:hover {
            filter: brightness(1.05);
            text-decoration: none;
        }

        /* Footer */
        .site-footer {
            border-top: 1px solid var(--wc-border);
            padding: 0.9rem 0 1.1rem;
            margin-top: auto;
            background: rgba(5, 15, 24, 0.97);
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            align-items: center;
            justify-content: space-between;
        }

        .footer-links {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .footer-links a { color: var(--wc-muted); }

        .footer-links a:hover { color: var(--wc-text); }

        @media (max-width: 720px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.7rem;
            }

            .two-col {
                grid-template-columns: minmax(0, 1fr);
            }
        }


/* ueber-uns.php */
:root {
            --wc-bg: #050f18;
            --wc-bg-soft: #071b2a;
            --wc-primary: #0b2535;
            --wc-accent: #c78b2a;
            --wc-accent-soft: #e0a446;
            --wc-text: #f5f7fb;
            --wc-muted: #a9b4c4;
            --wc-border: rgba(255, 255, 255, 0.08);
            --wc-radius-lg: 18px;
            --wc-radius-md: 12px;
            --wc-radius-pill: 999px;
            --wc-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html, body { height: 100%; }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top left, #123a56 0, #050f18 50%, #02060a 100%);
            color: var(--wc-text);
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--wc-accent);
            text-decoration: none;
        }

        a:hover { text-decoration: underline; }

        .page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: linear-gradient(to bottom, rgba(5, 15, 24, 0.96), rgba(5, 15, 24, 0.75));
            border-bottom: 1px solid var(--wc-border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .brand-logo {
            height: 34px;
            width: auto;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .brand-sub {
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .nav {
            display: flex;
            gap: 1.1rem;
            font-size: 0.85rem;
        }

        .nav a {
            color: var(--wc-muted);
            position: relative;
            padding-bottom: 0.2rem;
        }

        .nav a:hover { color: var(--wc-text); }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--wc-accent);
            transition: width 0.18s ease-out;
        }

        .nav a:hover::after { width: 100%; }

        /* Content */
        main {
            padding: 2.8rem 0 2.2rem;
        }

        .card {
            background: radial-gradient(circle at top left, #123a56 0, #050f18 60%, #02060a 100%);
            border-radius: var(--wc-radius-lg);
            padding: 1.7rem 1.6rem 1.6rem;
            box-shadow: var(--wc-shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        h1 {
            font-size: 1.6rem;
            margin-bottom: 1.3rem;
        }

        h2 {
            font-size: 1.05rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
        }

        p {
            margin-bottom: 0.5rem;
            color: var(--wc-text);
        }

        ul {
            margin: 0.25rem 0 0.6rem 1.1rem;
            padding: 0;
        }

        li {
            margin-bottom: 0.3rem;
        }

        .muted {
            color: var(--wc-muted);
        }

        .block {
            margin-bottom: 0.9rem;
        }

        /* Footer */
        .site-footer {
            border-top: 1px solid var(--wc-border);
            padding: 0.9rem 0 1.1rem;
            margin-top: auto;
            background: rgba(5, 15, 24, 0.97);
            font-size: 0.75rem;
            color: var(--wc-muted);
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            align-items: center;
            justify-content: space-between;
        }

        .footer-links {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .footer-links a { color: var(--wc-muted); }

        .footer-links a:hover { color: var(--wc-text); }

        @media (max-width: 720px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.7rem;
            }
        }


.error-page {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.error-title {
    font-size: 2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.error-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .site-header .nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(5, 15, 24, 0.98);
        padding: 0.9rem 1.5rem 1.1rem;
        display: none;
        flex-direction: column;
        gap: 0.6rem;
        border-bottom: 1px solid var(--wc-border);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
        z-index: 60;
    }

    .site-header .nav a {
        display: block;
        font-size: 0.95rem;
        padding: 0.2rem 0;
    }

    .site-header .nav.nav-open {
        display: flex;
    }
}

.projects-page {
    padding: 2.6rem 0 2.2rem;
}

.projects-page .card {
    background: rgba(9, 30, 48, 0.95);
    border-radius: var(--wc-radius-md);
    border: 1px solid var(--wc-border);
    box-shadow: var(--wc-shadow-soft);
}

.projects-page .page-intro {
    margin-bottom: 1.6rem;
}

.projects-page .page-intro h1 {
    font-size: 1.7rem;
    margin-bottom: 0.6rem;
}

.projects-page .page-intro p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--wc-muted);
}

/* Grid mit deinen Projekten */
.projects-page .project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.projects-page .project-card {
    background: rgba(7, 27, 42, 0.94);
    border-radius: var(--wc-radius-md);
    border: 1px solid var(--wc-border);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* „Bild“-Bereich oben (später kannst du echte Bilder einbauen) */
.projects-page .project-thumb {
    height: 140px;
    background: radial-gradient(circle at top left, #1d4f73 0, #06121f 55%, #02060a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: flex-end;
    padding: 0.8rem;
}

.projects-page .project-thumb-label {
    display: inline-flex;
    padding: 0.2rem 0.6rem;
    border-radius: var(--wc-radius-pill);
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: rgba(5, 17, 28, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--wc-muted);
}

/* Inhalt der Karte */

.projects-page .project-actions {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.projects-page .project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.85rem;
    line-height: 1.2;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: var(--wc-accent, #4fb3ff);
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.projects-page .project-btn-primary {
    background: var(--wc-accent, #4fb3ff);
    border-color: var(--wc-accent, #4fb3ff);
    color: #050b12;
    font-weight: 600;
}

.projects-page .project-btn-secondary {
    background: rgba(10, 25, 40, 0.9);
    color: #e3edf7;
}

.projects-page .project-btn:hover {
    transform: translateY(-1px);
}

.projects-page .project-body {
    padding: 0.95rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.projects-page .project-title {
    font-size: 1.05rem;
    font-weight: 600;
}

.projects-page .project-tagline {
    font-size: 0.9rem;
    color: var(--wc-muted);
}

.projects-page .project-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.3rem;
}

.projects-page .project-meta {
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: var(--wc-muted);
}

.projects-page .project-actions {
    margin-top: 0.45rem;
}

/* Hinweis unten auf der Seite */
.projects-page .project-footer-note {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: var(--wc-muted);
}

/* Responsive: 2 Spalten auf Tablet, 1 Spalte auf Handy */
@media (max-width: 960px) {
    .projects-page .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .projects-page {
        padding-top: 2rem;
        padding-bottom: 1.8rem;
    }

    .projects-page .project-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}


.projects-page .project-thumb {
    position: relative;
    overflow: hidden;
    border-radius: var(--wc-radius-md);
    cursor: zoom-in;
}

.projects-page .project-thumb-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Lightbox Overlay */
.projects-page .project-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.projects-page .project-lightbox.is-open {
    display: flex;
}

.projects-page .project-lightbox-inner {
    max-width: 90vw;
    max-height: 90vh;
}

.projects-page .project-lightbox-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
    display: block;
}

/* Kleine Verbesserung: auf Handy etwas mehr Toleranz */
@media (max-width: 600px) {
    .projects-page .project-lightbox-inner {
        max-width: 96vw;
        max-height: 80vh;
    }
}


/* ----------------------------------
   Grund-Styles für Tabellen (global)
   Gilt auch für Webdesign-Tabellen
---------------------------------- */

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.95rem;
    table-layout: auto; /* Standard: automatisch, damit nichts abgeschnitten wird */
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    vertical-align: top;
}

.price-table strong {
    font-weight: 600;
}

.price-col-label {
    width: 65%;
}

.price-col-value {
    width: 35%;
    text-align: right;
}

.price-cell {
    text-align: right;
    white-space: normal;      /* damit Text umbrechen darf */
    word-wrap: break-word;    /* Sicherheitsnetz für lange Inhalte */
}

/* Kompaktere Tabellen (price-table--compact) */
.price-table.price-table--compact td {
    padding: 0.55rem 0;
    font-size: 0.9rem;
}

/* Mobile: untereinander statt links/rechts */
@media (max-width: 640px) {
    .price-table,
    .price-table colgroup,
    .price-table tbody,
    .price-table tr,
    .price-table td {
        display: block;
        width: 100%;
    }

    .price-table tr {
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .price-table td {
        border-bottom: none;
    }

    .price-col-value,
    .price-cell {
        text-align: left;
        margin-top: 0.25rem;
        white-space: normal;
    }
}

/* ----------------------------------
   Spezial-Styles NUR für Preise-Seite
   (main.site-main.pricing-page ...)
---------------------------------- */

.pricing-page .table-wrapper {
    margin-top: 0.8rem;
}

.pricing-page .price-table {
    table-layout: fixed;              /* saubere Breitenverteilung */
    border-collapse: separate !important;
    border-spacing: 0 0.5rem;         /* Abstand zwischen den Zeilen */
    font-size: 0.9rem;
}

/* Zellen: mehr Innenabstand */
.pricing-page .price-table td {
    padding: 0.55rem 1rem;
    vertical-align: top;
    border-bottom: none;              /* Unterstriche entfernen, wir nutzen "Karten-Optik" */
}

/* Optische Trennung der Zeilen */
.pricing-page .price-table tr {
    background: rgba(7, 27, 42, 0.92);
    border-radius: 10px;
}

/* Rundung nur an den äußeren Kanten “simulieren” */
.pricing-page .price-table tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.pricing-page .price-table tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Preis-Spalte auf Preise-Seite: rechts, aber darf umbrechen */
.pricing-page .price-table .price-cell {
    text-align: right;
    white-space: normal;
    word-wrap: break-word;
}

/* Spaltenbreiten nur auf Preise-Seite leicht anders setzen */
.pricing-page .price-table .price-col-label {
    width: 62%;
}

.pricing-page .price-table .price-col-value {
    width: 38%;
}

/* =========================================================
   HEADER: TOP-MENÜ & HAUPTNAVIGATION
   ========================================================= */

.header-top {
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    font-size: 0.8rem;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-nav-list {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
}

.top-nav-link {
    color: #e5e7eb;
    text-decoration: none;
    opacity: 0.85;
    white-space: nowrap;
}

.top-nav-link:hover {
    opacity: 1;
}

/* Hauptnavigation */

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav-list {
    display: flex;
    gap: 1.3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    color: #e5e7eb;
    padding: 0.35rem 0;
}

.main-nav-link:hover {
    color: #38bdf8;
}

.main-nav-item.has-submenu {
    position: relative;
}

.main-nav-link--parent {
    background: none;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font: inherit;
    color: inherit;
}

.main-nav-caret {
    font-size: 0.75rem;
    line-height: 1;
    transform: translateY(1px);
}

.main-nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #020617;
    padding: 0.5rem 0.85rem;
    border-radius: 0.65rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.65);
    display: none;
    z-index: 50;
}

.main-nav-submenu-link {
    display: block;
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: #f9fafb;
    text-decoration: none;
}

.main-nav-submenu-link:hover {
    color: #38bdf8;
}

/* Desktop: Submenüs per Hover sichtbar */
@media (min-width: 900px) {
    .main-nav-item.has-submenu:hover > .main-nav-submenu {
        display: block;
    }
}

/* Mobile Navigation */
@media (max-width: 899px) {
    .header-top {
        display: none;
    }

    .main-nav {
        position: absolute;
        inset-inline: 0;
        top: 100%;
        background: rgba(15, 23, 42, 0.98);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.22s ease, opacity 0.22s ease;
        padding-bottom: 0.5rem;
    }

    .main-nav.main-nav--open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav-list {
        flex-direction: column;
        padding: 0.75rem 1.25rem 1rem;
        gap: 0.25rem;
    }

    .main-nav-link {
        width: 100%;
        text-align: left;
    }

    .main-nav-submenu {
        position: static;
        box-shadow: none;
        padding-left: 0.75rem;
        margin-top: 0.25rem;
    }

    .main-nav-item.submenu-open > .main-nav-submenu {
        display: block;
    }
}

/* =========================================================
   KOPIERSCHUTZ – TEXT NICHT MARKIERBAR (mit Ausnahmen)
   ========================================================= */

.no-select {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* In Formularfeldern und explizit markierten Bereichen Auswahl erlauben */
.no-select input,
.no-select textarea,
.no-select button,
.no-select [contenteditable="true"],
.no-select .allow-select {
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}


/* Einheitliche Menügröße auf allen Seiten */
.site-header .nav {
    font-size: 0.9rem !important;
}


