    /* --- 1. BASIC SETUP (Safe Harbor Mode) --- */
    .angehoerigen-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100vh;
        /* Verlauf: Soft Indigo -> Caring Pink -> Fresh Teal */
        background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #06b6d4 100%);
        color: #ffffff;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        overflow-x: hidden;
        position: relative;
        padding-bottom: 6rem;
    }

    /* --- 2. ANIMATED BACKGROUND --- */
    .bg-element {
        position: absolute;
        opacity: 0.12;
        pointer-events: none;
        animation: float 14s ease-in-out infinite;
        z-index: 0;
        color: #fff;
    }
    
    /* Rettungsring */
    .bg-ring { top: 10%; right: 10%; width: 140px; }
    /* Hände */
    .bg-hands { bottom: 15%; left: 5%; width: 160px; animation-delay: 2s; }
    /* Sprechblase */
    .bg-chat { top: 45%; left: 15%; width: 90px; animation-delay: 5s; }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-25px) rotate(3deg); }
    }

    /* --- 3. CONTAINER --- */
    .main-container {
        position: relative;
        z-index: 10;
        max-width: 900px;
        margin: 0 auto;
        padding: 4rem 1.5rem;
    }

    /* --- 4. HERO SECTION --- */
    .hero-section {
        text-align: center;
        margin-bottom: 4rem;
    }

    .hero-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
        display: inline-block;
        filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
        animation: pulse 3s infinite;
    }

    .hero-title {
        font-size: 3rem;
        font-weight: 800;
        margin: 0 0 1.5rem 0;
        color: #fff;
        line-height: 1.1;
        text-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .hero-desc {
        font-size: 1.15rem;
        line-height: 1.6;
        color: rgba(255,255,255,0.95);
        max-width: 700px;
        margin: 0 auto 2rem auto;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    /* --- 5. GLASS CARDS (White Frost) --- */
    .glass-card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 24px;
        padding: 2.5rem;
        margin-bottom: 3rem;
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    }

    .section-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 1rem;
    }

    /* --- 6. FEATURE GRID --- */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .feature-item {
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 16px;
        padding: 1.5rem;
        transition: transform 0.3s ease, background 0.3s;
    }

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

    .feature-item h3 {
        font-size: 1.2rem;
        margin: 0.5rem 0 1rem 0;
        color: #fff;
        font-weight: 700;
    }

    .feature-item p {
        font-size: 0.95rem;
        color: rgba(255,255,255,0.9);
        line-height: 1.5;
        margin: 0;
    }

    /* --- 7. PRIVACY NOTICE --- */
    .privacy-box {
        background: rgba(255, 255, 255, 0.25);
        border-left: 4px solid #fbbf24; /* Amber */
        border-radius: 8px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        color: #fff;
        margin-top: 2rem;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* --- 8. CTA SECTION --- */
    .cta-wrapper {
        text-align: center;
        padding: 2rem 0;
    }

    .main-btn {
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        color: #fff;
        border: none;
        padding: 18px 40px;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .main-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
    }

    /* --- 9. TOOL SECTION (Shortcode styling) --- */
    .tool-section {
        display: none; /* Initial hidden */
        animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nc-cta-lead {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

    .nc-tool-wrapper-highlight {
        margin-top: 3rem;
        border-color: #fbbf24;
    }

    .nc-section-title-center {
        justify-content: center;
        border: none;
    }

    .nc-glass-card-mt-2 {
        margin-top: 2rem;
    }

    .nc-soft-paragraph {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Shortcode Overrides for consistent look */
    .neelix-shortcode-container:not(.tool-ui-native) input[type="text"], 
    .neelix-shortcode-container:not(.tool-ui-native) textarea {
        background: rgba(255,255,255,0.9) !important;
        border: 2px solid rgba(255,255,255,0.5) !important;
        border-radius: 12px !important;
        padding: 15px !important;
        color: #334155 !important;
        width: 100%;
        margin-bottom: 1rem;
    }

    /* Native Tool UI: keine doppelten Container-Abstaende */
    .angehoerigen-wrapper .neelix-shortcode-container.tool-ui-native,
    .angehoerigen-wrapper .neelix-shortcode-container.tool-ui-native #neelix-app-container {
        width: 100%;
    }

    .angehoerigen-wrapper .neelix-shortcode-container.tool-ui-native #neelix-app-container {
        margin: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
    }

    .angehoerigen-wrapper .af-shell {
        max-width: 100%;
    }

    /* --- 10. FOOTER --- */
    .footer-note {
        text-align: center;
        font-size: 1.1rem;
        color: rgba(255,255,255,0.85);
        margin-top: 4rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    @media (max-width: 768px) {
        .hero-title { font-size: 2.2rem; }
        .main-container { padding: 1.5rem 0.45rem 2rem; }
        .glass-card { padding: 0.9rem; }

        /* Tool-Section: aus dem Container ausbrechen für Vollbild-Chat */
        .tool-section.glass-card {
            margin-left: -0.45rem;
            margin-right: -0.45rem;
            width: calc(100% + 0.9rem);
            padding: 0;
            border-radius: 0;
            border: none;
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            box-shadow: none;
            overflow: visible;
        }

        .tool-section .neelix-shortcode-container:not(.tool-ui-native) {
            padding: 0;
            margin: 0;
            width: 100%;
            overflow: visible;
        }

        .tool-section .neelix-shortcode-container.tool-ui-native {
            padding: 0;
            margin: 0;
            width: 100%;
            overflow: visible;
        }

        /* Shortcode-Override entfernen — das Tool bringt eigene Styles mit */
        .neelix-shortcode-container:not(.tool-ui-native) input[type="text"],
        .neelix-shortcode-container:not(.tool-ui-native) textarea {
            background: inherit !important;
            border: inherit !important;
            border-radius: inherit !important;
            padding: inherit !important;
            color: inherit !important;
        }
    }

    @media (max-width: 430px) {
        .main-container { padding: 1rem 0.15rem 1.4rem; }
        .glass-card { padding: 0.65rem; }

        .tool-section.glass-card {
            margin-left: -0.15rem;
            margin-right: -0.15rem;
            width: calc(100% + 0.3rem);
        }
    }
