/**
 * Crohniq – globale Styles
 * Helle, luftige Glas-Ästhetik: Morgendunst, Schweizer Präzision, digitale Ordnung.
 * Systemfonts, dezente Hover-Zustände, keine grellen Neon-Effekte.
 */

/* --- CSS-Variablen --- */
:root {
    --bg-1: #10202a;
    --bg-2: #163747;
    --bg-3: #d9f6ff;
    --glass: rgba(255, 255, 255, 0.14);
    --glass-strong: rgba(255, 255, 255, 0.22);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-main: #f7fbff;
    --text-soft: rgba(247, 251, 255, 0.78);
    --cyan: #79e6ff;
    --mint: #9ff5d4;
    --gold: #ffd98a;
    --shadow: rgba(5, 20, 30, 0.28);

    /* Abgeleitet (Kompatibilität mit bestehenden Klassen) */
    --text-primary: var(--text-main);
    --text-muted: rgba(247, 251, 255, 0.72);
    --text-faint: rgba(247, 251, 255, 0.52);
    --accent: var(--cyan);
    --accent-soft: rgba(121, 230, 255, 0.22);
    --accent-border: rgba(121, 230, 255, 0.45);
    --gold-soft: rgba(255, 217, 138, 0.18);
    --glass-bg: var(--glass);
    --radius-lg: 22px;
    --radius-md: 14px;
    --shadow-soft: 0 28px 56px var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    --shadow-card-hover: 0 24px 52px rgba(5, 25, 38, 0.22), 0 0 0 1px rgba(121, 230, 255, 0.12);
    --content-max: 1180px;
    --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --transition: 0.22s ease;
    --blur-glass: 22px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.55;
    color: var(--text-main);
    background-color: var(--bg-1);
    /* Tiefe: dunkles Blaugrün → Nachtblau → Petrol/Eis (ohne „Keller“-Schwärze) */
    background-image:
        radial-gradient(ellipse 95% 75% at 5% 8%, rgba(121, 230, 255, 0.2), transparent 58%),
        radial-gradient(ellipse 80% 60% at 100% 18%, rgba(159, 245, 212, 0.14), transparent 55%),
        radial-gradient(ellipse 85% 55% at 70% 96%, rgba(255, 217, 138, 0.09), transparent 52%),
        linear-gradient(
            158deg,
            #0a1a24 0%,
            #0e2430 14%,
            var(--bg-1) 32%,
            var(--bg-2) 58%,
            #1a4d62 78%,
            rgba(100, 165, 188, 0.42) 100%
        );
    background-attachment: fixed;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

a:hover {
    color: var(--mint);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    z-index: 1000;
    color: var(--text-main);
}

.wrap {
    width: 100%;
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* --- Header: helles Glas, klare Lesbarkeit --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 32px rgba(5, 20, 30, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.25rem;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-main);
    font-weight: 650;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand:hover {
    color: var(--text-main);
    opacity: 0.95;
}

.brand-logo {
    border-radius: 10px;
    filter: drop-shadow(0 2px 8px rgba(121, 230, 255, 0.15));
}

.brand-text {
    font-size: 1.08rem;
}

.nav-main ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.35rem;
    justify-content: flex-end;
}

.nav-main a {
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 520;
    padding: 0.4rem 0;
}

.nav-main a:hover {
    color: var(--text-main);
}

/* --- Hero: zentrale helle Glasfläche --- */
.hero {
    max-height: 80vh;
    display: flex;
    align-items: center;
    padding: 3rem 0 2.5rem;
}

.hero-inner {
    width: 100%;
}

.hero-glass {
    padding: 2.5rem 2.75rem;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow:
        var(--shadow-soft),
        0 0 80px rgba(121, 230, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
}

.hero-eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    margin: 0 0 1rem;
    font-size: clamp(1.55rem, 3.2vw, 2.4rem);
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 36ch;
    color: #ffffff;
    text-shadow: 0 0 48px rgba(121, 230, 255, 0.12), 0 2px 24px rgba(5, 20, 30, 0.15);
}

.hero-lead {
    margin: 0 0 1.85rem;
    font-size: 1.06rem;
    color: rgba(247, 251, 255, 0.88);
    max-width: 52ch;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.4rem;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn--primary {
    background: linear-gradient(135deg, rgba(159, 245, 212, 0.55), rgba(121, 230, 255, 0.42));
    border-color: rgba(255, 255, 255, 0.42);
    color: #062028;
    box-shadow:
        0 8px 28px rgba(5, 30, 40, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.btn--primary:hover {
    background: linear-gradient(135deg, rgba(184, 250, 220, 0.65), rgba(140, 235, 255, 0.52));
    border-color: rgba(255, 255, 255, 0.55);
    color: #041820;
    transform: translateY(-1px);
    box-shadow: 0 12px 36px rgba(5, 30, 40, 0.22);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: var(--glass-border);
    color: var(--text-main);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--text-main);
    transform: translateY(-1px);
}

/* --- Glas-Panels (allgemein) --- */
.glass-panel {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.09));
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* --- Sektionen: mehr Luft, weiche Trennung --- */
.section {
    padding: 3.25rem 0;
}

.section-head {
    margin-bottom: 2rem;
}

.section-title {
    margin: 0 0 0.55rem;
    font-size: clamp(1.38rem, 2vw, 1.72rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--text-main);
    text-shadow: 0 1px 20px rgba(5, 20, 30, 0.08);
}

.section-title--inline {
    margin-bottom: 1.35rem;
}

.section-intro {
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 44ch;
    line-height: 1.55;
}

.section--apps {
    padding-top: 2.25rem;
}

.section--vision {
    padding-top: 3.5rem;
}

.section--philosophie {
    padding-top: 3.5rem;
    padding-bottom: 3.25rem;
}

.section--kontakt {
    padding-top: 3.25rem;
}

.section--legal {
    padding: 2rem 0;
}

.section--legal:last-of-type {
    padding-bottom: 3rem;
}

/* --- Grids --- */
.grid {
    display: grid;
    gap: 1.35rem;
}

.grid--2 {
    grid-template-columns: 1fr;
}

.grid--3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- App-Karten --- */
.glass-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(5, 22, 35, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.glass-card:hover {
    border-color: rgba(121, 230, 255, 0.38);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

/* Fertige Apps: etwas stärkeres Licht */
.glass-card--featured {
    min-height: 0;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.11));
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow:
        0 22px 50px rgba(5, 22, 35, 0.16),
        0 0 48px rgba(121, 230, 255, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.glass-card--featured:hover {
    box-shadow:
        0 28px 56px rgba(5, 22, 35, 0.2),
        0 0 56px rgba(159, 245, 212, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

/* Produktbild: Glasrahmen, feste Höhe für Raster — echte Screenshots mit object-fit: cover */
.app-image-wrap {
    margin: 0;
    padding: 0.7rem 0.75rem 0;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.app-image {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 12px 36px rgba(5, 22, 35, 0.14);
    background: rgba(10, 28, 38, 0.25);
}

@media (min-width: 768px) {
    .app-image {
        height: 220px;
    }
}

.app-image-hint {
    margin: 0;
    padding: 0.42rem 1rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(247, 251, 255, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card__body {
    padding: 1.1rem 1.35rem 1.45rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.glass-card__body .status-pill {
    margin-bottom: 0.45rem;
}

.glass-card__head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
}

.app-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 8px 22px rgba(5, 22, 35, 0.18);
    background: rgba(10, 28, 38, 0.25);
    object-fit: cover;
}

.glass-card__head-meta {
    min-width: 0;
    flex: 1;
}

.glass-card__head-meta .glass-card__title {
    margin-bottom: 0;
}

.glass-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.35rem;
}

.btn--card-primary {
    align-self: flex-start;
    padding: 0.58rem 1.15rem;
    font-size: 0.86rem;
    font-weight: 600;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(159, 245, 212, 0.42), rgba(121, 230, 255, 0.32));
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: #052028;
    box-shadow: 0 6px 22px rgba(5, 30, 40, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn--card-primary:hover {
    background: linear-gradient(135deg, rgba(184, 250, 220, 0.55), rgba(140, 235, 255, 0.42));
    color: #041820;
    transform: translateY(-1px);
}

.btn--card-muted {
    align-self: flex-start;
    display: inline-flex;
    padding: 0.58rem 1.15rem;
    font-size: 0.86rem;
    font-weight: 600;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(247, 251, 255, 0.58);
    cursor: default;
    user-select: none;
}

.glass-card__title {
    margin: 0 0 0.4rem;
    font-size: 1.15rem;
    font-weight: 650;
    color: var(--text-main);
}

.glass-card__claim {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--cyan);
    letter-spacing: 0.01em;
}

.glass-card__desc {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex: 1;
}

.status-pill {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

/* Verfügbar: helles Mint/Cyan */
.status-pill--available {
    background: linear-gradient(135deg, rgba(159, 245, 212, 0.35), rgba(121, 230, 255, 0.22));
    border-color: rgba(121, 230, 255, 0.45);
    color: #063542;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* In Entwicklung: weiches Cyan, ruhig */
.status-pill--development {
    background: rgba(121, 230, 255, 0.16);
    border-color: rgba(121, 230, 255, 0.35);
    color: rgba(247, 251, 255, 0.88);
}

/* Vision: dezentes Gold/Amber */
.status-pill--vision {
    background: linear-gradient(135deg, rgba(255, 217, 138, 0.28), rgba(255, 217, 138, 0.1));
    border-color: rgba(255, 217, 138, 0.42);
    color: #5c4420;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Später: neutrales Silber/Glas */
.status-pill--later {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
    color: rgba(247, 251, 255, 0.72);
}

/* App Store (unter „Mehr erfahren“ bei fertigen Apps) */
.glass-card__stores {
    padding-top: 0.75rem;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.store-access {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
}

.btn--store {
    padding: 0.55rem 1.15rem;
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--text-main);
    border-radius: 999px;
    border-style: solid;
    border-width: 1px;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn--store:hover {
    background: rgba(121, 230, 255, 0.2);
    border-color: rgba(121, 230, 255, 0.45);
    color: var(--text-main);
    transform: translateY(-1px);
}

.store-todo {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--text-faint);
}

.store-access .store-todo {
    flex: 1;
    min-width: 220px;
}

.store-todo code {
    font-size: 0.76rem;
    padding: 0.12rem 0.38rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(247, 251, 255, 0.75);
}

.store-qr {
    margin: 0;
    width: 140px;
    display: grid;
    justify-items: center;
    gap: 0.45rem;
}

.store-qr img {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #ffffff;
    padding: 0.4rem;
    box-shadow: 0 10px 28px rgba(4, 20, 28, 0.25);
}

.store-qr figcaption {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(247, 251, 255, 0.64);
}

.store-qr--placeholder {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.35);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.04) 0,
            rgba(255, 255, 255, 0.04) 8px,
            rgba(255, 255, 255, 0.08) 8px,
            rgba(255, 255, 255, 0.08) 16px
        );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.65rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.store-qr--placeholder span {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(247, 251, 255, 0.62);
}

.store-qr--placeholder strong {
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: rgba(247, 251, 255, 0.92);
}

@media (max-width: 560px) {
    .store-access {
        flex-direction: column;
    }

    .store-qr,
    .store-qr--placeholder {
        width: 130px;
        height: 130px;
    }

    .store-qr img {
        width: 130px;
        height: 130px;
    }
}

/* --- Philosophie --- */
.philosophie-block {
    padding: 2.25rem 2.5rem;
}

.philosophie-quote {
    margin: 0;
    padding: 0;
    border: none;
}

.philosophie-quote p {
    margin: 0;
    font-size: clamp(1.02rem, 1.5vw, 1.14rem);
    line-height: 1.68;
    color: var(--text-muted);
    font-style: normal;
}

/* --- Kontakt & Legal --- */
.kontakt-panel {
    padding: 1.65rem 1.85rem;
    max-width: 560px;
}

.kontakt-line {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--text-soft);
}

.kontakt-note {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-faint);
}

.legal-panel {
    padding: 1.45rem 1.65rem;
}

.legal-title {
    margin: 0 0 0.75rem;
    font-size: 1.08rem;
    font-weight: 650;
    color: var(--text-main);
}

.legal-panel p {
    margin: 0 0 0.65rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.legal-panel p:last-child {
    margin-bottom: 0;
}

.legal-muted {
    font-size: 0.82rem !important;
    color: var(--text-faint) !important;
}

.legal-todo {
    margin: 0.75rem 0 0 !important;
    padding: 0.65rem 0.9rem;
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    color: rgba(92, 68, 32, 0.92) !important;
    background: rgba(255, 217, 138, 0.14);
    border: 1px dashed rgba(255, 200, 120, 0.35);
    border-radius: var(--radius-md);
}

/* --- Navigation: dezenter Datenschutz-Link (Unterseite) --- */
.nav-main__soft a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(247, 251, 255, 0.52);
}

.nav-main__soft a:hover {
    color: var(--cyan);
}

/* Startseite: Kurz-Hinweis mit Link zur vollen Erklärung */
.wrap--privacy-teaser {
    max-width: 640px;
}

.legal-teaser {
    padding: 1.5rem 1.75rem;
}

.legal-teaser__text {
    margin: 0 0 1.1rem;
    font-size: 0.96rem;
    line-height: 1.62;
    color: var(--text-muted);
}

.legal-teaser__action {
    margin: 0;
}

/* --- Unterseite Datenschutz (datenschutz.php) --- */
.page-sub {
    padding: 2rem 0 3.5rem;
}

.wrap--privacy {
    max-width: 920px;
}

.privacy-doc {
    padding: 2.35rem 2.6rem 2.15rem;
}

.privacy-doc__header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-doc__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--text-main);
    line-height: 1.2;
}

.privacy-doc__subtitle {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-soft);
    line-height: 1.45;
}

.privacy-doc__meta {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.privacy-section--highlight {
    margin-bottom: 1.75rem;
    padding: 1.15rem 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.privacy-section__label {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(247, 251, 255, 0.55);
}

.privacy-section {
    margin: 0;
    padding: 1.65rem 0 1.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section--last {
    padding-bottom: 0.25rem;
    border-bottom: none;
}

.privacy-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.privacy-section__title {
    margin: 0 0 0.85rem;
    font-size: 1.12rem;
    font-weight: 650;
    letter-spacing: -0.01em;
    color: var(--text-main);
    line-height: 1.35;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.45rem 0.65rem;
}

.privacy-section__nr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.65rem;
    height: 1.65rem;
    padding: 0 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(6, 32, 42, 0.92);
    background: linear-gradient(135deg, rgba(159, 245, 212, 0.45), rgba(121, 230, 255, 0.35));
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.privacy-section p {
    margin: 0 0 0.85rem;
    font-size: 0.98rem;
    line-height: 1.62;
    color: rgba(247, 251, 255, 0.82);
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    margin: 0 0 0.9rem;
    padding-left: 1.2rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(247, 251, 255, 0.82);
}

.privacy-list li {
    margin-bottom: 0.35rem;
    padding-left: 0.15rem;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.privacy-address {
    margin: 0 0 0.85rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(247, 251, 255, 0.88);
}

/* Platzhalter Anschrift / E-Mail — im PHP-Quellcode Variablen $ds_adresse / $ds_email */
.privacy-placeholder {
    display: inline;
    padding: 0.1rem 0.35rem;
    border-radius: 6px;
    background: rgba(255, 217, 138, 0.12);
    border: 1px dashed rgba(255, 200, 120, 0.35);
    color: rgba(255, 230, 190, 0.95);
    word-break: break-word;
}

.privacy-back {
    margin: 2rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-back__link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-soft);
}

.privacy-back__link:hover {
    color: var(--cyan);
}

@media (max-width: 599px) {
    .privacy-doc {
        padding: 1.5rem 1.25rem 1.35rem;
    }

    .privacy-section__title {
        font-size: 1.05rem;
    }

    .privacy-section p,
    .privacy-list {
        font-size: 0.94rem;
    }
}

/* --- Footer --- */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 1.75rem 0 2.25rem;
    margin-top: 0;
}

.site-footer--premium {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(10, 28, 38, 0.35));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-footer--premium::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(121, 230, 255, 0.35) 35%,
        rgba(255, 217, 138, 0.28) 65%,
        transparent
    );
    pointer-events: none;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    align-items: flex-start;
}

@media (min-width: 600px) {
    .footer-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-brand strong {
    font-size: 1.02rem;
    letter-spacing: 0.02em;
    color: var(--text-main);
}

.footer-tag {
    font-size: 0.84rem;
    color: var(--text-faint);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.35rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-soft);
}

.footer-links a:hover {
    color: var(--mint);
}

/* --- Mobile --- */
@media (max-width: 599px) {
    .nav-main ul {
        gap: 0.5rem 0.85rem;
    }

    .nav-main a {
        font-size: 0.84rem;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .hero {
        max-height: none;
        padding-top: 1.75rem;
    }

    .hero-glass {
        padding: 1.65rem 1.35rem;
    }

    .section {
        padding: 2.5rem 0;
    }
}
