/**
 * ============================================================================
 * GLASSMORPHISM LANDING PAGE STYLESHEET
 * ============================================================================
 *
 * Beschreibung:
 * Moderne, responsive Landing Page mit Glassmorphism-Design-Elementen,
 * animierten Hintergrund-Blobs und glasartigen UI-Komponenten.
 *
 * Hauptmerkmale:
 * - Dunkles Farbschema mit transparenten Glaseffekten
 * - Animierte, fließende Hintergrund-Blobs
 * - Responsive Navigation mit Sticky Header
 * - Modernes Grid-System für Features und Content
 * - Barrierefreie Form-Elemente
 * - Optimiert für alle Bildschirmgrößen
 *
 * Browser-Kompatibilität:
 * - Chrome/Edge 88+
 * - Firefox 94+
 * - Safari 15+
 *
 * @version 2.1
 * @author devfour UG (haftungsbeschränkt)
 * @copyright 2025 devfour UG (haftungsbeschränkt), Troisdorf
 * @license Alle Rechte vorbehalten
 * @contact contact@devfour.de
 * ============================================================================
 */


/* ============================================================================
   CSS RESET & GRUNDLEGENDE STYLES
   ============================================================================ */

/**
 * Globales Box-Modell und Spacing-Reset
 * Stellt sicher, dass Padding und Border in der Elementgröße enthalten sind
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/**
 * Body-Konfiguration
 * Definiert Schriftart, Hintergrund und grundlegendes Layout
 */
body {
    font-family: "sawton_regular", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg-main);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/**
 * Sanftes Scroll-Verhalten für Anker-Links
 */
html {
    scroll-behavior: smooth;
}


/* ============================================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================================ */

/**
 * Zentrale Farb- und Style-Variablen
 * Ermöglicht konsistentes Design und einfache Theme-Anpassungen
 */
:root {
    /* Hintergrundfarben */
    --bg-main: #000;
    --bg-glass: rgba(255, 255, 255, 0.07);
    --bg-glass-strong: rgba(255, 255, 255, 0.12);

    /* Textfarben */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.65);

    /* Akzentfarben */
    --accent-gradient: linear-gradient(135deg, #fff, #e0e7ff);
    --accent-glow: rgba(255, 255, 255, 0.25);

    /* Rahmen und Schatten */
    --border-glass: rgba(255, 255, 255, 0.18);
    --shadow-elevated: 0 10px 28px -6px rgba(0, 0, 0, 0.45);
}


/* ============================================================================
   ANIMIERTE HINTERGRUND-ELEMENTE
   ============================================================================ */

/**
 * Container für animierte Blob-Elemente
 * Fixed positioning sorgt für konstanten Hintergrund beim Scrollen
 */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/**
 * Basis-Styling für Blob-Elemente
 * Erzeugt weiche, organische Formen mit Blur-Effekt
 */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(5rem);
    opacity: 0.15;
    z-index: -1;
    will-change: transform;
}

/* Individuelle Blob-Konfigurationen mit unterschiedlichen Größen und Farben */
.blob-1 {
    --blob-size: 24vw;
    width: var(--blob-size);
    height: var(--blob-size);
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    top: 10vh;
    left: 10vw;
    animation: float1 25s infinite ease-in-out;
}

.blob-2 {
    --blob-size: 20vw;
    width: var(--blob-size);
    height: var(--blob-size);
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    top: 60vh;
    right: 10vw;
    animation: float2 30s infinite ease-in-out;
}

.blob-3 {
    --blob-size: 18vw;
    width: var(--blob-size);
    height: var(--blob-size);
    background: linear-gradient(45deg, #45b7d1, #96c93d);
    bottom: 20vh;
    left: 20vw;
    animation: float3 22s infinite ease-in-out;
}

.blob-4 {
    --blob-size: 30vw;
    width: var(--blob-size);
    height: var(--blob-size);
    background: linear-gradient(45deg, #f093fb, #f5576c);
    top: 30vh;
    right: 30vw;
    animation: float4 28s infinite ease-in-out;
}

.blob-5 {
    --blob-size: 15vw;
    width: var(--blob-size);
    height: var(--blob-size);
    background: linear-gradient(45deg, #ffecd2, #fcb69f);
    bottom: 40vh;
    right: 20vw;
    animation: float5 20s infinite ease-in-out;
}


/* ============================================================================
   KEYFRAME ANIMATIONEN
   ============================================================================ */

/**
 * Float-Animationen für Blob-Elemente
 * Erzeugt organische, fließende Bewegungen mit Rotation und Skalierung
 */

@keyframes float1 {
    0% { transform: translate(0px, 0px) rotate(0deg) scale(1); }
    25% { transform: translate(60px, -40px) rotate(90deg) scale(1.1); }
    50% { transform: translate(-30px, 50px) rotate(180deg) scale(0.9); }
    75% { transform: translate(40px, -20px) rotate(270deg) scale(1.05); }
    100% { transform: translate(0px, 0px) rotate(360deg) scale(1); }
}

@keyframes float2 {
    0% { transform: translate(0px, 0px) rotate(0deg) scale(1); }
    20% { transform: translate(-50px, 30px) rotate(72deg) scale(1.15); }
    40% { transform: translate(70px, -60px) rotate(144deg) scale(0.85); }
    60% { transform: translate(-20px, -30px) rotate(216deg) scale(1.1); }
    80% { transform: translate(30px, 40px) rotate(288deg) scale(0.95); }
    100% { transform: translate(0px, 0px) rotate(360deg) scale(1); }
}

@keyframes float3 {
    0% { transform: translate(0px, 0px) rotate(0deg) scale(1); }
    30% { transform: translate(80px, 20px) rotate(108deg) scale(0.9); }
    60% { transform: translate(-40px, -50px) rotate(216deg) scale(1.2); }
    90% { transform: translate(-10px, 30px) rotate(324deg) scale(0.8); }
    100% { transform: translate(0px, 0px) rotate(360deg) scale(1); }
}

@keyframes float4 {
    0% { transform: translate(0px, 0px) rotate(0deg) scale(1); }
    15% { transform: translate(-70px, -40px) rotate(54deg) scale(1.1); }
    35% { transform: translate(50px, 60px) rotate(126deg) scale(0.9); }
    55% { transform: translate(-30px, 20px) rotate(198deg) scale(1.15); }
    75% { transform: translate(60px, -30px) rotate(270deg) scale(0.85); }
    100% { transform: translate(0px, 0px) rotate(360deg) scale(1); }
}

@keyframes float5 {
    0% { transform: translate(0px, 0px) rotate(0deg) scale(1); }
    40% { transform: translate(40px, -70px) rotate(144deg) scale(1.05); }
    70% { transform: translate(-60px, 10px) rotate(252deg) scale(0.95); }
    100% { transform: translate(0px, 0px) rotate(360deg) scale(1); }
}

/**
 * Slide-In Animation von unten
 * Wird für Card-Elemente beim initialen Laden verwendet
 */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideIn {
    0% {
        opacity: 1;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* ============================================================================
   LAYOUT & CONTAINER
   ============================================================================ */

/**
 * Haupt-Container für Content
 * Zentriert Inhalte und definiert maximale Breite
 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}


/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */

/**
 * Kombinierter Header-Container
 * Sticky positioning für konstante Sichtbarkeit beim Scrollen
 */
.combined-header {
    position: sticky;
    top: 0;
    z-index: 100;
    contain: layout style;
}

/**
 * Backdrop-Filter-Effekt für Header
 * Erzeugt verschwommenen Hintergrund mit Farbverlauf
 */
.combined-header-blur {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
    mask: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,1) 100%);
}

/**
 * Haupt-Header mit Logo und Login-Button
 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: transparent;
    max-width: 1200px;
    margin: 0 auto;
}

.header .logo {
    display: flex;
    align-items: center;
    font-weight: 600;
}

/**
 * Logo-Bild im Header
 */
.header-logo-img {
    height: 3em;
    border-radius: 0.5rem;
    width: auto;
    display: block;
}

/**
 * Login-Button mit Glasmorphism-Effekt
 */
.header .login-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 3.125rem;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    line-height: 1;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    text-decoration: none;
}

.header .login-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
}

/**
 * Navigationsleiste mit Pill-Buttons
 */
.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0.5rem 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0.75rem;
}

/**
 * Versteckte Elemente in Standard-Navigation
 * Werden nur im merged-Modus angezeigt
 */
.navigation .logo,
.navigation .login-btn {
    display: none;
}

.navigation.merged {
    display: grid;
    grid-template-columns: 1fr auto 1fr;  /* Gleichgroße äußere Spalten */
    align-items: center;
    padding: 0.5rem 1.25rem;
    gap: 1rem;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navigation.merged .logo {
    display: flex;
    justify-self: start;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
}

.navigation.merged .login-btn {
    display: flex;
    justify-self: end;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 3.125rem;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.navigation.merged .logo,
.navigation.merged .login-btn {
    animation: fadeSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navigation.merged .login-btn:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.2);
}

.navigation.merged .nav-pills {
    justify-self: center;
    grid-column: 2;
    animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navigation.merged .nav-pill {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

/**
 * Navigation Pill Container
 * Glasmorphism-Container für Navigations-Links
 */
.nav-pills {
    display: inline-flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1.875rem);
    -webkit-backdrop-filter: blur(1.875rem);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3.125rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 2;
    width: max-content;
    max-width: 100%;
}

.nav-pills::-webkit-scrollbar {
    display: none;
}

/**
 * Einzelner Navigation-Link (Pill)
 */
.nav-pill {
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 2.5rem;
    transition: color 0.3s ease, background 0.3s ease;
    font-weight: 500;
    font-size: 0.875rem;
    white-space: nowrap;
    position: relative;
}

.nav-pill:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-pill.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

/**
 * Mobiler Login-Button (neben der Pillbar)
 * Wird nur auf kleinen Bildschirmen angezeigt
 */
.mobile-login-btn {
    display: none;
    width: 2.75rem;  /* Feste Größe, passend zur Pillbar */
    height: 2.75rem;
    padding: 0;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    /* align-items: center vom Parent zentriert den Button vertikal */
}

.mobile-login-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
}

.mobile-login-btn i {
    line-height: 1;
}

/**
 * Zusätzliche Button-Styles für Menu und Login
 */
.menu-button,
.login-button.invert {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.6rem 1.1rem;
    border-radius: 2rem;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(0.75rem);
    -webkit-backdrop-filter: blur(0.75rem);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-button:hover,
.login-button.invert:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.selected-button {
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.selected-button:hover {
    background: rgba(255, 255, 255, 0.32);
}

.mobile-login-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
}

.mobile-login-btn i {
    line-height: 1;
}


/* ============================================================================
   HAUPTINHALT & CARDS
   ============================================================================ */

/**
 * Haupt-Content-Container
 */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

/**
 * Glass-Card Komponente
 * Wiederverwendbare Card mit Glasmorphism-Effekt
 */
.glass-card {
    padding: 1.875rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0.9375rem);
    -webkit-backdrop-filter: blur(0.9375rem);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.25rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    color: white;
    animation: slideInUp 0.6s ease-out;
    will-change: transform;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.9375rem;
    background: linear-gradient(135deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.9375rem;
    color: white;
}

.glass-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
}

.notice-card-center{
    max-width: 30em;
    margin-left: auto;
    margin-right: auto;
}

/**
 * Gestaffelte Animation für mehrere Cards
 */
.glass-card:nth-child(2) {
    animation-delay: 0.2s;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


/* ============================================================================
   HERO-SECTION
   ============================================================================ */

/**
 * Hero-Bereich mit zentriertem Content
 */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff, #dbeafe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.hero-section p.hero-subline {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 50ch;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================================================================
   INTRO-SECTION
   ============================================================================ */

/**
 * Hero-Bereich mit zentriertem Content
 */
.intro-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-section h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff, #dbeafe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.intro-section p {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
    line-height: 1.5;
}


/* ============================================================================
   SPLIT-SECTION (TEXT-BILD-LAYOUTS)
   ============================================================================ */

/**
 * Zweispaltiges Layout für Text und Bild
 * Automatisch responsive mit Flex-Wrap
 */
.split-section {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.25rem;
}

/**
 * Umgekehrte Reihenfolge (Bild links, Text rechts)
 */
.split-section.reverse {
    flex-direction: row-reverse;
}

.split-section .text-block {
    flex: 1 1 420px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.split-section .text-block h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.split-section .text-block p {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.split-section .image-block {
    flex: 1 1 340px;
    display: flex;
    justify-content: center;
}

.split-section .image-block img {
    width: 100%;
    max-width: 420px;
    border-radius: 1rem;
    object-fit: cover;
    filter: brightness(0.85);
}


/* ============================================================================
   BUTTONS & CALL-TO-ACTION
   ============================================================================ */

/**
 * Primärer Glasmorphism-Button
 */
.glass-button,
.glass-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    border-radius: 3rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(0.75rem);
    -webkit-backdrop-filter: blur(0.75rem);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.glass-button {
    background: rgba(255, 255, 255, 0.18);
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

/**
 * Sekundärer Button mit weniger Kontrast
 */
.glass-button-secondary {
    background: rgba(255, 255, 255, 0.08);
}

.glass-button-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/**
 * Standard CTA-Button
 */
.cta-button {
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    will-change: transform;
}

.cta-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


/* ============================================================================
   FEATURE-KOMPONENTEN
   ============================================================================ */

/**
 * Legacy Feature Grid
 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.feature-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/**
 * Moderneres Feature Grid
 */
.feature-grid-new {
    display: grid;
    gap: 1.5rem;
    margin: 3rem auto 0;
    max-width: 1200px;
    padding: 0 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/**
 * Feature Card mit Hover-Effekt
 */
.feature-card {
    padding: 1.5rem;
    border-radius: 1.1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

/**
 * Leuchteffekt beim Hover
 */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.15), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px -4px rgba(0, 0, 0, 0.45);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
}

.feature-card p {
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}


/* ============================================================================
   INFO-ITEMS
   ============================================================================ */

/**
 * Container für Info-Cards
 */
.info-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

/**
 * Individuelle Info-Card
 */
.info-item {
    flex: 1 1 300px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(0.85rem);
    -webkit-backdrop-filter: blur(0.85rem);
    padding: 1.25rem 1.15rem 1.35rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.status-group::before,
.info-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.status-group:hover,
.info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.45);
}

.status-group:hover::before,
.info-item:hover::before {
    opacity: 1;
}

.info-item h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
    letter-spacing: 0.5px;
}

.info-item p {
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.info-item .actions {
    margin-top: 0.5rem;
}

.info-item .actions a {
    margin-right: 0.5rem;
}


/* ============================================================================
   CHECKLISTEN
   ============================================================================ */

/**
 * Container für Checklistenelemente
 */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

/**
 * Einzelnes Checklistenelement mit Icon
 */
.check-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.check-item img {
    width: 26px;
    height: 26px;
    filter: invert(1) brightness(1.2);
}

.check-item i {
    font-size: 1rem;
    color: #4ade80;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    min-height: 1.5rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-item p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.85);
}


/* ============================================================================
   ÜBERSCHRIFTEN & SECTION TITLES
   ============================================================================ */

/**
 * Einheitliche Überschriftenfarbe
 */
h1, h2, h3, h4, h5, h6 {
    color: #fff;
}

/**
 * Zentrierter Section-Titel mit Gradient
 */
.section-title-center {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 4rem 0 2rem;
    background: linear-gradient(135deg, #fff, #e0e7ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ============================================================================
   FAQ-SECTION
   ============================================================================ */

/**
 * Hauptcontainer für FAQ
 */
.faq-section {
    max-width: 1200px;
    margin: 4rem auto 5rem;
    padding: 0 1.25rem;
}

.faq-intro {
    text-align: center;
    max-width: 60ch;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

/**
 * Grid-Layout für FAQ-Karten
 */
.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

/**
 * Einzelne FAQ-Card
 */
.faq-item {
    flex: 1 1 260px;
    max-width: 320px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(0.85rem);
    -webkit-backdrop-filter: blur(0.85rem);
    padding: 1.25rem 1.15rem 1.35rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.15), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.45);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    color: #fff;
}

.faq-item p {
    font-size: 0.8rem;
    line-height: 1.45;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}


/* ============================================================================
   ROADMAP-TABELLE
   ============================================================================ */

/**
 * Container für Roadmap
 */
.roadmap-container {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.25rem;
}

/**
 * Tabelle im Glasmorphism-Style
 */
.roadmap-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    border: 1px solid var(--border-glass);
    border-radius: 1rem;
    overflow: hidden;
}

.roadmap-table th,
.roadmap-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.roadmap-table th {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

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

.roadmap-table td {
    color: rgba(255, 255, 255, 0.85);
}

.roadmap-table td ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.roadmap-table td ul li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.roadmap-table td ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
}


/* ============================================================================
   FORMULARE
   ============================================================================ */
form p {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/**
 * Zweispaltiges Formular-Layout
 */
.glass-split-form {
    display: flex;
    background: var(--bg-glass);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    border: 1px solid var(--border-glass);
    width: 100%;
    margin: 3rem auto;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

.glass-split-form-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 3rem;
    color: #fff;
}

.glass-split-form-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}

/**
 * Trennlinie zwischen Formular-Spalten
 */
.glass-split-form-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.glass-split-form-right > p {
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
    text-align: center;
}

/**
 * Standard-Formular-Elemente
 */
form {
    max-width: 100%;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

form input[type="text"],
form input[type="email"],
form input[type="number"],
form select,
form textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

form textarea {
    min-height: 120px;
    font-family: inherit;
    resize: none;
}

form input::placeholder,
form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/**
 * Custom Select Dropdown
 */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
    display: block;
}


.custom-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 0;
    display: block;
}

.custom-select-wrapper::after {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f0d7';
    position: absolute;
    right: 1rem;
    top: 0;
    bottom: 0;
    height: fit-content;
    margin: auto 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}


/* ============================================================================
   LOGIN-FORMULAR
   ============================================================================ */

/**
 * Container für zentriertes Login-Formular
 */
.login-glass-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 2rem;
}

/**
 * Login-Formular im Glasmorphism-Style
 */
.login-glass-form {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-elevated);
    color: #fff;
}

.login-glass-form h2 {
    margin: 0 0 2rem 0;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-glass-form input {
    width: 100%;
    margin-bottom: 1.25rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-glass-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.login-glass-form input[type="submit"] {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.login-glass-form input[type="submit"]:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.login-glass-form a {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-top: 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.login-glass-form a:hover {
    color: #fff;
    text-decoration: underline;
}


/* ============================================================================
   SPEZIELLE KOMPONENTEN
   ============================================================================ */

/**
 * QR-Code Container
 */
.qr-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    border: 1px solid var(--border-glass);
    border-radius: 1.5rem;
    margin: 2rem auto;
    max-width: fit-content;
}

.qr-code-image {
    max-width: 200px;
    max-height: 200px;
    border-radius: 0.75rem;
    padding: 1rem;
    background: white;
}

.profile-image-medium {
    width: 50%;
    max-width: 10em;
    border-radius: min(0.5rem, 10%);
}

/**
 * Countdown-Anzeige
 */
.countdown-glass {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem;
}

.countdown-glass h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

/**
 * App Download Section
 */
.app-download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 4rem 2rem;
    margin: 3rem auto;
    text-align: center;
}

.app-store-badge {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.9);
}

.app-store-badge:hover {
    transform: translateY(-4px);
    filter: brightness(1);
}

/**
 * Hero-Image mit Overlay
 */
.glass-heading-image {
    position: relative;
    margin: 4rem auto;
    width: min(90vw, 1200px);
    height: min(60vh, 600px);
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid var(--border-glass);
}

.glass-heading-image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glass-heading-image > .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    padding: 2rem;
}

.glass-heading-image .overlay h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.glass-heading-image .overlay p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
    max-width: 600px;
}

/**
 * Overlay
 */
.glass-overview-card {
    position: relative;
    margin: 4rem auto;
    width: min(90vw, 1200px);
    height: min(60vh, 600px);
    min-height: 400px;
    background: var(--bg-glass);
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid var(--border-glass);
}

.glass-overview-card > .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    padding: 2rem;
}

.glass-overview-card .overlay h2 {
    font-weight: 900;
    margin-bottom: 1rem;
    text-align: center;
}

.glass-overview-card .overlay p {
    text-align: center;
    max-width: 800px;
}


/* ============================================================================
   FOOTER
   ============================================================================ */

/**
 * Glasmorphism Footer-Container
 */
.footer-glass-wrapper {
    padding: 2.5rem 1.875rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0.9375rem);
    -webkit-backdrop-filter: blur(0.9375rem);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.25rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    color: white;
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    animation: slideInUp 0.6s ease-out 0.4s;
    animation-fill-mode: backwards;
}

.footer-logo-container {
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 4em;
    border-radius: 0.5rem;
    max-width: 180px;
    height: auto;
}

/**
 * Footer-Links Grid
 */
.footer-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    margin-bottom: 2em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links-column {
    flex: 1;
    text-align: center;
    min-width: 170px;
    margin: 1rem;
}

.footer-links-column p {
    font-weight: 600;
    margin-bottom: 1em;
    color: #fff;
    font-size: 1rem;
}

.footer-links-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-links-column a:hover {
    color: #fff;
    text-decoration: underline;
}

/**
 * Social Media Icons
 */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 350px;
    margin: 2.5em auto;
}

/**
 * Social Media Icons
 */
.footer-social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 350px;
    margin: 2.5em auto;
}

.footer-social-icon {
    text-align: center;
}

.footer-social-icon i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-icon a:hover i {
    color: #fff;
    transform: scale(1.1);
}

.footer-disclaimer-text {
    margin-top: 2em;
}

.footer-disclaimer-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}


/* ============================================================================
   IUBENDA POLICY OVERRIDES
   ============================================================================ */

/**
 * Style-Overrides für eingebettete iubenda Datenschutz-Policies
 */
#iubenda_policy {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

#iubenda_policy .iub_base_container {
    color: rgba(255, 255, 255, 0.9) !important;
}

#iubenda_policy p {
    font-weight: normal !important;
    margin-bottom: 1rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

#iubenda_policy h1,
#iubenda_policy h2,
#iubenda_policy h3,
#iubenda_policy h4,
#iubenda_policy h5,
#iubenda_policy h6 {
    font-family: "Inter", sans-serif !important;
    color: #fff !important;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
}

#iubenda_policy a {
    color: #60a5fa !important;
    text-decoration: underline !important;
    transition: color 0.3s ease;
}

#iubenda_policy a:hover {
    color: #93c5fd !important;
}

#iubenda_policy .box_primary {
    background-color: transparent !important;
}


/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
    /* Deaktiviert alle Animationen */
}

/**
 * Tablet-Ansicht (bis 900px)
 */
@media (max-width: 900px) {
    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

    .split-section .image-block img {
        max-width: 520px;
    }

    .reference-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .glass-split-form {
        flex-direction: column;
    }

    .glass-split-form-right {
        display: none;
    }

    .glass-split-form-left {
        padding: 2rem;
    }
}

/**
 * Mobile-Ansicht (bis 768px)
 */
@media (max-width: 768px) {
    .container {
        padding: 0.9375rem;
    }

    .header {
        display: flex;
        backdrop-filter: none;
        background: transparent;
    }

    .logo-text {
        display: none;
    }

    .nav-pills {
        display: flex;
        padding: 0.5rem;
        justify-content: flex-start;
    }

    .nav-pill {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }

    /* Header auf Mobile: nur Login-Button ausblenden */
    .header {
        display: flex;  /* Header sichtbar lassen */
        justify-content: center;  /* Logo zentrieren */
    }

    .header .login-btn {
        display: none !important;  /* Nur Login-Button ausblenden */
    }

    /* Navigation Styling für Mobile mit Flex Layout */
    .navigation {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
        max-width: 95vw;
        width: fit-content;
        margin: 0 auto;
    }

    /* Logo bleibt im Header, wird nicht in Navigation benötigt */
    .navigation .logo {
        display: none;
    }

    /* Login-Button aus Navigation ausblenden (nicht der mobile) */
    .navigation .login-btn {
        display: none;
    }

    /* Pillbar nimmt nur benötigten Platz */
    .navigation .nav-pills {
        width: max-content;
        max-width: calc(95vw - 4rem);
        margin-inline: 0;
    }

    /* Mobile Login-Button einblenden */
    .mobile-login-btn {
        display: flex !important;
    }

    /* Merged State auf Mobile */
    .navigation.merged {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        max-width: 95vw;
        width: fit-content;
        margin: 0 auto;
    }

    .navigation.merged .logo {
        display: none;
    }

    .navigation.merged .login-btn {
        display: none !important;
    }

    .navigation.merged .nav-pills {
        width: max-content;
        max-width: calc(95vw - 4rem);
        margin-inline: 0;
    }

    .navigation.merged .mobile-login-btn {
        display: flex !important;
    }


    .glass-card {
        padding: 1.25rem;
    }

    .glass-card h1 {
        font-size: 2rem;
    }

    .glass-card h2 {
        font-size: 1.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 0.9375rem;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .hero-section {
        padding: 3.5rem 1rem 2.5rem;
    }

    .split-section {
        gap: 2rem;
        margin: 2.5rem auto;
    }

    .split-section .text-block h2 {
        font-size: 1.7rem;
    }

    .section-title-center {
        font-size: 2rem;
        margin: 3rem 0 1.5rem;
    }

    .reference-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .reference-badge {
        flex: 1 1 100% !important;
        width: 100%;
        max-width: 100%;
    }

    .badge-company {
        font-size: 1.2rem;
    }

    .modal-content {
        padding: 2rem;
        width: 95%;
        border-radius: 1.5rem;
    }

    .footer-links-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-column {
        min-width: 100%;
        margin: 1.5rem 0;
    }

    .footer-glass-wrapper {
        padding: 2rem 1.25rem;
    }

    .footer-social-grid {
        max-width: 100%;
    }

    /* Größere Blobs für mobile Ansicht */
    .blob-1 { --blob-size: 35vw; }
    .blob-2 { --blob-size: 28vw; }
    .blob-3 { --blob-size: 22vw; }
    .blob-4 { --blob-size: 40vw; }
    .blob-5 { --blob-size: 18vw; }

    .roadmap-table {
        font-size: 0.9rem;
    }

    .roadmap-table th,
    .roadmap-table td {
        padding: 0.75rem;
    }

    .login-glass-form {
        padding: 2rem;
    }

    .glass-heading-image {
        margin: 2rem auto;
        height: 400px;
    }

    .price-display {
        font-size: 1.6rem;
    }

    .large-icon {
        font-size: 4rem;
    }

    .text-center-container {
        padding: 0 1rem;
    }

    .construction-icon {
        font-size: 3rem;
    }
}

/**
 * Kleine Mobile-Ansicht (bis 640px)
 */
@media (max-width: 640px) {
    .faq-grid {
        gap: 1.1rem;
    }

    .faq-item {
        padding: 1rem 0.95rem 1.1rem;
    }
}

/**
 * Sehr kleine Ansicht (bis 600px)
 */
@media (max-width: 600px) {
    .info-items {
        flex-direction: column;
    }

    .info-item {
        flex: 1 1 auto;
    }

    .split-section {
        padding: 0 0.75rem;
    }
}

/**
 * Extra kleine Ansicht (bis 480px)
 */
@media (max-width: 480px) {
    .header {
        flex-direction: column;
        gap: 0.9375rem;
        text-align: center;
    }

    .nav-pills {
        gap: 0.25rem;
    }

    .nav-pill {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .glass-card h1 {
        font-size: 1.8rem;
    }

    .login-btn {
        width: 100%;
        max-width: 12.5rem;
    }

    .hero-section {
        padding: 3rem 0.75rem 2rem;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .section-title-center {
        font-size: 1.7rem;
    }

    .reference-badge {
        min-height: 280px;
    }

    /* Noch größere Blobs für sehr kleine Bildschirme */
    .blob-1 { --blob-size: 45vw; }
    .blob-2 { --blob-size: 35vw; }
    .blob-3 { --blob-size: 28vw; }
    .blob-4 { --blob-size: 50vw; }
    .blob-5 { --blob-size: 25vw; }

    .login-glass-form {
        padding: 1.5rem;
        max-width: 90%;
    }

    .app-download-section {
        padding: 3rem 1rem;
    }
}

/* ============================================================================
   ZUSÄTZLICHE UTILITY-KLASSEN
   ============================================================================ */

/**
 * Preis-Anzeige für Pakete
 */
.price-display {
    text-align: center;
    font-size: 2rem!important;
    font-weight: 900;
    margin: 0.5rem 0;
    color: #fff;
}

.price-display sup {
    vertical-align: super;
    font-size: 0.6em;
    font-weight: 400;
}

/**
 * Erforderlich-Marker für Formulare
 */
.required-mark {
    color: #ff6b6b;
    margin-left: 0.2rem;
}

/**
 * Zentrierter Text-Block
 */
.text-center {
    text-align: center;
}

.text-center-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.85);
}

/**
 * Link-Styling innerhalb von Text
 */
.inline-link {
    color: #60a5fa;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #93c5fd;
}

/**
 * Fußnoten-Container
 */
.footnotes {
    text-align: justify;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 4rem auto 2rem;
    padding: 0 1.25rem;
    line-height: 1.6;
}

.footnotes sup {
    vertical-align: super;
    font-size: smaller;
    margin-right: 0.25rem;
}

.footnotes a {
    color: #60a5fa;
    text-decoration: underline;
}

/**
 * Icon-Container für große Icons
 */
.large-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

/**
 * Form-Label mit Flex-Layout
 */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

/**
 * Textarea-Container mit Counter
 */
.textarea-container {
    position: relative;
    margin-bottom: 1rem;
}

.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/**
 * Captcha-Container
 */
.captcha-container {
    margin: 1rem 0;
    display: flex;
    justify-content: left;
}

.captcha-image {
    border-radius: 0.75rem;
    max-width: 100%;
    height: auto;
}

/**
 * Hinweis-Text (wichtige Informationen)
 */
.info-notice {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.info-notice strong {
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/**
 * Submit-Button als Glass-Button
 */
input[type="submit"].glass-button,
input[type="submit"].glass-button-secondary {
    width: 100%;
    cursor: pointer;
    border: none;
    margin-top: 0.5rem;
    font-family: inherit;
}

/**
 * CTA-Container (zentrierte Call-to-Action)
 */
.cta-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0 4rem;
}

/**
 * Produkt-Beschreibung unter Preis
 */
.package-description {
    margin: 0.5rem 0 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/**
 * Right-Content für Split-Form
 */
.glass-split-form-right .form-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.glass-split-form-right .form-icon-title {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

/**
 * Intro-Text für Sektionen
 */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/**
 * Margin-Utilities
 */
.mb-4 {
    margin-bottom: 4rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/**
 * Strong-Text in Glass-Kontext
 */
.glass-card strong,
.info-item strong,
.feature-card strong,
p strong {
    color: #fff;
    font-weight: 600;
}


/* ============================================================================
   REFERENZ-SYSTEM (Kombiniert & Bereinigt)
   ============================================================================ */

.construction-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: construction-pulse 2s ease-in-out infinite;
}

@keyframes construction-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.construction-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.construction-timeline span:first-child {
    font-size: 1.2rem;
}

/**
 * Referenz-Badge mit Firmenlogo und Zitat
 */
.reference-badge {
    flex: 0 0 calc(33.333% - 1.35rem);
    min-width: 300px;
    max-width: 400px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    border-radius: 1.25rem;
    padding: 2rem;
    min-height: 350px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.reference-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.15), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s;
}

.reference-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.reference-badge:hover::before {
    opacity: 1;
}

.reference-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center; /* Zentriert jede Reihe */
}

.badge-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.badge-logo {
    width: 50%;
    max-width: 200px;
    border-radius: min(2rem, 20%);
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.insiderhub-logo {
    width: 70%;
    max-width: 300px;
    border-radius: min(2rem, 20%);
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.dynamic-badge-logo {
    width: 50%;
    max-width: 200px;
    border-radius: min(2rem, 20%);
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.reference-badge:hover .badge-logo {
    filter: brightness(1);
}

.badge-company {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.badge-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1em;
}

/* Reference Modal */
.reference-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reference-modal.active {
    display: flex;
}

.reference-modal.show {
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    backdrop-filter: blur(20px);
    background: var(--bg-glass-strong);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 3rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-logo {
    max-width: 250px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
}

.modal-company {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.modal-details p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.modal-details em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}


/* ============================================================================
   STATUS PAGE STYLES
   ============================================================================ */

/**
 * Status Container
 */
.status-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.status-services {
    width: 100%;
}

/**
 * Status Icon (rechte Seite)
 */
.status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 3rem;
    position: sticky;
    top: 2rem;
}

.status-icon i {
    font-size: 8rem;
    color: rgba(96, 165, 250, 0.8);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/**
 * Status Group
 */
.status-group {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    background: var(--bg-glass);
    -webkit-backdrop-filter: blur(0.85rem);
    padding: 1.25rem 1.15rem 1.35rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.status-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.status-group-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
}

/**
 * Group Status Indicator
 */
.group-indicator {
    width: 1em;
    height: 1em;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

/* Animierter Puls-Effekt */
.group-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: status-pulse 2s ease-out infinite;
    pointer-events: none;
}

/* Status Colors */
.status-all-active {
    background-color: #4CAF50;
    color: #4CAF50;
}

.status-all-offline {
    background-color: #F44336;
    color: #F44336;
}

.status-partial {
    background-color: #FF9800;
    color: #FF9800;
}

/**
 * Status Divider
 */
.status-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

/**
 * Status Service Item
 */
.status-service-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: background 0.2s ease;
}

/**
 * Status Indicator (Colored Dot)
 */
.status-indicator {
    width: 1em;
    height: 1em;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: auto;
    position: relative;
}

/* Animierter Puls-Effekt */
.status-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: status-pulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes status-pulse {
    0% {
        box-shadow: 0 0 0 0 currentColor;
        opacity: 1;
    }
    70% {
        box-shadow: 0 0 0 10px currentColor;
        opacity: 0;
    }
    100% {
        box-shadow: 0 0 0 0 currentColor;
        opacity: 0;
    }
}

/* Status Colors */
.status-active {
    background-color: #4CAF50;
    color: #4CAF50;
}

.status-offline {
    background-color: #F44336;
    color: #F44336;
}

.status-maintenance {
    background-color: #FF9800;
    color: #FF9800;
}

.status-degraded {
    background-color: #FFC107;
    color: #FFC107;
}

/**
 * Service Info
 */
.status-service-info {
    flex: 1;
}

.status-service-name {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.status-service-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/**
 * Status Footer
 */
.status-footer {
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    background: var(--bg-glass);
    -webkit-backdrop-filter: blur(0.85rem);
    padding: 1.25rem 1.15rem 1.35rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/**
 * Responsive Design
 */
@media (max-width: 1024px) {
    .status-container {
        grid-template-columns: 1fr;
    }

    .status-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .status-group {
        padding: 1.5rem;
    }

    .status-group-header h3 {
        font-size: 1.2rem;
    }

    .status-service-item {
        padding: 0.75rem;
    }

    .status-icon i {
        font-size: 6rem;
    }
}


/* ============================================================================
   GLASSMORPHISM CHECKBOXEN
   ============================================================================ */

/**
 * Custom Checkbox Container
 * Wrapper für verbesserte Darstellung von Checkboxen
 */
.checkbox-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

/**
 * Verstecke die native Checkbox
 */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

/**
 * Checkbox Hover-Zustand
 */
input[type="checkbox"]:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/**
 * Checkbox Focus-Zustand
 */
input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

/**
 * Checkbox Checked-Zustand
 */
input[type="checkbox"]:checked {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    border-color: rgba(76, 175, 80, 0.5);
}

/**
 * Checkmark Icon (Font Awesome)
 */
input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #4CAF50;
    font-size: 0.75rem;
    text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

/**
 * Disabled-Zustand
 */
input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

input[type="checkbox"]:disabled:hover {
    transform: none;
}

/**
 * Checkbox Label
 */
.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: color 0.2s ease;
}
input[type="checkbox"]:hover + .checkbox-label {
    color: rgba(255, 255, 255, 0.95);
}

/* ============================================================================
   LEGAL CARDS COMPONENT
   Ergänzung zur styles.css für die /legal Seite
   ============================================================================ */

/**
 * Legal Cards Grid
 * 2x2 Grid für die rechtlichen Link-Kacheln
 */
.legal-cards-grid {
    display: grid;
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 900px;
    padding: 0 1.25rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .legal-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/**
 * Legal Card - Klickbare Kachel
 */
.legal-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 1.25rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    text-decoration: none;
    color: #fff;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    position: relative;
    overflow: hidden;
}

/**
 * Leuchteffekt beim Hover
 */
.legal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.legal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px -6px rgba(0, 0, 0, 0.5);
    background: var(--bg-glass-strong);
}

.legal-card:hover::before {
    opacity: 1;
}

/**
 * Icon Container
 */
.legal-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: background 0.3s ease, transform 0.3s ease;
}

.legal-card:hover .legal-card-icon {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.05);
}

/**
 * Titel
 */
.legal-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

/**
 * Beschreibung
 */
.legal-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/**
 * Pfeil-Indikator
 */
.legal-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.legal-card:hover .legal-card-arrow {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateX(4px);
}

/**
 * Mobile Anpassungen
 */
@media (max-width: 480px) {
    .legal-card {
        padding: 1.5rem;
    }

    .legal-card-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .legal-card h3 {
        font-size: 1.1rem;
    }

    .legal-card p {
        font-size: 0.85rem;
    }
}


/* ============================================================================
   GLOBALE LINK-STYLES
   ============================================================================ */

/**
 * Basis-Styling für alle Links (außer Navigation und Buttons)
 * Glassmorphism-Effekt mit sanften Übergängen
 */
a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none !important;
}

/**
 * Content-Links (nur in Textbereichen)
 */
p a,
.content a,
.modal-details a,
article a {
    position: relative;
    transition: color 0.3s ease;
}

/**
 * Link Hover-Effekt für Content-Links
 * Unterstreicht und erhellt den Link
 */
p a:hover,
.content a:hover,
.modal-details a:hover,
article a:hover {
    color: #fff;
}

p a:hover::after,
.content a:hover::after,
.modal-details a:hover::after,
article a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
    );
    animation: linkGlow 1.5s ease-in-out infinite;
}

@keyframes linkGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/**
 * Ausnahmen: Navigation, Header und Buttons behalten ihre eigenen Styles
 */
nav a,
.nav-links a,
.header a,
.footer a,
a.btn,
a.login-btn,
a.cta-button,
a[class*="button"],
a[class*="nav-"] {
    position: static;
}

nav a::after,
.nav-links a::after,
.header a::after,
.footer a::after,
a.btn::after,
a.login-btn::after,
a.cta-button::after,
a[class*="button"]::after,
a[class*="nav-"]::after {
    display: none !important;
}

/* ============================================================================
   UTILITY PAGES (ERROR & NOTICE)
   ============================================================================ */

/**
 * Error Page Hero Section
 * Großer Hero-Bereich für Fehlerseiten (404, 500, etc.)
 */
.error-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, #dbeafe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

/**
 * Notice Page Hero Section
 * Kleinerer Hero-Bereich für Hinweisseiten
 */
.notice-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.notice-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #dbeafe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/**
 * Button Wrapper für Utility Pages
 * Zentriert Buttons mit Gap
 */
.utility-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/**
 * Zentrierte Content-Karte für Utility Pages
 */
.utility-card-center {
    text-align: center;
}

.utility-card-center h3 {
    margin-bottom: 1.5rem;
}

/* ============================================================================
   ENDE DES STYLESHEETS
   ============================================================================

   Copyright © 2025 devfour UG (haftungsbeschränkt)
   Alle Rechte vorbehalten.

   Geschäftsführer: Philipp Kunkel
   Amtsgericht Siegburg, HRB 17140

   Kontakt: contact@devfour.de
   Website: https://devfour.de
   ============================================================================ */