    /* 🎨 SHARED DESIGN ENGINE (identisch mit index.php) */
    
:root {
        --liquid-bounce: cubic-bezier(0.68, -0.6, 0.32, 1.6);
        --smooth-zoom: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --glass-border: 1px solid rgba(255, 255, 255, 0.8);
        --glass-shadow: 0 2px 12px rgba(26, 32, 44, 0.04), 0 6px 24px -2px rgba(26, 32, 44, 0.06), 0 0 0 1px rgba(26, 32, 44, 0.02);
        --glass-bg: rgba(255, 255, 255, 0.65);
        --amina-blue: #48A0D6;
        --amina-pink: #D55A92;
        --amina-green: #7FB14E;
        --amina-yellow: #F59E0B;
        --amina-dark: #1E293B;
        --noise-subtle:  url('/images/noise-subtle.svg');
        --noise-medium:  url('/images/noise-medium.svg');
        --noise-intense: url('/images/noise-intense.svg');
    }

    * { 
        -webkit-tap-highlight-color: transparent; 
        box-sizing: border-box;
    }

    /* ── DESKTOP SECTION SPACING KOMPRIMIERT ── */
    @media (min-width: 1024px) {
        main > section {
            padding-top:    3.5rem !important;
            padding-bottom: 3.5rem !important;
        }

        /* CTA-Sektion: mehr Luft nach unten wegen Footer-Overlap */
        main > section:last-of-type {
            padding-top:    4rem   !important;
            padding-bottom: 14rem  !important;
        }

        /* Wave-Container schlanker */
        .wave-container {
            height: 52px !important;
        }
    }

    /* ── HERO SECTION: direkte Überschreibung ── */
    @media (max-width: 1023px) {
        /* Hero */
        main > section:first-of-type {
            padding-top:    1rem    !important;
            padding-bottom: 1.5rem  !important;
        }

        /* Bento-Grid: kompakte Zeilenhöhen */
        .bento-about {
            grid-template-rows: 180px 130px !important;
        }

        /* Wave schlanker */
        .wave-container {
            height: 28px !important;
        }
    }

    /* Landscape Mobile */
    @media (max-width: 767px) and (orientation: landscape) {
        main > section {
            padding-top:    1rem !important;
            padding-bottom: 1rem !important;
        }
        main > section:first-of-type {
            padding-top:    0.5rem !important;
            padding-bottom: 1rem   !important;
        }
        .bento-about {
            grid-template-rows: 130px 90px !important;
        }
        .wave-container {
            height: 20px !important;
        }
        .about-hero-title {
            font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
        }
    }

    /* ── TABLET + LANDSCAPE: Präzise Einzelfixes ── */
    @media (min-width: 768px) and (max-width: 1023px) {
        main > section {
            padding-top:    1.5rem !important;
            padding-bottom: 1.5rem !important;
        }
        main > section:first-of-type {
            padding-top:    0.75rem !important;
            padding-bottom: 0.75rem !important;
        }
        .bento-about {
            grid-template-columns: 1fr 1fr 1fr !important;
            grid-template-rows:    180px       !important;
        }
        .bento-span-2 {
            grid-column: span 1 !important;
        }
        .wave-container {
            height: 24px !important;
        }
        /* Wolke in Stats-Section verkleinern */
        section.bg-aminaLight > .absolute svg {
            width:   160px !important;
            height:  160px !important;
            opacity: 0.04  !important;
        }
    }

    @media (max-width: 767px) and (orientation: landscape) {
        main > section {
            padding-top:    0.75rem !important;
            padding-bottom: 0.75rem !important;
        }
        main > section:first-of-type {
            padding-top:    0.5rem !important;
            padding-bottom: 0.5rem !important;
        }
        .bento-about {
            grid-template-columns: 1fr 1fr 1fr !important;
            grid-template-rows:    120px       !important;
        }
        .bento-span-2 {
            grid-column: span 1 !important;
        }
        .wave-container {
            height: 18px !important;
        }
        .about-hero-title {
            font-size: clamp(1.4rem, 4vw, 2rem) !important;
        }
        /* Wolke ausblenden auf kleinen Landscapes */
        section > .absolute svg[class*="parallax"] {
            display: none !important;
        }
    }





    /* 🏷️ Eyebrow Badge */
    .eyebrow-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.25); 
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        color: var(--amina-blue);
        padding: 0.5rem 1.4rem;
        border-radius: 9999px;
        font-weight: 800;
        font-size: clamp(0.65rem, 1.2vw, 0.75rem);
        text-transform: uppercase;
        letter-spacing: 0.15em;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 15px rgba(72, 160, 214, 0.15);
    }


    /* 💎 GLASS MORPH CARD */
.glass-morph {
        background: var(--glass-bg); backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px); border: var(--glass-border);
        box-shadow: var(--glass-shadow), 0 0 12px -2px rgba(72, 160, 214, 0.08); /* permanenter Glow kombiniert */
        border-radius: 24px; transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
        position: relative; overflow: hidden; z-index: 1; padding: 16px;
    }
    
    @media (min-width: 1024px) {
        .glass-morph {
            padding: 24px;
        }
    }
    
    .glass-morph::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: var(--noise-subtle);
        background-size: 200px 200px;
        opacity: 0.015;
        pointer-events: none;
        z-index: 1;
        mix-blend-mode: overlay;
    }

    .glass-morph:not(.no-hover):hover {
        border-radius: 32px 16px 32px 16px;
        transform: translateY(-6px) scale(1.015);
        background: rgba(255, 255, 255, 0.85);
        border-color: rgba(255, 255, 255, 0.95);
        box-shadow: 
            0 8px 24px -4px rgba(26, 32, 44, 0.08),
            0 16px 48px -8px rgba(26, 32, 44, 0.06),
            0 0 0 1px rgba(255, 255, 255, 0.4) inset;
    }

    .glass-morph.allow-overflow {
        overflow: visible !important;
    }

    /* 🔦 SPOTLIGHT & FOCUS ENGINE */
    .glass-morph::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
            600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
            rgba(255,255,255,0.3), 
            transparent 40%
        );
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
        z-index: 2;
    }
    
    .glass-morph:hover::before {
        opacity: 1;
    }


    /* Dynamic Hover Borders */
    .glass-morph.hover-blue:hover { 
        border-color: var(--amina-blue); 
        background: rgba(72, 160, 214, 0.08);
        box-shadow: 0 10px 40px rgba(72, 160, 214, 0.2); 
    }
    .glass-morph.hover-pink:hover { 
        border-color: var(--amina-pink); 
        background: rgba(213, 90, 146, 0.08);
        box-shadow: 0 10px 40px rgba(213, 90, 146, 0.2); 
    }
    .glass-morph.hover-green:hover { 
        border-color: var(--amina-green); 
        background: rgba(127, 177, 78, 0.08);
        box-shadow: 0 10px 40px rgba(127, 177, 78, 0.2); 
    }
    .glass-morph.hover-yellow:hover { 
        border-color: var(--amina-yellow); 
        background: rgba(245, 158, 11, 0.08);
        box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2); 
    }

    /* 🎨 TEXT GRADIENT */
    .text-gradient-flow {
        background: linear-gradient(to right, var(--amina-blue) 0%, var(--amina-pink) 50%, var(--amina-blue) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% auto;
        animation: textShine 6s ease-in-out infinite alternate;
    }
    @keyframes textShine {
        0% { background-position: 0% 50%; }
        100% { background-position: 100% 50%; }
    }

/* ☁️ PARALLAX CLOUDSCAPE */
@keyframes cloud-drift-slow {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(80px, -30px); }
}
@keyframes cloud-drift-medium {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(-100px, 40px); }
}
@keyframes cloud-drift-float {
0%, 100% { transform: translate(0, 0) scale(1); }
50% { transform: translate(50px, 30px) scale(1.15); }
}
@keyframes cloud-drift-zigzag {
0% { transform: translate(0, 0) scale(1); }
25% { transform: translate(30px, -20px) scale(1.04); }
50% { transform: translate(-20px, 25px) scale(1.02); }
75% { transform: translate(40px, 10px) scale(1.06); }
100% { transform: translate(0, 0) scale(1); }
}
.parallax-slow { animation: cloud-drift-slow 30s ease-in-out infinite; }
.parallax-medium { animation: cloud-drift-medium 22s ease-in-out infinite; }
.parallax-float { animation: cloud-drift-float 15s ease-in-out infinite; }
.parallax-zigzag { animation: cloud-drift-zigzag 24s ease-in-out infinite; }
.parallax-cloud { will-change: auto; }
.parallax-cloud.js-running { will-change: transform; }

/* Diagonale Schleifenanimation für die rosa Wolke */
@keyframes cloud-sweep {
    0% { transform: translate(0, 0); }
    33% { transform: translate(-120px, -80px); } /* nach links oben */
    66% { transform: translate(80px, 60px); }    /* nach rechts unten */
    100% { transform: translate(0, 0); }         /* zurück zum Start */
}

    /* ✨ REVEAL */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* ── BUTTONS (GLASSMORPHISM PURE) ── */
    .btn-liquid {
        position: relative; display: inline-flex; align-items: center; justify-content: center;
        padding: 1.2rem 2.8rem; border-radius: 20px; font-weight: 800; border: none;
        transition: all 0.5s var(--liquid-bounce); background: rgba(255, 255, 255, 0.65);
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); overflow: hidden; cursor: pointer;
        box-shadow: 0 4px 16px -4px rgba(26,32,44,0.05), inset 0 1px 4px rgba(255,255,255,0.8);
        text-decoration: none;
    }
    .btn-liquid::before { content:""; position:absolute; inset:0; background-image:var(--noise-medium); background-size:150px 150px; opacity:0.05; pointer-events:none; z-index:1; mix-blend-mode:overlay; }
    .btn-liquid:hover { 
        border-radius: 30px 10px 30px 10px; transform: translateY(-6px); 
        background: rgba(255, 255, 255, 0.9); box-shadow: 0 12px 32px -8px rgba(26,32,44,0.1), inset 0 1px 4px rgba(255,255,255,1);
    }
    .btn-liquid .cta-text { display: inline-block; transition: transform 0.4s var(--liquid-bounce); }
    .btn-liquid:hover .cta-text { transform: translateY(-2px); }
    .btn-liquid .cta-icon { transition: transform 0.4s var(--liquid-bounce) 0.05s; }
    .btn-liquid:hover .cta-icon { transform: translateX(4px) translateY(-2px); }

    .btn-pink  { color: var(--amina-pink); }

    .btn-blue  { color: var(--amina-blue); }
    .btn-green { color: var(--amina-green); }

    /* ── SUPER CTA (GLASSMORPHISM & LIQUID SNAKE ENGINE) ── */
    .btn-super-cta {
        position: relative; 
        display: inline-flex; 
        justify-content: center; 
        align-items: center;
        border-radius: 26px; 
        background: transparent; 
        border: none; 
        box-shadow: none;
        cursor: pointer;
        z-index: 10; 
        transition: transform 0.6s var(--liquid-bounce); 
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        overflow: hidden;
    }
    
    .btn-super-cta:hover { transform: translateY(-6px) scale(1.04); }
    
    .btn-super-cta::before {
        content: ""; 
        position: absolute; 
        width: 300%; 
        aspect-ratio: 1;
        top: 50%; 
        left: 50%; 
        z-index: 0;
        background: conic-gradient(
            transparent 0deg,
            transparent 110deg,
            var(--amina-blue) 250deg,
            var(--amina-pink) 360deg
        );
        transform: translate(-50%, -50%) rotate(0deg); 
        animation: snake-spin 4s linear infinite;
    }

    .btn-super-cta:hover::before {
        animation: snake-spin 0.8s linear infinite;
        will-change: transform;
    }
    
    @keyframes snake-spin { 
        0% { transform: translate(-50%, -50%) rotate(0deg); } 
        100% { transform: translate(-50%, -50%) rotate(360deg); } 
    }
    
    .btn-super-cta::after {
        content: "";
        position: absolute;
        inset: 2px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 24px;
        z-index: 1;
        transition: background 0.5s var(--liquid-bounce);
    }
    
    .btn-super-cta:hover::after {
        background: rgba(255, 255, 255, 0.98);
    }

    .cta-content {
        display: flex; align-items: center; justify-content: center;
        padding: 1.4rem 3.5rem; font-size: 1rem; letter-spacing: 0.15em;
        font-weight: 900; color: var(--amina-pink); text-transform: uppercase;
        position: relative; z-index: 2; width: 100%; height: 100%;
        transition: color 0.5s var(--liquid-bounce);
    }
    
    .cta-content::after { 
        content:''; position:absolute; inset:0; background-image:var(--noise-subtle); 
        background-size:200px 200px; opacity:0.1; pointer-events:none; z-index:1; mix-blend-mode:overlay; 
        border-radius: inherit;
    }
    
    .btn-super-cta .icon-arrow { margin-left:10px; transition:transform 0.4s var(--liquid-bounce); color: var(--amina-pink); }
    .btn-super-cta:hover .icon-arrow { animation:arrow-loop 1s ease-in-out infinite; }
    @keyframes arrow-loop { 0%,100%{transform:translateX(0)} 50%{transform:translateX(5px)} }


    /* 📸 IMAGE ZOOM */
    .hero-zoom-img {
        transition: transform 1.5s var(--smooth-zoom);
        transform-origin: center center;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(1.02) contrast(1.02);
    }
    .glass-morph:hover .hero-zoom-img {
        transform: scale(1.35); 
    }

    .philosophie-img-wrap {
        aspect-ratio: 4 / 3;
        max-height: 55vh;
        width: 100%;
    }

    @media (orientation: landscape) and (max-height: 600px) {
        .philosophie-img-wrap {
            aspect-ratio: unset;
            width: 100%;
            height: 62vh;
            max-height: 62vh;
        }
    }



    .image-shine {
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
        transform: skewX(-25deg);
        pointer-events: none;
        z-index: 10;
    }
    .glass-morph:hover .image-shine {
        animation: shine-slide 1.5s ease-in-out forwards;
    }
    @keyframes shine-slide {
        0% { left: -100%; }
        100% { left: 200%; }
    }

    /* ♿ SKIP LINK */
    .skip-link {
        position: absolute;
        top: 0;
        left: 0;
        transform: translateY(-100%);
        background: var(--amina-blue);
        color: white;
        padding: 12px 24px;
        font-weight: 800;
        text-decoration: none;
        border-radius: 0 0 8px 8px;
        z-index: 9999;
        transition: transform 0.2s ease;
    }
    .skip-link:focus-visible {
        transform: translateY(0);
        outline: 3px solid white;
        outline-offset: 2px;
    }

    /* 🚀 RENDER LAZY */
    .render-lazy {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }

    /* 💤 PERFORMANCE ENGINE */
    .js-paused,
    .js-paused::before,
    .js-paused::after {
        animation-play-state: paused !important;
        will-change: auto !important;
        transition: none !important;
    }
    .js-running {
        will-change: transform, opacity;
    }

@media (prefers-reduced-motion: reduce) {
        *,*::before,*::after { animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
        .parallax-slow, .parallax-medium, .parallax-float, .parallax-zigzag { animation: none !important; }
    }

    /* ═══════════════════════════════════════════════════════
       🆕 ÜBER UNS – PAGE-SPECIFIC STYLES
       ═══════════════════════════════════════════════════════ */

    /* 🎬 EDITORIAL HERO – ZENTRIERT MIT DEPTH LAYERS */
    .about-hero-title {
        font-size: clamp(2.8rem, 5vw + 1rem, 5rem);
        line-height: 1.05;
        letter-spacing: -0.03em;
        font-weight: 900;
    }

    .about-hero-accent {
        display: block;
        font-size: 1.4em;
        line-height: 1;
        margin-top: -0.12em;
        padding-bottom: 0.08em;
    }

    @media (max-width: 640px) {
        .about-hero-title {
            font-size: clamp(2.2rem, 10vw, 3.5rem);
        }
    }

    /* 🖼️ BENTO IMAGE GRID – ASYMMETRIC EDITORIAL */
    .bento-about {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 200px;
        gap: 16px;
    }



    @media (min-width: 768px) {
        .bento-about {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-rows: 300px;
            gap: 20px;
        }
    }

    .bento-item {
        border-radius: 24px;
        overflow: hidden;
        position: relative;
        background: #f1f5f9;
    }
    .bento-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s var(--smooth-zoom);
    }
    .bento-item:hover img {
        transform: scale(1.12);
    }

    .bento-span-2 {
        grid-column: span 2;
    }



    @media (min-width: 768px) {
        .bento-tall {
            grid-row: span 2;
        }
        .bento-span-2 {
            grid-column: span 1;
        }
    }

    /* 🌟 PHILOSOPHY QUOTE BLOCK – Clean Premium */
    .philosophy-quote {
        position: relative;
        padding: 2rem 2.2rem 2rem 2.8rem;
        /* Subtiler Pink-Blau-Tint – macht Glassmorphism sichtbar */
        background: linear-gradient(
            148deg,
            rgba(252, 231, 243, 0.50) 0%,
            rgba(255, 255, 255, 0.62) 45%,
            rgba(219, 234, 254, 0.48) 100%
        );
        backdrop-filter: blur(28px) saturate(2.2) brightness(1.06);
        -webkit-backdrop-filter: blur(28px) saturate(2.2) brightness(1.06);
        border: 1px solid rgba(255, 255, 255, 0.90);
        border-radius: 28px;
        /* Permanenter Glow + Premium Glass Inset */
        box-shadow:
            0 0 20px rgba(213, 90, 146, 0.14),
            0 0 48px rgba(72, 160, 214, 0.07),
            0 10px 32px -8px rgba(213, 90, 146, 0.18),
            inset 0 2px 0 rgba(255, 255, 255, 1),
            inset 0 0 0 1px rgba(255, 255, 255, 0.58),
            inset 0 0 30px rgba(255, 255, 255, 0.20);
        margin: 2.5rem 0;
        overflow: hidden;
        transition:
            transform 0.6s var(--liquid-bounce),
            box-shadow 0.5s ease,
            border-radius 0.55s var(--liquid-bounce);
    }

    .philosophy-quote:hover {
        transform: translateY(-6px);
        border-radius: 32px 18px 32px 18px;
        box-shadow:
            0 0 32px rgba(213, 90, 146, 0.22),
            0 0 70px rgba(72, 160, 214, 0.10),
            0 18px 48px -8px rgba(213, 90, 146, 0.26),
            inset 0 2px 0 rgba(255, 255, 255, 1),
            inset 0 0 0 1px rgba(255, 255, 255, 0.72),
            inset 0 0 40px rgba(255, 255, 255, 0.26);
    }

    /* Dezente Anführungszeichen-Dekoration – klein, oben-rechts,
       außerhalb des Textbereichs, stört den Lesefluss NICHT */
    .philosophy-quote::before {
        content: '\201D';
        position: absolute;
        top: -10px;
        right: 18px;
        font-size: 6rem;
        font-family: Georgia, 'Times New Roman', serif;
        font-weight: 900;
        background: linear-gradient(135deg, var(--amina-pink) 0%, var(--amina-blue) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        opacity: 0.10;
        line-height: 1;
        pointer-events: none;
        z-index: 0;
        transition: opacity 0.45s ease;
    }

    .philosophy-quote:hover::before {
        opacity: 0.16;
    }

    /* Sauberer 5px Gradient-Balken links – schmal, klar, elegant */
    .philosophy-quote::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 5px;
        background: linear-gradient(
            to bottom,
            var(--amina-pink)  0%,
            var(--amina-blue)  55%,
            var(--amina-green) 100%
        );
        border-radius: 28px 0 0 28px;
        pointer-events: none;
        z-index: 1;
    }




    /* 🖼️ PHILOSOPHY IMAGE WRAPPER – Premium Glass
       .no-hover ist auf dieser Seite einzigartig → sicherer Selektor */
    .glass-morph.no-hover {
        background: linear-gradient(
            148deg,
            rgba(252, 231, 243, 0.40) 0%,
            rgba(255, 255, 255, 0.50) 45%,
            rgba(219, 234, 254, 0.36) 100%
        );
        backdrop-filter: blur(24px) saturate(2.2) brightness(1.06);
        -webkit-backdrop-filter: blur(24px) saturate(2.2) brightness(1.06);
        border-color: rgba(255, 255, 255, 0.92);
        border-radius: 32px;
        padding: 10px;
        /* Permanenter Glow – Projekt-Konstante */
        box-shadow:
            0 0 22px rgba(213, 90, 146, 0.14),
            0 0 55px rgba(72, 160, 214, 0.07),
            0 12px 38px -8px rgba(213, 90, 146, 0.18),
            inset 0 2px 0 rgba(255, 255, 255, 1),
            inset 0 0 0 1px rgba(255, 255, 255, 0.62),
            inset 0 0 32px rgba(255, 255, 255, 0.16);
        transition:
            box-shadow 0.5s ease,
            border-radius 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @media (min-width: 1024px) {
        .glass-morph.no-hover {
            padding: 12px;
        }
    }

    /* 🖼️ PHILOSOPHY IMAGE – Gradient Ring
       Gleiche Design-DNA: Team Rings · Super CTA · Progress Bar
       Kein weißer Hintergrund – Bild schwimmt im animierten Farb-Ring */
    .glass-morph.no-hover {
        background: linear-gradient(
            135deg,
            var(--amina-pink)   0%,
            var(--amina-blue)   35%,
            var(--amina-green)  68%,
            var(--amina-yellow) 100%
        );
        background-size: 300% 300%;
        animation: progressShimmer 8s ease infinite;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 34px;
        padding: 4px;
        overflow: hidden !important;
        box-shadow:
            0 0 30px rgba(213, 90, 146, 0.20),
            0 0 60px rgba(72, 160, 214, 0.10),
            0 20px 56px -10px rgba(213, 90, 146, 0.22);
        transition:
            box-shadow 0.5s ease,
            border-radius 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* Pseudo-Elemente des glass-morph zurücksetzen */
    .glass-morph.no-hover::before,
    .glass-morph.no-hover::after {
        display: none;
    }

    @media (min-width: 1024px) {
        .glass-morph.no-hover {
            padding: 5px;
            border-radius: 38px;
        }
    }

    /* 🖼️ PHILOSOPHY IMAGE – Kein Rahmen, nur runde Ecken + minimalster Glow */
    .glass-morph.no-hover {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 28px;
        padding: 0;
        overflow: hidden !important;
        box-shadow:
            0 8px 40px rgba(213, 90, 146, 0.22),
            0 4px 24px rgba(72, 160, 214, 0.15);

    }

    .glass-morph.no-hover::before,
    .glass-morph.no-hover::after {
        display: none;
    }

    /* 👥 TEAM CARDS – PORTRAIT STYLE */



    .team-card {
        text-align: center;
        padding: 32px 24px;
    }
    .team-avatar-ring {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin: 0 auto 20px;
        padding: 4px;
        background: conic-gradient(from 0deg, var(--amina-blue), var(--amina-pink), var(--amina-green), var(--amina-blue));
        animation: rotation 6s linear infinite;
        transition: animation-duration 0.3s ease;
    }
    .team-card:hover .team-avatar-ring {
        animation-duration: 2s;
    }
.team-avatar-inner {
width: 100%;
height: 100%;
border-radius: 50%;
overflow: hidden;
border: 2px solid rgba(255, 255, 255, 0.8);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
background: rgba(255, 255, 255, 0.6);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}

    .team-avatar-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .team-avatar-inner img.avatar-samia {
        object-position: 110% 100%;
        transform: scale(1.05);
        transform-origin: center 70%;
    }


    .team-avatar-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 900;
        color: white;
    }
    .team-avatar-placeholder.bg-blue { background: linear-gradient(135deg, var(--amina-blue), #7ac0ea); }
    .team-avatar-placeholder.bg-pink { background: linear-gradient(135deg, var(--amina-pink), #e89abf); }
    .team-avatar-placeholder.bg-green { background: linear-gradient(135deg, var(--amina-green), #afd38c); }
    .team-avatar-placeholder.bg-yellow { background: linear-gradient(135deg, var(--amina-yellow), #fbbf24); }

    .team-role-badge {
        display: inline-block;
        padding: 4px 14px;
        border-radius: 9999px;
        font-size: 0.7rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-top: 8px;
    }
    .badge-blue { background: #E0F2FE; color: var(--amina-blue); }
    .badge-pink { background: #FCE7F3; color: var(--amina-pink); }
    .badge-green { background: #DCFCE7; color: var(--amina-green); }
    .badge-yellow { background: #FEF3C7; color: var(--amina-yellow); }

    /* 💎 VALUE LENS (Wiederverwendung aus index.php) */
    .value-lens {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(255,255,255,0.8);
        box-shadow: 
            0 10px 30px rgba(0,0,0,0.05),
            inset 0 0 0 2px rgba(255,255,255,0.4);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: all 0.6s var(--liquid-bounce);
    }
    .value-lens::after {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        filter: blur(6px);
        opacity: 0.6;
        transition: all 0.5s ease;
        background: currentColor;
    }
    .glass-morph:hover .value-lens {
        transform: scale(1.15) rotate(8deg);
        box-shadow: 0 0 30px currentColor, 0 0 50px rgba(255,255,255,0.5) inset;
        background: white;
        border-color: currentColor;
    }
    .glass-morph:hover .value-lens::after {
        opacity: 1;
        transform: scale(1.5);
        filter: blur(10px);
    }
    .value-lens svg {
        width: 28px;
        height: 28px;
        position: relative;
        z-index: 2;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    @media (min-width: 768px) {
        .value-lens {
            width: 72px;
            height: 72px;
        }
        .value-lens svg {
            width: 32px;
            height: 32px;
        }
    }

    /* 🔢 STAT COUNTER CARDS */
    .stat-number {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        font-weight: 900;
        line-height: 1;
        letter-spacing: -0.03em;
    }
    .stat-suffix {
        font-size: 0.5em;
        font-weight: 700;
        opacity: 0.6;
        margin-left: 2px;
    }
                
                /* 💎 PREMIUM GLAS-EFFEKT FÜR STATISTIK-BOXEN (WIE HERO-BOXEN) */
.stat-premium-glass {
        background: rgba(255,255,255,0.15) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        box-shadow: 
            0 10px 25px -8px rgba(0, 20, 40, 0.3),
            inset 0 0 0 2px rgba(255, 255, 255, 0.9),
            inset 0 0 0 5px rgba(255, 255, 255, 0.2),
            inset 0 0 20px rgba(255, 255, 255, 0.5) !important;
        position: relative;
        overflow: hidden;
    }

    .stat-premium-glass::after {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.25 !important;
        background-image: var(--noise-intense);
        background-size: 200px 200px;
        mix-blend-mode: overlay;
        pointer-events: none;
        z-index: 1;
        border-radius: inherit;
    }

    .stat-premium-glass::before {
        content: '';
        position: absolute;
        inset: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(255,255,255,0.5) 0%, transparent 40%),
            radial-gradient(circle at 80% 70%, rgba(255,255,255,0.4) 0%, transparent 50%),
            radial-gradient(circle at 40% 80%, rgba(255,255,245,0.3) 0%, transparent 60%);
        pointer-events: none;
        z-index: 2;
        mix-blend-mode: overlay;
        border-radius: inherit;
        opacity: 0.8;
    }

    /* 🌊 DIVIDER WAVE */
    .section-divider {
        height: 80px;
        overflow: hidden;
        position: relative;
    }
    .section-divider svg {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

    /* 📱 FEATURE TEXT ANIM */
    .feature-text-anim {
        transition: transform 0.5s var(--liquid-bounce), opacity 0.3s ease;
        opacity: 0.92;
    }
    .glass-morph:hover .feature-text-anim {
        transform: translateX(4px);
        opacity: 1;
    }

    /* 🎯 ICON MOTION (from index) */
    .feature-icon-left {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.7);
        box-shadow: 
            inset 0 2px 8px rgba(255, 255, 255, 0.6),
            inset 0 -1px 4px rgba(0, 0, 0, 0.05),
            0 4px 12px rgba(0, 0, 0, 0.06);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    @media (min-width: 1024px) {
        .feature-icon-left {
            width: 56px;
            height: 56px;
        }
    }
    .glass-morph:hover .feature-icon-left {
        transform: scale(1.08) rotate(-2deg);
        filter: brightness(1.05);
    }

    /* 🎬 STAGGER DELAYS */
    .stagger-1 { transition-delay: 0ms; }
    .stagger-2 { transition-delay: 80ms; }
    .stagger-3 { transition-delay: 160ms; }
    .stagger-4 { transition-delay: 240ms; }
    .stagger-5 { transition-delay: 320ms; }
    .stagger-6 { transition-delay: 400ms; }

    /* ❤️ HEARTBEAT */
    @keyframes realistic-heartbeat {
        0%, 100% { transform: scale(1); }
        15% { transform: scale(1.25); }
        30% { transform: scale(1.1); }
        45% { transform: scale(1.3); }
    }
    .animate-heartbeat {
        animation: realistic-heartbeat 1.4s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
        display: inline-block;
        transform-origin: center;
    }

    /* 🏗️ CTA SECTION BG PATTERN */
    .cta-pattern-bg {
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(72, 160, 214, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(213, 90, 146, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(127, 177, 78, 0.04) 0%, transparent 60%);
    }
    /* 📜 LEITBILD – HORIZONTAL SCROLL SECTION */
    .leitbild-track {
        position: relative;
        width: 100%;
    }

    .leitbild-scroll {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 8px 24px 24px;
        scrollbar-width: none;
        cursor: grab;
    }

    .leitbild-scroll:active {
        cursor: grabbing;
    }

    .leitbild-scroll::-webkit-scrollbar {
        display: none;
    }

    @media (min-width: 1280px) {
        .leitbild-scroll {
            padding-left: calc((100vw - 1280px) / 2 + 24px);
            padding-right: calc((100vw - 1280px) / 2 + 24px);
        }
    }

    .leitbild-card {
        flex: 0 0 280px;
        min-height: 290px;
        scroll-snap-align: start;
        border-radius: 28px;
        padding: 28px 26px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.5);
        text-align: left;
        cursor: pointer;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        -webkit-tap-highlight-color: transparent;
        outline: none;
    }

    @media (min-width: 768px) {
        .leitbild-card {
            flex: 0 0 320px;
            min-height: 330px;
        }
    }

    .leitbild-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: var(--noise-subtle);
        background-size: 200px 200px;
        opacity: 0.04;
        pointer-events: none;
        z-index: 1;
        mix-blend-mode: overlay;
    }

    .leitbild-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: 
            linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 35%, transparent 60%, rgba(0,0,0,0.04) 100%);
        pointer-events: none;
        z-index: 1;
        border-radius: inherit;
        transition: opacity 0.4s ease;
    }

.leitbild-card:hover {
    transform: translateY(-3px) scale(1.01);
    border-radius: 32px 18px 32px 18px;
    border-color: rgba(255, 255, 255, 0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}

    .leitbild-card:active {
        transform: translateY(-2px) scale(0.98);
        transition-duration: 0.15s;
    }

    .leitbild-card:hover::after {
        opacity: 0;
    }

    .leitbild-card:focus-visible {
        outline: 3px solid var(--amina-dark);
        outline-offset: 4px;
    }

    /* Touch devices: always show CTA at full opacity */
    @media (hover: none) {
        .leitbild-card-cta {
            opacity: 0.85 !important;
        }
    }

    /* Color Variants */
    .leitbild-color-blue {
        background: linear-gradient(145deg, #e0f2fe 0%, #bae6fd 30%, #7dd3fc 100%);
        color: #0c4a6e;
        box-shadow: 0 8px 24px -6px rgba(72, 160, 214, 0.25), 0 2px 8px -2px rgba(72, 160, 214, 0.1);
    }
.leitbild-color-blue:hover {
    box-shadow: 0 0 30px rgba(72, 160, 214, 0.15) !important;
}

    .leitbild-color-pink {
        background: linear-gradient(145deg, #fce7f3 0%, #fbcfe8 30%, #f9a8d4 100%);
        color: #831843;
        box-shadow: 0 8px 24px -6px rgba(213, 90, 146, 0.25), 0 2px 8px -2px rgba(213, 90, 146, 0.1);
    }
.leitbild-color-pink:hover {
    box-shadow: 0 0 30px rgba(213, 90, 146, 0.15) !important;
}

    .leitbild-color-green {
        background: linear-gradient(145deg, #dcfce7 0%, #bbf7d0 30%, #86efac 100%);
        color: #14532d;
        box-shadow: 0 8px 24px -6px rgba(127, 177, 78, 0.25), 0 2px 8px -2px rgba(127, 177, 78, 0.1);
    }
.leitbild-color-green:hover {
    box-shadow: 0 0 30px rgba(127, 177, 78, 0.15) !important;
}

    .leitbild-color-yellow {
        background: linear-gradient(145deg, #fef3c7 0%, #fde68a 30%, #fcd34d 100%);
        color: #78350f;
        box-shadow: 0 8px 24px -6px rgba(245, 158, 11, 0.25), 0 2px 8px -2px rgba(245, 158, 11, 0.1);
    }
.leitbild-color-yellow:hover {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.15) !important;
}

    .leitbild-num {
        font-size: 3.5rem;
        font-weight: 900;
        line-height: 1;
        opacity: 0.12;
        position: absolute;
        top: 22px;
        right: 22px;
        letter-spacing: -0.04em;
        transition: all 0.5s ease;
        z-index: 2;
    }

    .leitbild-card:hover .leitbild-num {
        opacity: 0.2;
        transform: scale(1.1) rotate(-3deg);
    }

    .leitbild-card-title {
        font-size: 1.25rem;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 8px;
        position: relative;
        z-index: 2;
        hyphens: auto;
    }

    .leitbild-card-sub {
        font-size: 0.8rem;
        font-weight: 600;
        opacity: 0.65;
        line-height: 1.4;
        position: relative;
        z-index: 2;
    }

    .leitbild-card-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-top: 16px;
        opacity: 0.7;
        transform: translateY(0);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        z-index: 2;
    }

    .leitbild-card:hover .leitbild-card-cta {
        opacity: 1;
        gap: 10px;
    }

    .leitbild-card-cta svg {
        transition: transform 0.3s var(--liquid-bounce);
    }

    .leitbild-card:hover .leitbild-card-cta svg {
        transform: translateX(4px);
    }

    /* Scroll-Hint: Soft fade on edges to indicate scrollability */
    .leitbild-track::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 60px;
        background: linear-gradient(to left, white, transparent);
        pointer-events: none;
        z-index: 5;
    }

    @media (min-width: 1280px) {
        .leitbild-track::after {
            display: none;
        }
    }

    /* Scroll Arrows */
    .leitbild-arrow {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--amina-dark);
        transition: all 0.5s var(--liquid-bounce);
        box-shadow: 0 4px 12px rgba(0,0,0,0.04), inset 0 1px 2px rgba(255,255,255,1);
    }

    .leitbild-arrow:hover {
        background: var(--amina-dark);
        color: white;
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }


    /* Progress Bar */
    .leitbild-progress {
        height: 3px;
        background: rgba(0,0,0,0.04);
        border-radius: 99px;
        overflow: hidden;
    }

    .leitbild-progress-bar {
        height: 100%;
        width: 8%;
        background: linear-gradient(90deg, var(--amina-blue), var(--amina-pink), var(--amina-green), var(--amina-yellow));
        background-size: 300% 100%;
        animation: progressShimmer 4s ease infinite;
        border-radius: inherit;
        transition: width 0.3s ease;
    }

    /* ═══ LEITBILD MODAL ═══ */
    /* ── Akzentfarbe des aktiven Modals (JS-synchronisiert) ──
       Als <color> registriert, damit der Backdrop-Glow beim
       Kartenwechsel weich überblendet statt hart umzuspringen.
       Fallback ohne @property-Support: Farbe wechselt instant. */
    @property --leitbild-accent {
        syntax: '<color>';
        inherits: true;
        initial-value: #48A0D6;
    }

    .leitbild-modal-overlay {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        --leitbild-accent: #48A0D6;
        transition: opacity 0.4s ease, visibility 0.4s ease, --leitbild-accent 0.45s ease;
    }

    .leitbild-modal-overlay.is-open {
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
    }

.leitbild-modal-backdrop {
        position: absolute;
        inset: 0;
        /* Ruhige Bühne: 0.70 Weiß + saturate(120%) statt 0.65/180% —
           die alte Übersättigung verstärkte die durchgeblurten
           Seitenfarben (grüne/pinke Flecken), die mit der Akzent-Aura
           konkurrierten. Die Aura führt jetzt allein die Farbszene. */
        background: rgba(255, 255, 255, 0.70);
        backdrop-filter: blur(20px) saturate(120%);
        -webkit-backdrop-filter: blur(20px) saturate(120%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .leitbild-modal-overlay.is-open .leitbild-modal-backdrop {
        opacity: 1;
    }

    /* Hinweis: Der frühere flächige Backdrop-Farbwash (::after mit zwei
       Radial-Gradients) wurde bewusst entfernt. Er war hinter der Karte
       größtenteils verdeckt und addierte sich am Rand als zweite
       Lichtquelle zur Akzent-Aura — Ergebnis: Farbnebel. Die Aura am
       Karten-Container ist jetzt die einzige, präzise Farbquelle. */

    .leitbild-modal-container {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 580px;
        max-height: 85vh;
    }

    /* ── Akzent-Aura direkt um die Karte ──
       Formtreuer Lichtkranz statt Ellipse: box-shadow folgt der
       abgerundeten Kartensilhouette und leuchtet an Ecken und Kanten
       exakt gleichmäßig. Zwei Ebenen: enger, intensiver Ring an der
       Kartenkante + breites, weiches Farbfeld dahinter. inset: 12px
       zieht die Schattenquelle unter die Karte, sodass nur der Schein
       sichtbar ist. Erbt --leitbild-accent und blendet beim
       Kartenwechsel weich um (registrierte Property interpoliert,
       box-shadow-Farbe folgt automatisch). box-shadow-px sind bewusst
       clamp-frei (Projektstandard). Kein backdrop-filter im Spiel —
       z-index: -1 ist hier iOS-sicher. */
    .leitbild-modal-container::before {
        content: '';
        position: absolute;
        inset: 12px;
        z-index: -1;
        pointer-events: none;
        border-radius: 32px;
        /* Dezenter Doppelsaum: feiner Farbrand an der Kante (22px/30%)
           + leiser Hauch (64px/14%), der innerhalb des schmalen
           sichtbaren Randes (~24px Overlay-Padding) vollständig in
           Weiß ausläuft. Bewusst klein dimensioniert — größere
           Streuwerte fluten den Rand gleichmäßig und wirken als
           Farbnebel statt als Lichtkranz. */
        box-shadow:
            0 0 22px 1px color-mix(in srgb, var(--leitbild-accent) 30%, transparent),
            0 0 64px 10px color-mix(in srgb, var(--leitbild-accent) 14%, transparent);
    }

    @media (max-width: 640px) {
        .leitbild-modal-container::before {
            border-radius: 24px; /* Silhouette folgt dem mobilen Kartenradius */
        }
    }

.leitbild-modal-card {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 1px solid rgba(255, 255, 255, 0.72);
        border-radius: 32px;
        padding: 40px 36px 32px;
        box-shadow: 
            /* Elevation */
            0 32px 80px -12px rgba(0, 0, 0, 0.30),
            /* Äußerer subtiler Glow */
            0 0 60px rgba(255, 255, 255, 0.08),
            /* Glasrand – helle Linie oben */
            0 2px 0 rgba(255, 255, 255, 0.95) inset,
            /* Doppelter Inset-Border für Glastiefe */
            0 0 0 1px rgba(255, 255, 255, 0.60) inset,
            0 0 0 3px rgba(255, 255, 255, 0.18) inset,
            /* Inneres Licht */
            0 0 40px rgba(255, 255, 255, 0.25) inset;
        transform: translateY(40px) scale(0.92);
        opacity: 0;
        transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
        overflow-y: auto;
        overflow-x: hidden;
        max-height: 85vh;
        position: relative;
    }



    .leitbild-modal-overlay.is-open .leitbild-modal-card {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    @media (max-width: 640px) {
        .leitbild-modal-card {
            padding: 32px 24px 28px;
            border-radius: 24px;
        }
        .leitbild-modal-container {
            max-height: 90vh;
        }
    }

                

    /* ── HEADER BAND (full-bleed farbige Leiste oben) ── */
    .leitbild-modal-header {
        position: relative;
        overflow: hidden;
        border-radius: 32px 32px 0 0;
        /* Bricht aus dem Card-Padding aus (wird via overflow-x: hidden auf der Card gesichert) */
        margin: -40px -36px 28px -36px;
        padding: 34px 100px 30px 36px; /* rechts Platz für Close-Button */
        min-height: 118px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    /* Farbiges Gradient-Band – Standard, wird per data-color überschrieben */
    .leitbild-modal-header::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(148deg, #dbeafe 0%, #bae6fd 50%, #93c5fd 100%);
        z-index: 0;
        border-radius: inherit;
        transition: background 0.45s ease;
    }

    /* Licht-Reflex oben links */
    .leitbild-modal-header::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 75% 60% at 15% 10%, rgba(255,255,255,0.65) 0%, transparent 55%),
            radial-gradient(ellipse 50% 45% at 85% 80%, rgba(255,255,255,0.35) 0%, transparent 55%);
        z-index: 1;
        pointer-events: none;
        border-radius: inherit;
        mix-blend-mode: screen;
    }

    /* Watermark-Nummer – links positioniert, deutlich sichtbar */
    .leitbild-modal-num {
        font-size: 8.5rem;
        font-weight: 900;
        line-height: 1;
        letter-spacing: -0.08em;
        color: currentColor;
        opacity: 0.20;
        position: absolute;
        left: 22px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        z-index: 2;
        font-variant-numeric: tabular-nums;
        white-space: nowrap;
        transition: opacity 0.4s ease;
        user-select: none;
        -webkit-user-select: none;
    }

    @media (max-width: 640px) {
        .leitbild-modal-num {
            font-size: 6rem;
            left: 16px;
        }
    }



    /* Farbtrennlinie – untere Kante des Header-Bands */
    .leitbild-modal-color-line {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        border-radius: 0;
        background: linear-gradient(90deg, var(--amina-blue), var(--amina-pink));
        z-index: 6;
        transition: background 0.45s ease;
    }

    /* ── TITEL ── */
    .leitbild-modal-title {
        font-size: 1.55rem;
        font-weight: 900;
        line-height: 1.2;
        color: var(--amina-dark);
        letter-spacing: -0.025em;
        margin-bottom: 10px;
        position: relative;
        z-index: 3;
    }

    @media (min-width: 768px) {
        .leitbild-modal-title {
            font-size: 1.85rem;
        }
    }

    /* ── SUBTITLE BADGE ── */
    .leitbild-modal-subtitle {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        max-width: fit-content;
        width: fit-content;
        font-size: 0.72rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        padding: 7px 18px;
        border-radius: 9999px;
        background: rgba(72, 160, 214, 0.12);
        color: var(--amina-blue);
        transition: all 0.4s ease;
        position: relative;
        z-index: 3;
        box-shadow: 0 2px 8px rgba(72,160,214,0.1), inset 0 1px 1px rgba(255,255,255,0.6);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }


    /* ── DIVIDER ── */
    .leitbild-modal-divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0,0,0,0.07), transparent);
        margin: 22px 0;
    }

    /* ── FLIESSTEXT ── */
    .leitbild-modal-text {
        font-size: 1.02rem;
        line-height: 1.78;
        color: #475569;
        font-weight: 500;
        /* Blocksatz analog zum Info-Modal (.oz-info-text): jede Zeile läuft
           bündig bis zum rechten Rand. Die deutsche Silbentrennung liefert
           die nötigen Umbruchpunkte, damit im Blocksatz keine
           Wortabstands-Flüsse entstehen. Identische Trennlimits wie im
           Info-Modal: min. 8 Buchstaben Wortlänge, 4 davor, 3 danach,
           max. 2 Trennungen in Folge. */
        text-align: justify;
        text-wrap: pretty;
        hyphens: auto;
        -webkit-hyphens: auto;
        hyphenate-limit-chars: 8 4 3;
        -webkit-hyphenate-limit-before: 4;
        -webkit-hyphenate-limit-after: 3;
        hyphenate-limit-lines: 2;
        -webkit-hyphenate-limit-lines: 2;
    }

    /* ── MOBILE HEADER ANPASSUNG ── */
    @media (max-width: 640px) {
        .leitbild-modal-header {
            margin: -32px -24px 22px -24px;
            padding: 28px 72px 24px 24px;
            min-height: 100px;
        }
        .leitbild-modal-num {
            font-size: 5rem;
            right: 40px;
        }
    }


    .leitbild-modal-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 28px;
        padding-top: 20px;
        border-top: 1px solid rgba(0,0,0,0.06);
    }

    .leitbild-modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--amina-dark);
        transition: all 0.5s var(--liquid-bounce);
        box-shadow: 0 4px 12px rgba(0,0,0,0.04), inset 0 1px 2px rgba(255,255,255,1);
        z-index: 10;
    }

    .leitbild-modal-close:hover {
        background: var(--amina-dark);
        color: white;
        transform: rotate(90deg) scale(1.05);
    }
    
    /* ... weitere Modal Styles bleiben unangetastet ... */
    
    /* ── NAV CONTAINER ── */
    .leitbild-modal-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 24px;
        padding-top: 18px;
        border-top: 1px solid rgba(0,0,0,0.055);
        gap: 10px;
    }

    /* ── PREMIUM NAV BUTTONS – Glassmorphism + Liquid Morph ── */
    .leitbild-modal-nav-btn {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 0.72rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--amina-dark);
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.92);
        padding: 11px 20px;
        border-radius: 16px;
        cursor: pointer;
        transition: all 0.5s var(--liquid-bounce);
        box-shadow:
            0 4px 16px rgba(0,0,0,0.05),
            0 1px 4px rgba(0,0,0,0.04),
            inset 0 1px 3px rgba(255,255,255,1),
            inset 0 0 0 1px rgba(255,255,255,0.55);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        min-width: 100px;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    /* Noise-Textur auf Buttons */
    .leitbild-modal-nav-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: var(--noise-subtle);
        background-size: 150px 150px;
        opacity: 0.04;
        pointer-events: none;
        z-index: 0;
        mix-blend-mode: overlay;
    }

    .leitbild-modal-nav-btn span,
    .leitbild-modal-nav-btn svg {
        position: relative;
        z-index: 1;
    }

    .leitbild-modal-nav-btn:not(:disabled):hover {
        border-radius: 22px 10px 22px 10px;
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(255, 255, 255, 1);
        box-shadow:
            0 10px 28px rgba(0,0,0,0.1),
            0 4px 12px rgba(0,0,0,0.06),
            inset 0 1px 3px rgba(255,255,255,1);
    }

    .leitbild-modal-nav-btn:not(:disabled):active {
        transform: translateY(-1px) scale(0.98);
        transition-duration: 0.15s;
    }

    .leitbild-modal-nav-btn:disabled {
        opacity: 0.28;
        cursor: not-allowed;
        transform: none !important;
        box-shadow: none;
        filter: grayscale(0.3);
    }

    /* ── COUNTER – Premium Pill ── */
    .leitbild-modal-counter {
        font-size: 0.7rem;
        font-weight: 900;
        color: rgba(0, 0, 0, 0.35);
        letter-spacing: 0.12em;
        font-variant-numeric: tabular-nums;
        background: rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0,0,0,0.055);
        padding: 7px 16px;
        border-radius: 9999px;
        white-space: nowrap;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        flex-shrink: 0;
    }


    /* ═══════════════════════════════════════════════════
       💎 MODAL COLOR SYSTEM – Permanenter Glow + Header-DNA
       ═══════════════════════════════════════════════════ */

    /* ── BLUE ── */
    .leitbild-modal-card[data-color="blue"] {
        border-color: rgba(147, 197, 253, 0.55);
        box-shadow:
            0 32px 80px -12px rgba(0, 0, 0, 0.22),
            0 0 30px rgba(72, 160, 214, 0.20),
            0 0 70px rgba(72, 160, 214, 0.08),
            inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    }
    .leitbild-modal-card[data-color="blue"] .leitbild-modal-header::before {

    }
    .leitbild-modal-card[data-color="blue"] .leitbild-modal-num       { color: var(--amina-blue); }
      .leitbild-modal-card[data-color="blue"] .leitbild-modal-color-line { background: linear-gradient(90deg, var(--amina-blue) 0%, #7dd3fc 100%); }
    .leitbild-modal-card[data-color="blue"] .leitbild-modal-subtitle  {
        background: rgba(72, 160, 214, 0.12);
        color: var(--amina-blue);
        box-shadow: 0 2px 8px rgba(72,160,214,0.12), inset 0 1px 1px rgba(255,255,255,0.6);
    }


    /* ── PINK ── */
    .leitbild-modal-card[data-color="pink"] {
        border-color: rgba(249, 168, 212, 0.55);
        box-shadow:
            0 32px 80px -12px rgba(0, 0, 0, 0.22),
            0 0 30px rgba(213, 90, 146, 0.20),
            0 0 70px rgba(213, 90, 146, 0.08),
            inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    }
    .leitbild-modal-card[data-color="pink"] .leitbild-modal-header::before {
        background: linear-gradient(148deg, #fce7f3 0%, #fbcfe8 48%, #f9a8d4 100%);
    }
    .leitbild-modal-card[data-color="pink"] .leitbild-modal-num       { color: var(--amina-pink); }
    .leitbild-modal-card[data-color="pink"] .leitbild-modal-color-line { background: linear-gradient(90deg, var(--amina-pink) 0%, #f9a8d4 100%); }
    .leitbild-modal-card[data-color="pink"] .leitbild-modal-subtitle  {
        background: rgba(213, 90, 146, 0.12);
        color: var(--amina-pink);
        box-shadow: 0 2px 8px rgba(213,90,146,0.12), inset 0 1px 1px rgba(255,255,255,0.6);
    }

    /* ── GREEN ── */
    .leitbild-modal-card[data-color="green"] {
        border-color: rgba(134, 239, 172, 0.55);
        box-shadow:
            0 32px 80px -12px rgba(0, 0, 0, 0.22),
            0 0 30px rgba(127, 177, 78, 0.20),
            0 0 70px rgba(127, 177, 78, 0.08),
            inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    }
    .leitbild-modal-card[data-color="green"] .leitbild-modal-header::before {
        background: linear-gradient(148deg, #dcfce7 0%, #bbf7d0 48%, #86efac 100%);
    }
    .leitbild-modal-card[data-color="green"] .leitbild-modal-num       { color: var(--amina-green); }
    .leitbild-modal-card[data-color="green"] .leitbild-modal-color-line { background: linear-gradient(90deg, var(--amina-green) 0%, #86efac 100%); }
    .leitbild-modal-card[data-color="green"] .leitbild-modal-subtitle  {
        background: rgba(127, 177, 78, 0.12);
        color: var(--amina-green);
        box-shadow: 0 2px 8px rgba(127,177,78,0.12), inset 0 1px 1px rgba(255,255,255,0.6);
    }

    /* ── YELLOW ── */
    .leitbild-modal-card[data-color="yellow"] {
        border-color: rgba(252, 211, 77, 0.55);
        box-shadow:
            0 32px 80px -12px rgba(0, 0, 0, 0.22),
            0 0 30px rgba(245, 158, 11, 0.20),
            0 0 70px rgba(245, 158, 11, 0.08),
            inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    }
    .leitbild-modal-card[data-color="yellow"] .leitbild-modal-header::before {
        background: linear-gradient(148deg, #fef3c7 0%, #fde68a 48%, #fcd34d 100%);
    }
    .leitbild-modal-card[data-color="yellow"] .leitbild-modal-num       { color: var(--amina-yellow); }
    .leitbild-modal-card[data-color="yellow"] .leitbild-modal-color-line { background: linear-gradient(90deg, var(--amina-yellow) 0%, #fcd34d 100%); }
    .leitbild-modal-card[data-color="yellow"] .leitbild-modal-subtitle  {
        background: rgba(245, 158, 11, 0.12);
        color: var(--amina-yellow);
        box-shadow: 0 2px 8px rgba(245,158,11,0.12), inset 0 1px 1px rgba(255,255,255,0.6);
    }

    /* ── COLOR-MATCHED NAV BUTTON HOVER ── */
    .leitbild-modal-card[data-color="blue"]   .leitbild-modal-nav-btn:not(:disabled):hover {
        background: rgba(72, 160, 214, 0.12);
        color: var(--amina-blue);
        border-color: rgba(72, 160, 214, 0.3);
        box-shadow: 0 10px 28px rgba(72,160,214,0.15), inset 0 1px 3px rgba(255,255,255,0.9);
    }
    .leitbild-modal-card[data-color="pink"]   .leitbild-modal-nav-btn:not(:disabled):hover {
        background: rgba(213, 90, 146, 0.12);
        color: var(--amina-pink);
        border-color: rgba(213, 90, 146, 0.3);
        box-shadow: 0 10px 28px rgba(213,90,146,0.15), inset 0 1px 3px rgba(255,255,255,0.9);
    }
    .leitbild-modal-card[data-color="green"]  .leitbild-modal-nav-btn:not(:disabled):hover {
        background: rgba(127, 177, 78, 0.12);
        color: var(--amina-green);
        border-color: rgba(127, 177, 78, 0.3);
        box-shadow: 0 10px 28px rgba(127,177,78,0.15), inset 0 1px 3px rgba(255,255,255,0.9);
    }
    .leitbild-modal-card[data-color="yellow"] .leitbild-modal-nav-btn:not(:disabled):hover {
        background: rgba(245, 158, 11, 0.12);
        color: var(--amina-yellow);
        border-color: rgba(245, 158, 11, 0.3);
        box-shadow: 0 10px 28px rgba(245,158,11,0.15), inset 0 1px 3px rgba(255,255,255,0.9);
    }

    /* ── COLOR-MATCHED COUNTER ── */
    .leitbild-modal-card[data-color="blue"]   .leitbild-modal-counter { border-color: rgba(72,160,214,0.15); }
    .leitbild-modal-card[data-color="pink"]   .leitbild-modal-counter { border-color: rgba(213,90,146,0.15); }
    .leitbild-modal-card[data-color="green"]  .leitbild-modal-counter { border-color: rgba(127,177,78,0.15); }
    .leitbild-modal-card[data-color="yellow"] .leitbild-modal-counter { border-color: rgba(245,158,11,0.15); }

    /* ── CLOSE BUTTON – immer über Header-Band ── */
    .leitbild-modal-close {
        z-index: 20;
    }

    /* ═══════════════════════════════════════════════════
       💎 MODAL CARD BODY – Farbige Glass-Tints
       Gibt dem gesamten Modal die Farb-DNA der Quell-Karte.
       Überschreibt das neutrale Weiß des Basis-Stils.
       Ebene 1: radialer Farbschimmer unten rechts (rahmenfest,
       liegt unter allen Inhalten — ersetzt das frühere ::after-Overlay,
       Alpha 0.15 = 0.28 × 0.55 des alten Overlays).
       Ebene 2: der bestehende diagonale Glass-Verlauf.
       ═══════════════════════════════════════════════════ */
    .leitbild-modal-card[data-color="blue"] {
        background:
            radial-gradient(ellipse 50% 30% at 88% 94%, rgba(72, 160, 214, 0.15) 0%, transparent 72%),
            linear-gradient(
            158deg,
            rgba(219, 234, 254, 0.72) 0%,
            rgba(248, 252, 255, 0.65) 45%,
            rgba(224, 242, 254, 0.70) 100%
        );
    }

    .leitbild-modal-card[data-color="pink"] {
        background:
            radial-gradient(ellipse 50% 30% at 88% 94%, rgba(213, 90, 146, 0.15) 0%, transparent 72%),
            linear-gradient(
            158deg,
            rgba(252, 231, 243, 0.72) 0%,
            rgba(255, 248, 252, 0.65) 45%,
            rgba(252, 231, 243, 0.70) 100%
        );
    }

    .leitbild-modal-card[data-color="green"] {
        background:
            radial-gradient(ellipse 50% 30% at 88% 94%, rgba(127, 177, 78, 0.15) 0%, transparent 72%),
            linear-gradient(
            158deg,
            rgba(220, 252, 231, 0.72) 0%,
            rgba(248, 255, 252, 0.65) 45%,
            rgba(220, 252, 231, 0.70) 100%
        );
    }

    .leitbild-modal-card[data-color="yellow"] {
        background:
            radial-gradient(ellipse 50% 30% at 88% 94%, rgba(245, 158, 11, 0.15) 0%, transparent 72%),
            linear-gradient(
            158deg,
            rgba(254, 243, 199, 0.72) 0%,
            rgba(255, 252, 240, 0.65) 45%,
            rgba(254, 243, 199, 0.70) 100%
        );
    }




    /* ═══════════════════════════════════════════════════
       ✨ MODAL PERFECTION PACK
       1. Lead-In Farb-Akzent im Fließtext
       2. Radialer Farbschimmer (Ecke unten rechts)
       3. Spring-Feedback Animation
       ═══════════════════════════════════════════════════ */

    /* ── 1. LEAD-IN: Erste Wörter farbig ── */
    .modal-lead-in {
        font-weight: 900;
        font-size: 1.02em;
        letter-spacing: -0.01em;
        transition: color 0.4s ease;
    }

    [data-color="blue"]   .modal-lead-in { color: var(--amina-blue); }
    [data-color="pink"]   .modal-lead-in { color: var(--amina-pink); }
    [data-color="green"]  .modal-lead-in { color: var(--amina-green); }
    [data-color="yellow"] .modal-lead-in { color: var(--amina-yellow); }

    /* ── 2. RADIALE FARBSCHIMMER – unten rechts, immer aktiv ──
       Architektur-Fix: Der Schimmer lebt jetzt als zweite Gradient-Ebene
       direkt in den data-color-Hintergründen der Card (siehe „MODAL CARD
       BODY – Farbige Glass-Tints"). Das frühere ::after-Overlay war absolut
       positioniert im Scroll-Container (die Card scrollt selbst) — es malte
       dadurch ÜBER den Nav-Buttons und wanderte beim Scrollen mit dem Text
       mit. Als Hintergrund-Ebene klebt der Schimmer am Kartenrahmen
       (background-attachment: scroll = rahmenfest) und liegt garantiert
       unter jedem Inhalt. */

    /* ── 3. SPRING-FEEDBACK – federndes Reappear nach Navigation ── */
    @keyframes modal-spring-in {
        0%   { transform: scale(0.95) translateY(6px); opacity: 0.6; filter: blur(1.5px); }
        55%  { transform: scale(1.02) translateY(-2px); opacity: 1;   filter: blur(0); }
        80%  { transform: scale(0.99) translateY(0.5px); }
        100% { transform: scale(1)    translateY(0);    opacity: 1;   filter: blur(0); }
    }

    .modal-spring-in {
        animation: modal-spring-in 0.52s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    @media (prefers-reduced-motion: reduce) {
        .modal-spring-in { animation: none !important; }
    }

    /* Drag-State: subtile Verdunklung während Wischen */
    .leitbild-modal-body-inner.is-dragged {
        filter: blur(0.6px) brightness(0.97);
    }

    /* Body lock when modal open */
    body.leitbild-modal-open {
        overflow: hidden !important;
    }


    /* 🌊 MODAL SWIPE ENGINE */
    .leitbild-modal-card {
        touch-action: pan-y;
        user-select: none;
        -webkit-user-select: none;
        overscroll-behavior: contain; /* Blockiert das Rubber-Band-Scrolling auf iOS, das den Body mitzieht */
    }


    .leitbild-modal-card.is-swiping,
    .leitbild-modal-card.is-swiping .leitbild-modal-body-inner {
        transition: none !important;
    }

    .leitbild-modal-body-wrap {

        position: relative;
        overflow: hidden;
    }

    .leitbild-modal-body-inner {
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: translate3d(0, 0, 0);
    }





    /* Swipe direction indicator on modal card */
    .leitbild-modal-card.swipe-hint-left {
        border-left: 3px solid var(--amina-blue);
    }
    .leitbild-modal-card.swipe-hint-right {
        border-right: 3px solid var(--amina-blue);
    }

    /* Swipe hint text for touch */
    .leitbild-modal-swipe-hint {
        display: none;
        text-align: center;
        font-size: 0.7rem;
        font-weight: 700;
        color: rgba(0,0,0,0.2);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding-top: 12px;
    }

    @media (hover: none) and (pointer: coarse) {
        .leitbild-modal-swipe-hint {
            display: block;
        }
    }

    /* ═══════════════════════════════════════════════════
       🆕 PREMIUM 10/10 FEATURES
       ═══════════════════════════════════════════════════ */

    /* 🔢 FEATURE 1: STAT COUNTER – tabular nums */
    .stat-number { font-variant-numeric: tabular-nums; }

    /* 🎬 FEATURE 2: HERO ENTRANCE CHOREOGRAPHY */
    .hero-line {
        display: block;
        opacity: 0;
        transform: translateY(24px);
        filter: blur(6px);
        transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .hero-line.is-visible {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
    .hero-line:nth-child(2) { transition-delay: 0.15s; }
    .hero-line:nth-child(3) { transition-delay: 0.3s; }
    .hero-line:nth-child(4) { transition-delay: 0.45s; }

    .hero-badge-entrance {
        opacity: 0;
        transform: translateY(12px) scale(0.9);
        transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .hero-badge-entrance.is-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .hero-sub-entrance {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(4px);
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
    }
    .hero-sub-entrance.is-visible {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

.hero-bento-entrance {
opacity: 0;
transform: translateY(40px) scale(0.96);
transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
}


    .hero-bento-entrance.is-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }


    /* 🌊 FEATURE 3: SECTION WAVE DIVIDERS */
    .section-wave {
        position: relative;
        height: 50px;
        margin-top: -1px;
        margin-bottom: -1px;
        overflow: hidden;
        pointer-events: none;
        z-index: 2;
    }
    .section-wave svg {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

    /* 🖼️ FEATURE 4: BENTO HOVER OVERLAYS (Premium Glass) */
    .bento-overlay {
        position: absolute;
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 14px 20px;
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.8);
        border-radius: 16px;
        transform: translateY(120%) scale(0.95);
        opacity: 0;
        transition: all 0.6s var(--liquid-bounce);
        z-index: 5;
    }
    .bento-item:hover .bento-overlay {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    .bento-overlay span {
        color: var(--amina-dark);
        font-size: 0.72rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        display: flex;
        align-items: center;
        gap: 10px;
    }


    .bento-overlay span::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--amina-pink);
        flex-shrink: 0;
        box-shadow: 0 0 10px var(--amina-pink);
    }


    /* ✨ FEATURE 5: QUOTE HIGHLIGHT MARKER – Warm & Sauber */
    .highlight-reveal {
        background-size: 200% 100%;
        background-position: 100% 0;
        background-image: linear-gradient(
            to right,
            rgba(245, 158, 11, 0.22) 50%,
            transparent 50%
        );
        transition: background-position 1.6s cubic-bezier(0.22, 1, 0.36, 1);
        padding: 3px 6px;
        margin: -3px -6px;
        border-radius: 10px;
        box-decoration-break: clone;
        -webkit-box-decoration-break: clone;
    }

    .highlight-reveal.is-highlighted {
        background-position: 0 0;
    }

    .philosophy-quote p .highlight-reveal.is-highlighted {
        color: #854d0e;
        transition:
            background-position 1.6s cubic-bezier(0.22, 1, 0.36, 1),
            color 0.9s ease 0.7s;
    }



    /* 🧲 FEATURE 6: MAGNETIC CTA */
    .btn-super-cta:hover {
        will-change: transform;
    }
    .btn-super-cta.is-magnetic {
        transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    }

                
/* 🌊 PREMIUM LIQUID WAVE ENGINE (Original Parallax) */
.wave-container {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
    line-height: 0;
    transform: translateZ(0); /* Hardware Acceleration */
    margin-top: -2px;
    margin-bottom: -2px;
    z-index: 2;
    pointer-events: none;
}

/* Mathematischer Wave-Ausgleich für Sektionsgrenzen ohne Wave-Divider.
   Netto-Wave-Höhe: Desktop 76px (80-2-2), Mobile 46px (50-2-2).
   S2→S3 (Leitbild): gleicher Gap wie alle anderen Grenzen mit Wave. */
.wave-height-compensate {
    height: 46px;
    background: #f8fafc;
    pointer-events: none;
}
.wave-height-compensate--white {
    background: #ffffff;
}
@media (min-width: 1024px) {
    .wave-height-compensate {
        height: 76px;
    }
}

.wave-parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.wave-parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
    opacity: 0.3;
}

.wave-parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
    opacity: 0.6;
}

.wave-parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
    opacity: 1;
}

@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

@media (max-width: 768px) {
    .wave-container { height: 50px; }
}

/* 😴 PERFORMANCE FIX */
.js-paused .wave-parallax > use {
    animation-play-state: paused !important;
}

.js-paused.text-gradient-flow {
    animation-play-state: paused !important;
}

.js-paused .leitbild-progress-bar,
.js-paused.leitbild-progress-bar {
    animation-play-state: paused !important;
}

.js-paused .gal-progress-bar,
.js-paused.gal-progress-bar {
    animation-play-state: paused !important;
}

.js-paused.gal-back-card::after {
    animation-play-state: paused !important;
}

.js-paused.gal-back-card .gal-back-icon {
    animation-play-state: paused !important;
}


/* ═══════════════════════════════════════════════════
   📸 GALERIE – CATEGORY STRIPS + LIGHTBOX
   ═══════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════
   📸 GALERIE MORPH STRIP – Auto-Discovery Engine
   Level 0: Kategorien · Level 1: Sub-Alben · Level 2: Lightbox
   ═══════════════════════════════════════════════════ */

/* ── STRIP OUTER WRAPPER ── */
.gal-strip-outer {
    position: relative;
    width: 100%;
}

.gal-strip-outer::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 20px;
    width: 60px;
    background: linear-gradient(to left, #f7f8fb, transparent);
    pointer-events: none;
    z-index: 5;
}

@media (min-width: 1280px) {
    .gal-strip-outer::after { display: none; }
}

/* ── HORIZONTAL SCROLL ROW ── */
.gal-strip {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 8px 24px 22px;
    scrollbar-width: none;
    cursor: grab;
    min-height: 260px;
    align-items: stretch;
}

.gal-strip:active { cursor: grabbing; }
.gal-strip::-webkit-scrollbar { display: none; }

@media (min-width: 1280px) {
    .gal-strip {
        padding-left: calc((100vw - 1280px) / 2 + 24px);
        padding-right: calc((100vw - 1280px) / 2 + 24px);
    }
}

/* ── FOLDER / ALBUM CARD ── */
.gal-card {
    flex: 0 0 200px;
    border-radius: 22px;

    overflow: hidden;
    position: relative;
    cursor: pointer;
    /* Farb-Tint via JS-gesetzter --gal-tint-rgb.
       Opazität hoch genug für zuverlässige Sichtbarkeit auf allen Geräten
       (kein GPU-Boost durch saturate() nötig). backdrop-filter optional. */
    background:
        linear-gradient(
            148deg,
            rgba(var(--gal-tint-rgb, 72,160,214), 0.32) 0%,
            rgba(255,255,255,0.88) 48%,
            rgba(var(--gal-tint-rgb, 72,160,214), 0.24) 100%
        );

    backdrop-filter: blur(18px) saturate(1.6) brightness(1.02);
    -webkit-backdrop-filter: blur(18px) saturate(1.6) brightness(1.02);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow:
        0 0 0px 0px rgba(var(--gal-tint-rgb, 72,160,214), 0.0),
        0 0 18px rgba(var(--gal-tint-rgb, 72,160,214), 0.18),
        0 8px 28px -6px rgba(26, 32, 44, 0.10),
        inset 0 2px 0 rgba(255,255,255,1),
        inset 0 0 0 1.5px rgba(255,255,255,0.82),
        inset 0 0 28px rgba(255,255,255,0.35);
    scroll-snap-align: start;
    transition:
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.45s ease,
        border-color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    flex-direction: column;
    outline: none;
    padding: 0;
    flex-shrink: 0;
}

@media (min-width: 640px)  { .gal-card { flex: 0 0 225px; } }
@media (min-width: 1024px) { .gal-card { flex: 0 0 245px; } }

.gal-card:hover {
    transform: translateY(-8px) scale(1.025);
    border-color: rgba(255,255,255,1);
    box-shadow:
        0 0 36px rgba(var(--gal-tint-rgb, 72,160,214), 0.30),
        0 0 70px rgba(var(--gal-tint-rgb, 72,160,214), 0.12),
        0 20px 48px -6px rgba(26, 32, 44, 0.13),
        inset 0 2px 0 rgba(255,255,255,1),
        inset 0 0 0 1.5px rgba(255,255,255,1),
        inset 0 0 40px rgba(255,255,255,0.55);
}

.gal-card:focus-visible {
    outline: 3px solid rgba(var(--gal-tint-rgb, 72,160,214), 0.8);
    outline-offset: 3px;
}

/* Lichtreflex oben links – permanentes Premium-Glass-Highlight */
.gal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 55% at 18% 10%, rgba(255,255,255,0.72) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 82% 80%, rgba(255,255,255,0.40) 0%, transparent 55%);
    pointer-events: none;
    z-index: 3;
    border-radius: inherit;
    opacity: 0.75;
    transition: opacity 0.45s ease;
    mix-blend-mode: screen;
}

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

/* Noise-Körnung */
.gal-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--noise-subtle);
    background-size: 200px 200px;
    opacity: 0.028;
    pointer-events: none;
    z-index: 4;
    mix-blend-mode: overlay;
    border-radius: inherit;
}

/* ── COVER IMAGE ── */
.gal-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;

    display: block;
    flex-shrink: 0;
    transition: transform 1.3s var(--smooth-zoom);
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    border-radius: 22px 22px 0 0;
}

.gal-card:hover .gal-card-img {
    transform: scale(1.12);
}

/* Gradient-Overlay am unteren Bildrand → fließender Übergang zum Body */
.gal-card-img-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 20px 20px 0 0;
}


.gal-card-img-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(var(--gal-tint-rgb, 72,160,214), 0.04) 55%,
        rgba(var(--gal-tint-rgb, 72,160,214), 0.12) 100%
    );
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.gal-card:hover .gal-card-img-wrap::after {
    opacity: 0.7;
}

/* Placeholder (kein Cover) */
.gal-card-no-cover {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        148deg,
        rgba(var(--gal-tint-rgb, 72,160,214), 0.18) 0%,
        rgba(var(--gal-tint-rgb, 72,160,214), 0.06) 50%,
        rgba(var(--gal-tint-rgb, 72,160,214), 0.14) 100%
    );
    flex-shrink: 0;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

/* Lichtreflex auf leerem Placeholder */
/* Leere Karten – dezent gedimmt */
.gal-card--empty {
    opacity: 0.72;
    filter: saturate(0.7);
    pointer-events: auto;
    cursor: default;
}

.gal-card--empty:hover {
    transform: none !important;
    box-shadow:
        0 0 18px rgba(var(--gal-tint-rgb, 72,160,214), 0.13),
        0 8px 28px -6px rgba(26, 32, 44, 0.08),
        inset 0 2px 0 rgba(255,255,255,1),
        inset 0 0 0 1.5px rgba(255,255,255,0.82) !important;
}

.gal-card--empty .gal-card-img {
    transform: none !important;
}

/* "Bald verfügbar" Pill */
.gal-card-soon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.58rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(var(--gal-tint-rgb, 72,160,214), 0.75);
    background: rgba(var(--gal-tint-rgb, 72,160,214), 0.10);
    border: 1px solid rgba(var(--gal-tint-rgb, 72,160,214), 0.20);
    padding: 3px 8px;
    border-radius: 9999px;
    margin-top: 2px;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}


.gal-card-no-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 55% at 20% 15%, rgba(255,255,255,0.55) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 80% 80%, rgba(255,255,255,0.30) 0%, transparent 55%);
    pointer-events: none;
    mix-blend-mode: screen;
}


/* ── CARD BODY – Premium Glass Tinted ── */
.gal-card-body {
    padding: 11px 14px 13px;
    background: linear-gradient(
        to bottom,
        rgba(var(--gal-tint-rgb, 72,160,214), 0.38) 0%,
        rgba(255,255,255,1) 100%
    );
    /* Kein backdrop-filter hier — nested backdrop-filter auf Parent + Child
       verursacht iOS Safari Bug bei Karten am Viewport-Rand.
       Höhere Opazität macht den Blur-Effekt überflüssig. */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border-top: 1px solid rgba(255,255,255,0.75);
    position: relative;
    z-index: 2;
    transition: background 0.4s ease;
    border-radius: 0 0 20px 20px;
}


.gal-card:hover .gal-card-body {
    background: linear-gradient(
        to bottom,
        rgba(var(--gal-tint-rgb, 72,160,214), 0.28) 0%,
        rgba(255,255,255,1) 100%
    );
}

.gal-card-label {
    font-size: 0.86rem;
    font-weight: 900;
    color: var(--amina-dark);
    letter-spacing: -0.01em;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gal-card-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.67rem;
    font-weight: 800;
    color: rgba(var(--gal-tint-rgb, 72,160,214), 0.65);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.gal-card:hover .gal-card-meta {
    color: rgba(var(--gal-tint-rgb, 72,160,214), 0.9);
}

.gal-card-meta svg {
    flex-shrink: 0;
}

/* ── ARROW CHIP – im Card-Body, rechts ausgerichtet ── */
.gal-card-arrow {
    position: static;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(var(--gal-tint-rgb, 72,160,214), 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 0 0 1.5px rgba(var(--gal-tint-rgb, 72,160,214), 0.25);
    transition: all 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    color: rgba(var(--gal-tint-rgb, 72,160,214), 1);
    flex-shrink: 0;
    margin-left: auto;
    align-self: center;
}

.gal-card:hover .gal-card-arrow {
    transform: scale(1.15) translateX(2px);
    background: rgba(var(--gal-tint-rgb, 72,160,214), 1);
    color: white;
    box-shadow:
        0 4px 12px rgba(var(--gal-tint-rgb, 72,160,214), 0.38);
}



/* ── BACK BUTTON ── */
.gal-back-card {
    flex: 0 0 78px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: none;
    color: rgba(30, 41, 59, 0.42);
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    scroll-snap-align: start;
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    flex-shrink: 0;
    padding: 0;
    position: relative;
    overflow: visible;
    /* Dezenter rechtsseitiger Glow – permanente Brand-Linie */
    box-shadow:
        6px 0 18px -2px rgba(72, 160, 214, 0.22),
        10px 0 32px -4px rgba(213, 90, 146, 0.14),
        inset -2px 0 8px rgba(72, 160, 214, 0.06);
}

/* Vertikaler Lichtstrahl – rechte Kante */
.gal-back-card::after {
    content: "";
    position: absolute;
    top: 12%;
    right: -1.5px;
    width: 3px;
    height: 76%;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(72, 160, 214, 0.55) 25%,
        rgba(213, 90, 146, 0.65) 65%,
        transparent 100%
    );
    opacity: 0.7;
    transition: opacity 0.45s ease, height 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), top 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    animation: gal-back-glow-pulse 3.5s ease-in-out infinite;
}

@keyframes gal-back-glow-pulse {
    0%, 100% { opacity: 0.55; filter: blur(0px); }
    50%       { opacity: 0.85; filter: blur(0.4px); }
}

/* Pfeil-Pendel-Animation */
.gal-back-card .gal-back-icon {
    display: inline-block;
    animation: gal-back-arrow-swing 2.2s ease-in-out infinite;
}

@keyframes gal-back-arrow-swing {
    0%, 100% { transform: translateX(0px); }
    50%      { transform: translateX(-6px); }
}

.gal-back-card:hover .gal-back-icon {
    animation: gal-back-arrow-swing-hover 0.75s ease-in-out infinite;
}

@keyframes gal-back-arrow-swing-hover {
    0%, 100% { transform: translateX(0px); }
    50%      { transform: translateX(-9px); }
}



.gal-back-card:hover {
    transform: translateX(-5px);
    background: rgba(255, 255, 255, 0.88);
    color: var(--amina-dark);
    border-color: rgba(30, 41, 59, 0.22);
    border-style: solid;
    box-shadow:
        8px 0 24px -2px rgba(72, 160, 214, 0.32),
        14px 0 44px -4px rgba(213, 90, 146, 0.20),
        0 6px 20px rgba(0, 0, 0, 0.06),
        inset -2px 0 10px rgba(72, 160, 214, 0.09);
}

.gal-back-card:hover::after {
    opacity: 1;
    top: 8%;
    height: 84%;
}

.gal-back-card:focus-visible {
    outline: 3px solid var(--amina-blue);
    outline-offset: 3px;
}


/* ── BREADCRUMB – Premium Glass Pills ── */
.gal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    overflow: hidden;
}

.gal-breadcrumb-btn {
    font-size: 0.68rem;
    font-weight: 800;
    color: rgba(30, 41, 59, 0.40);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.88);
    padding: 5px 12px;
    border-radius: 9999px;
    line-height: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04), inset 0 1px 2px rgba(255,255,255,0.9);
}

.gal-breadcrumb-btn:hover {
    color: var(--amina-blue);
    border-color: rgba(72,160,214,0.3);
    background: rgba(72,160,214,0.07);
    transform: translateY(-1px);
}

.gal-breadcrumb-btn.is-active {
    color: var(--amina-dark);
    font-weight: 900;
    cursor: default;
    background: rgba(255,255,255,0.92);
    border-color: rgba(255,255,255,1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.07), inset 0 1px 2px rgba(255,255,255,1);
}

.gal-breadcrumb-sep {
    color: rgba(30, 41, 59, 0.18);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}


/* ── NAV ARROWS ── */
.gal-nav-arrows { display: flex; gap: 8px; }

.gal-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--amina-dark);
    transition: all 0.5s var(--liquid-bounce);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04), inset 0 1px 2px rgba(255,255,255,1);
    flex-shrink: 0;
}

.gal-arrow:hover {
    background: var(--amina-dark);
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ── PROGRESS BAR ── */
.gal-progress {
    height: 3px;
    background: rgba(0,0,0,0.04);
    border-radius: 99px;
    overflow: hidden;
}

.gal-progress-bar {
    height: 100%;
    width: 8%;
    background: linear-gradient(90deg, var(--amina-blue), var(--amina-pink), var(--amina-green), var(--amina-yellow));
    background-size: 300% 100%;
    animation: progressShimmer 4s ease infinite;
    border-radius: inherit;
    transition: width 0.3s ease;
}

/* ── MORPH ANIMATIONS ── */
@keyframes galCardExit {
    from { opacity: 1; transform: scale(1) translateY(0); }
    to   { opacity: 0; transform: scale(0.87) translateY(14px); }
}

@keyframes galCardEnter {
    from { opacity: 0; transform: scale(0.87) translateY(14px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.gal-card.gal-is-exiting,
.gal-back-card.gal-is-exiting {
    animation: galCardExit 0.28s cubic-bezier(0.55, 0, 1, 0.45) forwards;
    pointer-events: none;
}

.gal-card.gal-is-entering,
.gal-back-card.gal-is-entering {
    animation: galCardEnter 0.52s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

/* ── LIGHTBOX ── */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 25, 0.94);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
}

.gallery-lightbox-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 70px 16px 110px;
    touch-action: pan-y;
}

.gallery-lightbox-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: min(92vw, 1200px);
    max-height: calc(100vh - 220px);
    width: 100%;
}

.gallery-lightbox-img {
    max-width: 100%;
    max-height: calc(100vh - 220px);
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.gallery-lightbox.is-open .gallery-lightbox-img {
    transform: scale(1);
    opacity: 1;
}

.gallery-lightbox-img.is-transitioning {
    transition: transform 0.3s ease, opacity 0.25s ease !important;
}

.gallery-lightbox-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(5,10,25,0.7) 0%, transparent 100%);
    z-index: 5;
}

.gallery-lightbox-counter {
    color: rgba(255,255,255,0.55);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    font-variant-numeric: tabular-nums;
}

.gallery-lightbox-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s var(--liquid-bounce);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1), inset 0 1px 1px rgba(255,255,255,0.2);
    min-width: 48px;
    min-height: 48px;
}

.gallery-lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg) scale(1.05);
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s var(--liquid-bounce);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1), inset 0 1px 1px rgba(255,255,255,0.2);
    z-index: 5;
    min-width: 54px;
    min-height: 54px;
}

.gallery-lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.05);
}

.gallery-lightbox-nav[disabled] {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}

.gallery-lightbox-prev { left: max(14px, 2.5vw); }
.gallery-lightbox-next { right: max(14px, 2.5vw); }

.gallery-lightbox-bottombar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px 28px;
    background: linear-gradient(to top, rgba(5,10,25,0.85) 0%, transparent 100%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.gallery-lightbox-caption {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    opacity: 0.85;
}

.gallery-lightbox-thumbs {
    display: flex;
    gap: 7px;
    max-width: min(90vw, 600px);
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px 8px;
    scroll-behavior: smooth;
}

.gallery-lightbox-thumbs::-webkit-scrollbar { display: none; }

.gallery-lightbox-thumb {
    width: 50px;
    height: 38px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.4;
}

.gallery-lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.gallery-lightbox-thumb.is-active {
    border-color: white;
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.gallery-lightbox-thumb:hover:not(.is-active) {
    opacity: 0.75;
    transform: scale(1.08);
}

.gallery-lightbox-swipe-hint {
    display: none;
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 640px) {
    .gallery-lightbox-nav { display: none; }
    .gallery-lightbox-swipe-hint { display: block; }
    .gallery-lightbox-thumb { width: 58px; height: 44px; border-radius: 8px; }
    .gallery-lightbox-inner { padding: 64px 12px 120px; }
    .gallery-lightbox-img { max-height: calc(100vh - 200px); }
    .gallery-lightbox-stage { max-height: calc(100vh - 200px); }
}


body.gallery-lightbox-open {
    overflow: hidden;
    touch-action: none;
}


/* ----- GLAS-EFFEKT FÜR "UNSERE WERTE" BOXEN (MIT FARBAKZENTEN) ----- */
.focus-grid .glass-morph {
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 
        0 10px 25px -8px rgba(0, 20, 40, 0.2),
        inset 0 0 0 2px rgba(255, 255, 255, 0.8),
        inset 0 0 0 5px rgba(255, 255, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.4) !important;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.6) 80%);
}

/* Verstärkte Noise-Textur */
.focus-grid .glass-morph::after {
    opacity: 0.2 !important;
    background-image: var(--noise-intense) !important;
    mix-blend-mode: overlay !important;
}

/* Lichtreflexe (Glanzlichter) */
.focus-grid .glass-morph::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.3) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(255,255,245,0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
    border-radius: inherit;
    opacity: 0.7;
}

/* Farbige Glas-Akzente pro Box (sehr subtil) */
.focus-grid .glass-morph.hover-pink {
    background: 
        radial-gradient(circle at 60% 40%, rgba(213,90,146,0.2) 0%, transparent 70%),
        radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.6) 80%);
    background-blend-mode: overlay, normal;
}
.focus-grid .glass-morph.hover-blue {
    background: 
        radial-gradient(circle at 30% 70%, rgba(72,160,214,0.2) 0%, transparent 70%),
        radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.6) 80%);
    background-blend-mode: overlay, normal;
}
.focus-grid .glass-morph.hover-green {
    background: 
        radial-gradient(circle at 70% 60%, rgba(127,177,78,0.2) 0%, transparent 70%),
        radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.6) 80%);
    background-blend-mode: overlay, normal;
}
.focus-grid .glass-morph.hover-yellow {
    background: 
        radial-gradient(circle at 40% 30%, rgba(245,158,11,0.2) 0%, transparent 70%),
        radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.6) 80%);
    background-blend-mode: overlay, normal;
}

/* ═══════════════════════════════════════════════════
   💎 LEITBILD CARDS – PREMIUM 10/10 REDESIGN
   Sauber, eine Quelle, kein !important-Chaos
   ═══════════════════════════════════════════════════ */

/* ── BASIS-GLAS-ARCHITEKTUR ── */
.leitbild-card {
    backdrop-filter: blur(18px) saturate(2) brightness(1.05);
    -webkit-backdrop-filter: blur(18px) saturate(2) brightness(1.05);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.5s ease,
        border-color 0.35s ease;
}

/* Lichtreflexe – obere linke Ecke leuchtet immer */
.leitbild-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 18% 12%, rgba(255,255,255,0.75) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 82% 78%, rgba(255,255,255,0.45) 0%, transparent 55%);
    pointer-events: none;
    z-index: 3;
    border-radius: inherit;
    opacity: 0.65;
    transition: opacity 0.45s ease;
    mix-blend-mode: screen;
}

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

/* Noise-Textur – subtile Körnung */
.leitbild-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--noise-subtle);
    background-size: 200px 200px;
    opacity: 0.045;
    pointer-events: none;
    z-index: 4;
    mix-blend-mode: overlay;
    border-radius: inherit;
}

/* ── LEITBILD NUM – immer sichtbar mit Farbglow ── */
.leitbild-num {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.18;
    position: absolute;
    top: 16px;
    right: 16px;
    letter-spacing: -0.04em;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.5s ease;
    z-index: 5;
    color: currentColor;
    filter: blur(0px);
}

.leitbild-card:hover .leitbild-num {
    opacity: 0.38;
    transform: scale(1.15) rotate(-4deg);
    filter: blur(0.3px);
}

/* ── CTA ROW ── */
.leitbild-card-cta {
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.leitbild-card-cta svg {
    transition: transform 0.35s var(--liquid-bounce);
}

.leitbild-card:hover .leitbild-card-cta {
    gap: 12px;
    opacity: 1;
}

.leitbild-card:hover .leitbild-card-cta svg {
    transform: translateX(5px) scale(1.15);
}

/* ══════════════════════════════════════════════════
   FARB-VARIANTEN – je ein permanenter Farbglow
   3-Layer Box-Shadow: Nah-Glow · Weich-Glow · Inset-Glas
   ══════════════════════════════════════════════════ */

/* BLUE */
.leitbild-card.leitbild-color-blue {
    background: linear-gradient(
        148deg,
        rgba(240, 249, 255, 0.92) 0%,
        rgba(186, 230, 253, 0.82) 38%,
        rgba(125, 211, 252, 0.72) 100%
    );
    color: #0c4a6e;
    border-color: rgba(125, 211, 252, 0.55);
    box-shadow:
        0 0 18px rgba(72, 160, 214, 0.22),
        0 0 52px rgba(72, 160, 214, 0.09),
        0 8px 26px -6px rgba(72, 160, 214, 0.32),
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.88),
        inset 0 0 28px rgba(255, 255, 255, 0.38);
}

.leitbild-card.leitbild-color-blue .leitbild-card-title { color: #0c4a6e; }
.leitbild-card.leitbild-color-blue .leitbild-card-sub   { color: #164e63; opacity: 0.75; }

.leitbild-card.leitbild-color-blue:hover {
    border-color: rgba(125, 211, 252, 0.85);
    box-shadow:
        0 0 32px rgba(72, 160, 214, 0.30),
        0 0 80px rgba(72, 160, 214, 0.13),
        0 16px 40px -6px rgba(72, 160, 214, 0.38),
        inset 0 0 0 1.5px rgba(255, 255, 255, 1),
        inset 0 0 40px rgba(255, 255, 255, 0.52);
}

/* PINK */
.leitbild-card.leitbild-color-pink {
    background: linear-gradient(
        148deg,
        rgba(253, 242, 248, 0.92) 0%,
        rgba(251, 207, 232, 0.82) 38%,
        rgba(249, 168, 212, 0.72) 100%
    );
    color: #831843;
    border-color: rgba(249, 168, 212, 0.55);
    box-shadow:
        0 0 18px rgba(213, 90, 146, 0.22),
        0 0 52px rgba(213, 90, 146, 0.09),
        0 8px 26px -6px rgba(213, 90, 146, 0.32),
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.88),
        inset 0 0 28px rgba(255, 255, 255, 0.38);
}

.leitbild-card.leitbild-color-pink .leitbild-card-title { color: #831843; }
.leitbild-card.leitbild-color-pink .leitbild-card-sub   { color: #9d174d; opacity: 0.75; }

.leitbild-card.leitbild-color-pink:hover {
    border-color: rgba(249, 168, 212, 0.85);
    box-shadow:
        0 0 32px rgba(213, 90, 146, 0.30),
        0 0 80px rgba(213, 90, 146, 0.13),
        0 16px 40px -6px rgba(213, 90, 146, 0.38),
        inset 0 0 0 1.5px rgba(255, 255, 255, 1),
        inset 0 0 40px rgba(255, 255, 255, 0.52);
}

/* GREEN */
.leitbild-card.leitbild-color-green {
    background: linear-gradient(
        148deg,
        rgba(240, 253, 244, 0.92) 0%,
        rgba(187, 247, 208, 0.82) 38%,
        rgba(134, 239, 172, 0.72) 100%
    );
    color: #14532d;
    border-color: rgba(134, 239, 172, 0.55);
    box-shadow:
        0 0 18px rgba(127, 177, 78, 0.22),
        0 0 52px rgba(127, 177, 78, 0.09),
        0 8px 26px -6px rgba(127, 177, 78, 0.32),
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.88),
        inset 0 0 28px rgba(255, 255, 255, 0.38);
}

.leitbild-card.leitbild-color-green .leitbild-card-title { color: #14532d; }
.leitbild-card.leitbild-color-green .leitbild-card-sub   { color: #166534; opacity: 0.75; }

.leitbild-card.leitbild-color-green:hover {
    border-color: rgba(134, 239, 172, 0.85);
    box-shadow:
        0 0 32px rgba(127, 177, 78, 0.30),
        0 0 80px rgba(127, 177, 78, 0.13),
        0 16px 40px -6px rgba(127, 177, 78, 0.38),
        inset 0 0 0 1.5px rgba(255, 255, 255, 1),
        inset 0 0 40px rgba(255, 255, 255, 0.52);
}

/* YELLOW */
.leitbild-card.leitbild-color-yellow {
    background: linear-gradient(
        148deg,
        rgba(255, 251, 235, 0.92) 0%,
        rgba(253, 230, 138, 0.82) 38%,
        rgba(252, 211, 77, 0.72) 100%
    );
    color: #78350f;
    border-color: rgba(252, 211, 77, 0.55);
    box-shadow:
        0 0 18px rgba(245, 158, 11, 0.22),
        0 0 52px rgba(245, 158, 11, 0.09),
        0 8px 26px -6px rgba(245, 158, 11, 0.32),
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.88),
        inset 0 0 28px rgba(255, 255, 255, 0.38);
}

.leitbild-card.leitbild-color-yellow .leitbild-card-title { color: #78350f; }
.leitbild-card.leitbild-color-yellow .leitbild-card-sub   { color: #92400e; opacity: 0.75; }

.leitbild-card.leitbild-color-yellow:hover {
    border-color: rgba(252, 211, 77, 0.85);
    box-shadow:
        0 0 32px rgba(245, 158, 11, 0.30),
        0 0 80px rgba(245, 158, 11, 0.13),
        0 16px 40px -6px rgba(245, 158, 11, 0.38),
        inset 0 0 0 1.5px rgba(255, 255, 255, 1),
        inset 0 0 40px rgba(255, 255, 255, 0.52);
}

/* ── HOVER TRANSFORM (einheitlich für alle) ── */
.leitbild-card:hover {
    transform: translateY(-4px) scale(1.012);
    border-radius: 32px 18px 32px 18px;
}

/* ── FORM GLASS BUTTONS ── */
.form-glass-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 16px -4px rgba(26,32,44,0.06), inset 0 1px 3px rgba(255,255,255,0.9);
    cursor: pointer;
    transition: all 0.5s var(--liquid-bounce);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.form-glass-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--noise-medium);
    background-size: 150px 150px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
}

.form-glass-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    border-radius: 20px 20px 0 0;
    pointer-events: none;
    z-index: 1;
}

.form-glass-btn:hover {
    transform: translateY(-4px);
    border-radius: 26px 12px 26px 12px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 32px -6px rgba(26,32,44,0.1), inset 0 1px 3px rgba(255,255,255,1);
}

.form-glass-btn__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-glass-btn:hover .form-glass-btn__icon {
    transform: rotate(-8deg) scale(1.1);
}

.form-glass-btn--blue .form-glass-btn__icon {
    background: rgba(72, 160, 214, 0.12);
    color: var(--amina-blue);
    box-shadow: inset 0 0 0 1.5px rgba(72, 160, 214, 0.25), 0 4px 12px rgba(72, 160, 214, 0.15);
}

.form-glass-btn--pink .form-glass-btn__icon {
    background: rgba(213, 90, 146, 0.12);
    color: var(--amina-pink);
    box-shadow: inset 0 0 0 1.5px rgba(213, 90, 146, 0.25), 0 4px 12px rgba(213, 90, 146, 0.15);
}

.form-glass-btn__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.form-glass-btn__label {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--amina-dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.form-glass-btn--blue .form-glass-btn__label {
    color: var(--amina-blue);
}

.form-glass-btn--pink .form-glass-btn__label {
    color: var(--amina-pink);
}


.form-glass-btn__sub {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(30, 41, 59, 0.5);
    line-height: 1.3;
    margin-top: 2px;
    white-space: normal;
}

.form-glass-btn--blue { box-shadow: 0 0 18px rgba(72,160,214,0.18), 0 4px 16px -4px rgba(26,32,44,0.06), inset 0 0 0 1.5px rgba(72,160,214,0.35), inset 0 1px 3px rgba(255,255,255,0.9); }

.form-glass-btn--pink { box-shadow: 0 4px 16px -4px rgba(26,32,44,0.06), inset 0 0 0 1.5px rgba(213,90,146,0.2), inset 0 1px 3px rgba(255,255,255,0.9); }

.form-glass-btn--blue:hover { box-shadow: 0 12px 32px -6px rgba(72,160,214,0.2), inset 0 0 0 1.5px rgba(72,160,214,0.35), inset 0 1px 3px rgba(255,255,255,1); }
.form-glass-btn--pink:hover { box-shadow: 0 12px 32px -6px rgba(213,90,146,0.2), inset 0 0 0 1.5px rgba(213,90,146,0.35), inset 0 1px 3px rgba(255,255,255,1); }

@media (max-width: 640px) {
    .form-glass-btn__icon { width: 38px; height: 38px; }
    .form-glass-btn { padding: 12px 16px; gap: 10px; }
}

    /* ═══════════════════════════════════════════════════
       💬 ELTERNSTIMMEN – TESTIMONIALS
       ═══════════════════════════════════════════════════ */

    .testimonial-card {
        position: relative;
        overflow: hidden;
        padding: 28px 28px 24px;
    }

    .testimonial-quote-deco {
        position: absolute;
        top: 14px;
        right: 20px;
        font-size: 5.5rem;
        font-family: Georgia, 'Times New Roman', serif;
        font-weight: 900;
        line-height: 1;
        opacity: 0.08;
        pointer-events: none;
        z-index: 0;
        background: linear-gradient(135deg, var(--amina-pink), var(--amina-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transition: opacity 0.45s ease;
        user-select: none;
        -webkit-user-select: none;
    }

    .glass-morph:hover .testimonial-quote-deco {
        opacity: 0.16;
    }

    .testimonial-stars {
        display: flex;
        gap: 3px;
        margin-bottom: 14px;
        position: relative;
        z-index: 1;
    }

    .testimonial-star-icon {
        width: 15px;
        height: 15px;
        color: var(--amina-yellow);
        fill: var(--amina-yellow);
        flex-shrink: 0;
    }

    .testimonial-text {
        font-size: 0.88rem;
        line-height: 1.78;
        color: #475569;
        font-weight: 500;
        font-style: italic;
        position: relative;
        z-index: 1;
        margin-bottom: 20px;
    }

    .testimonial-author-row {
        display: flex;
        align-items: center;
        gap: 12px;
        position: relative;
        z-index: 1;
        padding-top: 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .testimonial-avatar {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
        font-weight: 900;
        color: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    }

    .testimonial-name {
        font-size: 0.85rem;
        font-weight: 900;
        color: var(--amina-dark);
        line-height: 1.2;
        letter-spacing: -0.01em;
    }

    .testimonial-meta {
        font-size: 0.68rem;
        font-weight: 700;
        color: rgba(30, 41, 59, 0.38);
        margin-top: 2px;
        letter-spacing: 0.02em;
    }

                /* ── TESTIMONIALS: Mobile Horizontal Scroll ── */
@media (max-width: 639px) {
    .testimonial-scroll-outer {
        position: relative;
        /* Bricht aus dem Section-Padding aus */
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    /* Fade-Edge rechts */
    .testimonial-scroll-outer::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 20px;
        width: 72px;
        background: linear-gradient(to left, rgba(248,249,252,1) 20%, transparent);
        pointer-events: none;
        z-index: 10;
    }

    .testimonial-scroll-wrap {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        /* Linker Inset = Section-Padding */
        padding: 8px 1.5rem 20px;
        scrollbar-width: none;
        cursor: grab;
        margin: 0;
    }

    .testimonial-scroll-wrap:active {
        cursor: grabbing;
    }

    .testimonial-scroll-wrap::-webkit-scrollbar {
        display: none;
    }

    /* 78vw = klarer Peek ohne Abschneiden */
    .testimonial-scroll-wrap .glass-morph {
        flex: 0 0 78vw;
        scroll-snap-align: start;
        min-width: 0;
        /* focus-grid Border-Effekt deaktivieren */
        outline: none !important;
        box-shadow:
            0 4px 24px -4px rgba(26,32,44,0.10),
            inset 0 2px 0 rgba(255,255,255,1),
            inset 0 0 0 1.5px rgba(255,255,255,0.82) !important;
    }

    /* Alle focus-grid Hover-Effekte auf Mobile aus */
    .testimonial-scroll-wrap.focus-grid .glass-morph,
    .testimonial-scroll-wrap.focus-grid:hover .glass-morph,
    .testimonial-scroll-wrap.focus-grid .glass-morph:hover {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        border-color: transparent !important;
    }



    /* Scroll-Dots */
    .testimonial-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 4px;
        padding-bottom: 4px;
    }

    .testimonial-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(0,0,0,0.12);
        transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
        flex-shrink: 0;
        cursor: pointer;
        padding: 0;
        border: none;
        /* Touch-Target: unsichtbares Padding via box-shadow, kein Layout-Shift */
        outline: none;
        position: relative;
    }

    .testimonial-dot::after {
        content: '';
        position: absolute;
        inset: -12px;
    }

    .testimonial-dot:focus-visible {
        outline: 2px solid var(--amina-blue);
        outline-offset: 4px;
        border-radius: 50%;
    }

    .testimonial-dot.is-active:focus-visible {
        border-radius: 9999px;
    }

    .testimonial-dot.is-active {
        width: 20px;
        border-radius: 9999px;
        background: linear-gradient(90deg, var(--amina-blue), var(--amina-pink));
    }
}

/* Dots auf Tablet/Desktop verstecken */
@media (min-width: 640px) {
    .testimonial-dots { display: none; }
    .testimonial-scroll-outer::after { display: none; }
}


                
    .trust-pill {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 8px 16px;
        border-radius: 9999px;
        font-size: 0.72rem;
        font-weight: 800;
        color: #475569;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 2px rgba(255, 255, 255, 0.8);
        letter-spacing: 0.02em;
        transition: all 0.4s var(--liquid-bounce);
    }

    .trust-pill:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    }

    /* ═══════════════════════════════════════════════════
       📅 UNSERE GESCHICHTE – TIMELINE
       ═══════════════════════════════════════════════════ */

    .timeline-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        position: relative;
    }

    @media (min-width: 768px) {
        .timeline-track {
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .timeline-track::before {
            content: '';
            position: absolute;
            top: 28px;
            left: 56px;
            right: 56px;
            height: 2px;
            background: linear-gradient(90deg, var(--amina-blue), var(--amina-pink), var(--amina-green), var(--amina-yellow));
            background-size: 300% 100%;
            animation: progressShimmer 4s ease infinite;
            z-index: 0;
            border-radius: 2px;
            opacity: 0.5;
        }
    }

    .timeline-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        z-index: 1;
    }

    @media (min-width: 768px) {
        .timeline-item {
            align-items: center;
            text-align: center;
        }
        .timeline-item .timeline-card {
            flex: 1;
            align-self: stretch;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
    }


    .timeline-dot {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 2px solid rgba(255, 255, 255, 0.95);
        box-shadow:
            0 6px 20px rgba(0, 0, 0, 0.07),
            inset 0 2px 4px rgba(255, 255, 255, 0.9);
        margin-bottom: 14px;
        flex-shrink: 0;
        transition: all 0.5s var(--liquid-bounce);
        position: relative;
        z-index: 2;
    }

    .timeline-item:hover .timeline-dot {
        transform: scale(1.18) rotate(8deg);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12), inset 0 2px 4px rgba(255, 255, 255, 0.9);
    }

    .timeline-year-label {
        font-size: 1.1rem;
        font-weight: 900;
        letter-spacing: -0.04em;
        line-height: 1;
    }

    .timeline-card {
        padding: 18px 20px;
        width: 100%;
    }

    .timeline-era {
        font-size: 0.62rem;
        font-weight: 900;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .timeline-card-title {
        font-size: 0.92rem;
        font-weight: 900;
        color: var(--amina-dark);
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .timeline-card-text {
        font-size: 0.76rem;
        font-weight: 600;
        color: #64748b;
        line-height: 1.6;
    }

    /* ── TIMELINE DOT SVG ANIMATIONS (wie Eingewöhnungsmodell) ── */
    .timeline-dot { overflow: visible; background: none; border: none; box-shadow: none; padding: 0; }
    .timeline-dot svg * { transform-box: view-box; transform-origin: 30px 30px; }


    .timeline-dot .svg-bg-circle { transition: all 0.6s var(--liquid-bounce); transform-origin: 30px 30px; }
    .timeline-item:hover .timeline-dot .svg-bg-circle { transform: scale(1.15); opacity: 0.25; }

    .timeline-dot .svg-solid-ring { transition: stroke-dashoffset 0.8s cubic-bezier(0.22, 1, 0.36, 1); transform: rotate(-90deg); transform-origin: 30px 30px; }
    .timeline-item:hover .timeline-dot .svg-solid-ring { stroke-dashoffset: 0; }

    .timeline-dot .svg-dash-ring { transition: opacity 0.4s ease; transform-origin: 30px 30px; }
    .timeline-item:hover .timeline-dot .svg-dash-ring { opacity: 0.6; animation: spin-ring 8s linear infinite; }

    .timeline-dot .svg-num-text { transition: all 0.6s var(--liquid-bounce); transform-origin: 30px 30px; }
    .timeline-item:hover .timeline-dot .svg-num-text { transform: scale(1.18); }

    .timeline-dot .svg-orbit-dot { transform-origin: 30px 30px; transition: opacity 0.5s ease; }
    .timeline-item:hover .timeline-dot .svg-orbit-dot { opacity: 1; animation: orbit-dot 3s linear infinite; }

    @keyframes spin-ring { 100% { transform: rotate(360deg); } }
    @keyframes orbit-dot { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

    /* ── TIMELINE TITLE BOOM ── */
    @keyframes jahre-boom {
        0%   { transform: scale(1);    filter: blur(0);     opacity: 1; }
        8%   { transform: scale(2.2);  filter: blur(2px);   opacity: 1; }
        16%  { transform: scale(0.82); filter: blur(0);     opacity: 1; }
        26%  { transform: scale(1.6);  filter: blur(1px);   }
        36%  { transform: scale(0.90); }
        46%  { transform: scale(1.28); }
        58%  { transform: scale(0.97); }
        70%  { transform: scale(1.10); }
        82%  { transform: scale(1.00); }
        100% { transform: scale(1);    filter: blur(0); }
    }

    .jahre-boom { display: inline-block; }
    .jahre-boom.is-booming {
        animation: jahre-boom 1.7s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;

    }


    /* Timeline: Dot-Hover hebt auch die Card hervor (gemeinsame Hover-Einheit) */
    .timeline-track.focus-grid .timeline-item:hover .glass-morph {
        opacity: 1 !important;
        filter: blur(0) !important;
        transform: scale(1.01) translateY(-6px) !important;
        z-index: 10 !important;
    }



    @media (max-width: 767px) {
        .timeline-track {
            padding-left: 24px;
        }
        .timeline-track::before {
            content: '';
            position: absolute;
            left: 52px;
            top: 28px;
            bottom: 28px;
            width: 2px;
            background: linear-gradient(to bottom, var(--amina-blue), var(--amina-pink), var(--amina-green), var(--amina-yellow));
            border-radius: 2px;
            opacity: 0.5;
        }

        .timeline-item {
            flex-direction: row;
            gap: 16px;
            align-items: flex-start;
        }
        .timeline-dot {
            flex-shrink: 0;
            margin-bottom: 0;
            margin-top: 0;
        }
                                
                                /* ── RAUM CAROUSEL ── */
.raum-carousel {
    cursor: grab;
    user-select: none;
}
.raum-carousel:active { cursor: grabbing; }

.raum-carousel-track {
    display: block;
}

.raum-slide img {
    display: block;
}


/* Prev / Next Buttons */
.raum-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--amina-blue);
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: all 0.25s ease;
    z-index: 10;
}

.raum-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 18px rgba(0,0,0,0.16);
}

.raum-btn-prev { left: 10px; }
.raum-btn-next { right: 10px; }

/* Dots */
.raum-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

.raum-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    border: 1.5px solid rgba(255,255,255,0.8);
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
    cursor: pointer;
}

.raum-dot.is-active {
    width: 18px;
    border-radius: 9999px;
    background: white;
}

    }
        
.responsive-bild {
  max-width: 100%;
  height: auto;
  display: block;
}

.bild-fokus {
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
}
                

/* ══ ADDITIONAL UEBER UNS STYLES ══ */
@media (max-width: 1023px) and (orientation: landscape) {
    .cta-pattern-bg { padding-bottom: 16rem !important; }
}

/* ── HERO CLIP-REVEAL WRAPPER ── */
.hero-clip-wrap {
    display: block;
    overflow: hidden;
    padding-bottom: 0.06em;
    margin-bottom: -0.06em;
}
