/* Aus serviceabfrage.php ausgelagerte, seitenbezogene Styles */
:root {
            --bg: #f3f4f6;
            --bg-alt: #ffffff;
            --accent: #2563eb;
            --accent-soft: rgba(37, 99, 235, 0.08);
            --text: #111827;
            --text-muted: #6b7280;
            --card: #ffffff;
            --border: #e5e7eb;
            --radius-xl: 18px;
            --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
        }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top left, #e5f0ff 0, #f3f4f6 45%, #eef2ff 100%);
            color: var(--text);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .page {
            max-width: 900px;
            margin: 0 auto;
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.25rem;
            padding: 0.85rem 1.25rem;
            margin-bottom: 1.5rem;
            border-radius: 20px;
            background: var(--bg-alt);
            border: 1px solid var(--border);
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
        }

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

        .brand-logo {
            width: 40px;
            height: 40px;
            border-radius: 16px;
            background: radial-gradient(circle at 30% 30%, #60a5fa, #2563eb 55%, #1d4ed8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
            font-size: 1.35rem;
            color: #ffffff;
            font-weight: 700;
        }

        .brand-text { display: flex; flex-direction: column; }
        .brand-text span:first-child { font-weight: 600; letter-spacing: 0.03em; }
        .brand-text span:last-child { font-size: 0.8rem; color: var(--text-muted); }

        .header-right {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            align-items: flex-end;
        }

        .contact-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            font-size: 0.83rem;
            color: var(--text-muted);
            justify-content: flex-end;
        }

        .contact-inline span {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        /* E-Mail-Text farbig, aber nicht klickbar */
        .contact-inline .js-mail-visible {
            color: var(--accent);
        }

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

        nav a {
            color: var(--text-muted);
            text-decoration: none;
            padding: 0.38rem 0.9rem;
            border-radius: 999px;
            border: 1px solid transparent;
            background: transparent;
        }

        nav a:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: var(--accent-soft);
        }

        .layout {
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
            gap: 1.5rem;
            align-items: flex-start;
        }

        .card {
            border-radius: var(--radius-xl);
            background: var(--card);
            border: 1px solid var(--border);
            padding: 1.6rem 1.5rem;
            box-shadow: var(--shadow-soft);
        }

        h1 {
            font-size: 1.7rem;
            margin: 0 0 0.8rem;
        }

        h2 {
            font-size: 1.1rem;
            margin: 0 0 0.6rem;
        }

        p {
            margin: 0 0 0.6rem;
            font-size: 0.92rem;
            color: var(--text-muted);
        }

        form {
            margin-top: 0.4rem;
        }

        label {
            display: block;
            font-size: 0.85rem;
            font-weight: 500;
            margin: 0.6rem 0 0.2rem;
        }

        input[type="text"] {
            width: 100%;
            padding: 0.55rem 0.65rem;
            border-radius: 10px;
            border: 1px solid var(--border);
            font-size: 0.9rem;
            outline: none;
            background: #f9fafb;
        }

        input[type="text"]:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 1px var(--accent-soft);
            background: #ffffff;
        }

        .hint {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 0.15rem;
        }

        .actions {
            margin-top: 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
        }

        button[type="submit"] {
            border-radius: 999px;
            padding: 0.55rem 1.2rem;
            border: 1px solid transparent;
            font-size: 0.9rem;
            cursor: pointer;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: #ffffff;
            font-weight: 600;
            box-shadow: 0 10px 18px rgba(37, 99, 235, 0.35);
        }

        button[type="submit"]:hover {
            filter: brightness(1.05);
        }

        .small-link {
            font-size: 0.82rem;
        }

        .small-link a {
            color: var(--accent);
            text-decoration: none;
        }

        .small-link a:hover {
            text-decoration: underline;
        }

        footer {
            margin-top: 2rem;
            padding: 1rem 1.5rem 1.4rem;
            font-size: 0.78rem;
            color: var(--text-muted);
            border-top: 1px solid #e5e7eb;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(6px);
        }

        footer a {
            color: var(--accent);
            text-decoration: none;
        }
        footer a:hover { text-decoration: underline; }

        @media (max-width: 920px) {
            header {
                flex-direction: column;
                align-items: flex-start;
            }
            .header-right { align-items: flex-start; }
            .contact-inline { justify-content: flex-start; }
        }

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

        @media (max-width: 520px) {
            .page { padding: 1rem; }
            header { border-radius: 18px; padding: 0.8rem 1rem; }
            .card { padding: 1.2rem 1.1rem; }
        }

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

.noscript-hinweis {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    font-size: 0.8rem;
}
