/* ─── online_viewer_net (23).html (header) ─── */
*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            
            --legion-silver: #c0c0c0;
            --legion-silver-light: #e0e0e0;
            --legion-black: #000000;
            --legion-dark: #0a0a0a;
            
            --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            
            --header-padding-desktop: 2rem 4rem;
            --header-padding-tablet: 1.5rem 2.5rem;
            --header-padding-mobile: 1.25rem 1.5rem;
            --header-padding-small: 1rem 1rem;
        }
        
        [data-legion-header] {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.95) 0%,
                rgba(0, 0, 0, 0.85) 50%,
                rgba(0, 0, 0, 0) 100%
            );
            padding: var(--header-padding-desktop);
            transition: all var(--transition-smooth);
        }
        [data-legion-header-inner] {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1920px;
            margin: 0 auto;
            gap: 1rem;
        }
        
        [data-legion-logo] {
            flex-shrink: 0;
            transition: transform var(--transition-smooth), opacity var(--transition-smooth);
        }
        [data-legion-logo]:hover {
            transform: scale(1.02);
            opacity: 0.9;
        }
        [data-legion-logo] img {
            display: block;
            width: auto;
            height: 160px;
            object-fit: contain;
            transition: height var(--transition-smooth);
        }
        
        [data-legion-header].scrolled [data-legion-logo] img {
            height: 100px;
        }
        
        [data-legion-cta] {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.25rem;
            background: linear-gradient(
                135deg,
                var(--legion-silver) 0%,
                var(--legion-silver-light) 50%,
                var(--legion-silver) 100%
            );
            color: var(--legion-black);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border-radius: 4px;
            transition: all var(--transition-smooth);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(192, 192, 192, 0.25);
            position: relative;
            overflow: hidden;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            white-space: nowrap;
            text-align: center;
            flex-shrink: 0;
        }
        [data-legion-cta]::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        [data-legion-cta]:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(192, 192, 192, 0.45);
        }
        [data-legion-cta]:hover::before {
            transform: translateX(100%);
        }
        [data-legion-cta]:active {
            transform: translateY(0);
            box-shadow: 0 2px 10px rgba(192, 192, 192, 0.3);
        }
        
        [data-legion-cta-pulse] {
            animation: legion-pulse 2.5s ease-in-out infinite;
        }
        @keyframes legion-pulse {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(192, 192, 192, 0.25);
            }
            50% {
                box-shadow: 0 6px 30px rgba(192, 192, 192, 0.5);
            }
        }
        
        [data-legion-header].scrolled [data-legion-cta] {
            padding: 0.75rem 1.5rem;
            font-size: 0.75rem;
        }
        
        @media (min-width: 1440px) {
            [data-legion-logo] img {
                height: 180px;
            }
            [data-legion-header].scrolled [data-legion-logo] img {
                height: 110px;
            }
            [data-legion-cta] {
                padding: 1.125rem 2.5rem;
                font-size: 0.9375rem;
            }
            [data-legion-header].scrolled [data-legion-cta] {
                padding: 0.875rem 2rem;
                font-size: 0.875rem;
            }
        }
        
        @media (max-width: 1024px) {
            [data-legion-header] {
                padding: var(--header-padding-tablet);
            }
            [data-legion-logo] img {
                height: 130px;
            }
            [data-legion-header].scrolled [data-legion-logo] img {
                height: 85px;
            }
            [data-legion-cta] {
                padding: 0.875rem 1.75rem;
                font-size: 0.8125rem;
                letter-spacing: 0.075em;
            }
            [data-legion-header].scrolled [data-legion-cta] {
                padding: 0.75rem 1.5rem;
                font-size: 0.75rem;
            }
        }
        
        @media (max-width: 768px) {
            [data-legion-header] {
                padding: var(--header-padding-mobile);
            }
            [data-legion-logo] img {
                height: 110px;
            }
            [data-legion-header].scrolled [data-legion-logo] img {
                height: 75px;
            }
            [data-legion-cta] {
                padding: 0.75rem 1.5rem;
                font-size: 0.75rem;
                letter-spacing: 0.05em;
                border-radius: 3px;
            }
            [data-legion-header].scrolled [data-legion-cta] {
                padding: 0.625rem 1.25rem;
                font-size: 0.6875rem;
            }
        }
        
        @media (max-width: 600px) {
            [data-legion-header] {
                padding: var(--header-padding-small);
            }
            [data-legion-header-inner] {
                justify-content: space-between;
            }
            [data-legion-logo] img {
                height: 100px;
            }
            [data-legion-header].scrolled [data-legion-logo] img {
                height: 70px;
            }
            [data-legion-cta] {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            [data-legion-header] {
                padding: 0.875rem 0.75rem;
            }
            [data-legion-logo] img {
                height: 85px;
            }
            [data-legion-header].scrolled [data-legion-logo] img {
                height: 60px;
            }
        }
        
        @media (max-width: 360px) {
            [data-legion-header] {
                padding: 0.75rem 0.5rem;
            }
            [data-legion-logo] img {
                height: 70px;
            }
            [data-legion-header].scrolled [data-legion-logo] img {
                height: 50px;
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            [data-legion-cta-pulse] {
                animation: none;
            }
            [data-legion-cta]::before {
                display: none;
            }
            [data-legion-cta],
            [data-legion-logo] {
                transition: none;
            }
        }
        
        [data-legion-cta]:focus-visible,
        [data-legion-logo]:focus-visible {
            outline: 2px solid var(--legion-silver);
            outline-offset: 3px;
        }

/* ─── online_viewer_net (24).html (section #hero) ─── */
.legion-hero-section {
            background: #000000;
            color: #ffffff;
            min-height: 100vh;
            min-height: 100dvh;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            position: relative;
            overflow: hidden;
            padding: clamp(1.5rem, 4vh, 4rem) clamp(1rem, 4vw, 2rem);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            box-sizing: border-box;
        }
        .legion-hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                linear-gradient(45deg,
                    transparent 0%,
                    transparent 48%,
                    rgba(192, 192, 192, 0.02) 49%,
                    rgba(192, 192, 192, 0.03) 50%,
                    rgba(192, 192, 192, 0.02) 51%,
                    transparent 52%,
                    transparent 100%);
            background-size: 80px 80px;
            animation: hero-bg-shift 60s linear infinite;
            opacity: 0.3;
            pointer-events: none;
            z-index: 1;
        }
        @keyframes hero-bg-shift {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            100% {
                transform: translate(50px, 50px) rotate(360deg);
            }
        }
        .legion-hero-section .hero-content {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 10;
            transform: translateY(0);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            max-height: calc(100vh - clamp(3rem, 8vh, 8rem));
            max-height: calc(100dvh - clamp(3rem, 8vh, 8rem));
        }
        .legion-hero-section .hero-logo-wrapper {
            margin: 0 auto clamp(1rem, 3vh, 3rem) auto;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 1;
            max-width: 100%;
        }
        .legion-hero-section .hero-logo {
            width: clamp(200px, 65vw, 1000px);
            height: clamp(80px, 22vh, 400px);
            background: transparent;
            border: none;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: none;
            flex-shrink: 1;
        }
        .legion-hero-section .hero-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .legion-hero-section .hero-subtitle-wrapper {
            position: relative;
            margin: 0 auto clamp(1rem, 2.5vh, 2.5rem) auto;
            max-width: 900px;
            width: 100%;
            padding: clamp(1rem, 2.5vh, 2.5rem) clamp(1rem, 4vw, 2rem);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .legion-hero-section .hero-subtitle-wrapper::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 180%;
            background: radial-gradient(ellipse at center,
                rgba(192, 192, 192, 0.08) 0%,
                rgba(192, 192, 192, 0.04) 30%,
                transparent 70%);
            opacity: 0.6;
            animation: hero-glow-pulse 8s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }
        @keyframes hero-glow-pulse {
            0%, 100% {
                opacity: 0.3;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.6;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }
        .legion-hero-section .hero-subtitle-wrapper:hover {
            transform: scale(1.02);
        }
        .legion-hero-section .hero-subtitle-wrapper:hover::before {
            opacity: 0.8;
            animation: hero-glow-pulse 4s ease-in-out infinite;
        }
        .legion-hero-section .hero-subtitle-line-top {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 1px;
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(192, 192, 192, 0.5) 20%,
                rgba(224, 224, 224, 0.8) 50%,
                rgba(192, 192, 192, 0.5) 80%,
                transparent 100%);
            box-shadow: 0 0 10px rgba(224, 224, 224, 0.3);
            animation: hero-line-pulse 4s ease-in-out infinite;
        }
        .legion-hero-section .hero-subtitle-line-bottom {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 1px;
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(192, 192, 192, 0.5) 20%,
                rgba(224, 224, 224, 0.8) 50%,
                rgba(192, 192, 192, 0.5) 80%,
                transparent 100%);
            box-shadow: 0 0 10px rgba(224, 224, 224, 0.3);
            animation: hero-line-pulse 4s ease-in-out infinite 0.5s;
        }
        @keyframes hero-line-pulse {
            0%, 100% {
                width: 60%;
                opacity: 1;
                box-shadow: 0 0 10px rgba(224, 224, 224, 0.3);
            }
            50% {
                width: 65%;
                opacity: 0.8;
                box-shadow: 0 0 15px rgba(224, 224, 224, 0.5);
            }
        }
        .legion-hero-section .hero-subtitle-wrapper:hover .hero-subtitle-line-top,
        .legion-hero-section .hero-subtitle-wrapper:hover .hero-subtitle-line-bottom {
            width: 70%;
            box-shadow: 0 0 20px rgba(224, 224, 224, 0.6);
        }
        .legion-hero-section .hero-subtitle-accent-left {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(192, 192, 192, 0.6) 100%);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            animation: hero-accent-pulse-left 3s ease-in-out infinite;
        }
        @keyframes hero-accent-pulse-left {
            0%, 100% {
                width: 40px;
                opacity: 0.6;
            }
            50% {
                width: 50px;
                opacity: 1;
            }
        }
        .legion-hero-section .hero-subtitle-accent-right {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg,
                rgba(192, 192, 192, 0.6) 0%,
                transparent 100%);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            animation: hero-accent-pulse-right 3s ease-in-out infinite 0.3s;
        }
        @keyframes hero-accent-pulse-right {
            0%, 100% {
                width: 40px;
                opacity: 0.6;
            }
            50% {
                width: 50px;
                opacity: 1;
            }
        }
        .legion-hero-section .hero-subtitle-wrapper:hover .hero-subtitle-accent-left {
            width: 60px;
            left: -10px;
        }
        .legion-hero-section .hero-subtitle-wrapper:hover .hero-subtitle-accent-right {
            width: 60px;
            right: -10px;
        }
        .legion-hero-section .hero-subtitle {
            font-size: clamp(0.9rem, 3.5vw, 2.5rem);
            font-weight: 300;
            letter-spacing: clamp(0.1em, 2vw, 0.35em);
            text-transform: uppercase;
            margin: 0;
            color: #e0e0e0;
            position: relative;
            z-index: 2;
            text-shadow: 
                0 0 20px rgba(224, 224, 224, 0.3),
                0 0 40px rgba(192, 192, 192, 0.15);
            background: linear-gradient(180deg,
                #f0f0f0 0%,
                #e0e0e0 40%,
                #c0c0c0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.6;
            padding: 0 clamp(0.5rem, 3vw, 3rem);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            width: 100%;
        }
        
        .legion-hero-section .hero-subtitle .headline-line-1,
        .legion-hero-section .hero-subtitle .headline-line-2 {
            display: block;
            text-align: center;
            white-space: nowrap;
        }
        .legion-hero-section .hero-subtitle::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(255, 255, 255, 0.15) 50%,
                transparent 100%);
            transform: skewX(-20deg);
            z-index: 1;
            animation: hero-shimmer 6s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes hero-shimmer {
            0% {
                left: -100%;
            }
            20% {
                left: 120%;
            }
            100% {
                left: 120%;
            }
        }
        .legion-hero-section .hero-subtitle-wrapper:hover .hero-subtitle {
            text-shadow: 
                0 0 30px rgba(224, 224, 224, 0.5),
                0 0 60px rgba(192, 192, 192, 0.25),
                0 0 80px rgba(255, 255, 255, 0.1);
        }
        .legion-hero-section .hero-subtitle-wrapper:hover .hero-subtitle::before {
            animation: hero-shimmer 3s ease-in-out infinite;
        }
        .legion-hero-section .hero-description-wrapper {
            position: relative;
            margin: 0 auto clamp(0.75rem, 2vh, 2rem) auto;
            max-width: 850px;
            width: 100%;
            padding: 0 clamp(1rem, 4vw, 2rem);
            flex-shrink: 1;
        }
        .legion-hero-section .hero-description {
            font-size: clamp(0.85rem, 2vw, 1.35rem);
            font-weight: 300;
            letter-spacing: clamp(0.05em, 1vw, 0.12em);
            line-height: clamp(1.6, 2vw, 2.2);
            margin: 0;
            color: #d8d8d8;
            text-align: center;
            text-shadow: 0 0 15px rgba(216, 216, 216, 0.1);
            word-spacing: 0.15em;
        }
        .legion-hero-section .hero-description-wrapper::after {
            content: '';
            position: absolute;
            bottom: clamp(-1rem, -1.5vh, -1.5rem);
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 1px;
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(192, 192, 192, 0.4) 50%,
                transparent 100%);
        }
        .legion-hero-section .hero-btn {
            display: inline-block;
            padding: clamp(1.3rem, 2.8vh, 2rem) clamp(3rem, 7vw, 5.5rem);
            background: linear-gradient(135deg, #c0c0c0 0%, #e0e0e0 50%, #c0c0c0 100%);
            color: #000000;
            font-size: clamp(0.75rem, 1.5vw, 1.1rem);
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            box-shadow: 
                0 4px 20px rgba(192, 192, 192, 0.3),
                0 0 40px rgba(192, 192, 192, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            margin-top: clamp(1rem, 2vh, 2rem);
            flex-shrink: 0;
        }
        .legion-hero-section .hero-btn:hover {
            transform: translateY(-4px);
            box-shadow: 
                0 8px 35px rgba(192, 192, 192, 0.6),
                0 0 70px rgba(192, 192, 192, 0.3),
                0 0 100px rgba(255, 255, 255, 0.1);
        }
        .legion-hero-section .hero-btn:active {
            transform: translateY(-1px);
        }
        .legion-hero-section .hero-btn {
            animation: hero-btn-pulse 3s ease-in-out infinite;
        }
        @keyframes hero-btn-pulse {
            0%, 100% {
                box-shadow: 
                    0 4px 20px rgba(192, 192, 192, 0.3),
                    0 0 40px rgba(192, 192, 192, 0.1);
            }
            50% {
                box-shadow: 
                    0 6px 25px rgba(192, 192, 192, 0.5),
                    0 0 50px rgba(192, 192, 192, 0.15);
            }
        }
        
        @media (min-width: 1601px) and (max-width: 1919px) {
            .legion-hero-section {
                padding: 2rem 2rem;
            }
            .legion-hero-section .hero-content {
                max-width: 1100px;
            }
            .legion-hero-section .hero-logo {
                width: 750px;
                height: 300px;
            }
            .legion-hero-section .hero-logo-wrapper {
                margin-bottom: 2rem;
            }
            .legion-hero-section .hero-subtitle-wrapper {
                max-width: 600px;
                padding: 1.5rem 1.75rem;
                margin-bottom: 2rem;
            }
            .legion-hero-section .hero-subtitle {
                font-size: 1.9rem;
                letter-spacing: 0.28em;
                padding: 0 1.5rem;
                line-height: 1.55;
            }
            .legion-hero-section .hero-description-wrapper {
                max-width: 750px;
                margin-bottom: 1.5rem;
                padding: 0 1.75rem;
            }
            .legion-hero-section .hero-description {
                font-size: 1.15rem;
                letter-spacing: 0.1em;
                line-height: 1.9;
            }
            .legion-hero-section .hero-btn {
                padding: 1rem 2.5rem;
                font-size: 1rem;
                letter-spacing: 0.14em;
                margin-top: 1.75rem;
            }
        }
        
        @media (min-width: 1280px) and (max-width: 1600px) {
            .legion-hero-section {
                padding: 1.5rem 2rem;
                min-height: 100vh;
                min-height: 100dvh;
            }
            .legion-hero-section .hero-content {
                max-width: 1050px;
                max-height: none;
                justify-content: center;
                gap: 0;
            }
            .legion-hero-section .hero-logo {
                width: max(600px, 45vw);
                height: max(240px, 27vh);
            }
            .legion-hero-section .hero-logo-wrapper {
                margin-bottom: clamp(1.5rem, 2.5vh, 2.5rem);
            }
            .legion-hero-section .hero-subtitle-wrapper {
                max-width: 650px;
                width: auto;
                padding: 1.25rem 2.5rem;
                margin-bottom: clamp(1.5rem, 2.5vh, 2.5rem);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            .legion-hero-section .hero-subtitle {
                font-size: clamp(1.4rem, 2.2vw, 1.8rem);
                letter-spacing: 0.2em;
                padding: 0 1rem;
                line-height: 1.5;
                text-align: center;
                width: 100%;
                display: block;
            }
            .legion-hero-section .hero-subtitle .headline-line-1,
            .legion-hero-section .hero-subtitle .headline-line-2 {
                display: block;
                text-align: center;
                width: 100%;
                white-space: nowrap;
            }
            .legion-hero-section .hero-description-wrapper {
                max-width: 700px;
                margin-bottom: clamp(1rem, 2vh, 1.75rem);
                padding: 0 1.5rem;
            }
            .legion-hero-section .hero-description {
                font-size: clamp(0.95rem, 1.5vw, 1.1rem);
                letter-spacing: 0.08em;
                line-height: 1.8;
            }
            .legion-hero-section .hero-btn {
                padding: 0.9rem 2.25rem;
                font-size: 0.9rem;
                letter-spacing: 0.12em;
                margin-top: clamp(1.25rem, 2vh, 1.75rem);
            }
            .legion-hero-section .hero-subtitle-accent-left,
            .legion-hero-section .hero-subtitle-accent-right {
                width: 30px;
            }
            .legion-hero-section .hero-subtitle-line-top,
            .legion-hero-section .hero-subtitle-line-bottom {
                width: 65%;
            }
        }
        
        @media (min-width: 1350px) and (max-width: 1550px) {
            .legion-hero-section .hero-logo {
                width: 620px;
                height: 250px;
            }
            
            .legion-hero-section .hero-subtitle-wrapper {
                
                max-width: 680px;
                
                padding: 1.2rem 3rem;
            }
            
            .legion-hero-section .hero-subtitle-wrapper::before {
                
                width: 100%;
                
                height: 160%;
                
                z-index: 0;
            }
            
            .legion-hero-section .hero-subtitle {
                font-size: 1.55rem;
                letter-spacing: 0.18em;
                
                padding: 0 1.5rem;
                
                z-index: 5;
                
                text-shadow: 
                    0 0 25px rgba(224, 224, 224, 0.4),
                    0 0 50px rgba(192, 192, 192, 0.2);
            }
            
            .legion-hero-section .hero-subtitle-accent-left {
                left: -5px;
            }
            .legion-hero-section .hero-subtitle-accent-right {
                right: -5px;
            }
            
            .legion-hero-section .hero-subtitle::before {
                
                width: 40%;
                
                left: -100%;
            }
        }
        
        @media (min-width: 1280px) and (max-width: 1399px) {
            .legion-hero-section .hero-logo {
                width: 550px;
                height: 220px;
            }
            
            .legion-hero-section .hero-subtitle-wrapper {
                max-width: 600px;
                padding: 1rem 2.5rem;
            }
            .legion-hero-section .hero-subtitle-wrapper::before {
                width: 95%;
                height: 150%;
            }
            .legion-hero-section .hero-subtitle {
                font-size: 1.4rem;
                letter-spacing: 0.16em;
                padding: 0 1.25rem;
                z-index: 5;
            }
            .legion-hero-section .hero-subtitle-accent-left {
                left: -3px;
            }
            .legion-hero-section .hero-subtitle-accent-right {
                right: -3px;
            }
        }
        
        @media (min-width: 1280px) and (max-height: 980px) {
            .legion-hero-section {
                padding: 1rem 2rem;
            }
            .legion-hero-section .hero-logo {
                width: max(500px, 38vw);
                height: max(190px, 21vh);
            }
            .legion-hero-section .hero-logo-wrapper {
                margin-bottom: min(1.5rem, 2vh);
            }
            .legion-hero-section .hero-subtitle-wrapper {
                padding: 1rem 2.5rem;
                margin-bottom: min(1.5rem, 2vh);
            }
            .legion-hero-section .hero-subtitle-wrapper::before {
                width: 95%;
                height: 150%;
            }
            .legion-hero-section .hero-subtitle {
                font-size: clamp(1.3rem, 2vw, 1.6rem);
                letter-spacing: 0.17em;
                line-height: 1.45;
                z-index: 5;
            }
            .legion-hero-section .hero-description-wrapper {
                margin-bottom: min(1rem, 1.5vh);
            }
            .legion-hero-section .hero-description {
                font-size: clamp(0.9rem, 1.4vw, 1.05rem);
                line-height: 1.75;
            }
            .legion-hero-section .hero-btn {
                padding: 0.8rem 2rem;
                font-size: 0.85rem;
                margin-top: min(1.25rem, 1.8vh);
            }
        }
        
        @media (min-width: 1280px) and (max-height: 850px) {
            .legion-hero-section {
                padding: 0.75rem 1.5rem;
            }
            .legion-hero-section .hero-logo {
                width: max(420px, 32vw);
                height: max(160px, 18vh);
            }
            .legion-hero-section .hero-logo-wrapper {
                margin-bottom: min(1rem, 1.5vh);
            }
            .legion-hero-section .hero-subtitle-wrapper {
                padding: 0.75rem 2rem;
                margin-bottom: min(1rem, 1.5vh);
            }
            .legion-hero-section .hero-subtitle-wrapper::before {
                width: 90%;
                height: 140%;
            }
            .legion-hero-section .hero-subtitle {
                font-size: clamp(1.1rem, 1.8vw, 1.4rem);
                letter-spacing: 0.15em;
                z-index: 5;
            }
            .legion-hero-section .hero-description {
                font-size: clamp(0.85rem, 1.3vw, 0.95rem);
                line-height: 1.65;
            }
            .legion-hero-section .hero-btn {
                padding: 0.7rem 1.75rem;
                font-size: 0.8rem;
                margin-top: min(1rem, 1.5vh);
            }
        }
        
        @media (max-width: 768px) {
            .legion-hero-section {
                min-height: 100vh;
                min-height: 100dvh;
                padding: clamp(1rem, 3vh, 3rem) clamp(0.75rem, 3vw, 1.5rem);
            }
            .legion-hero-section .hero-content {
                transform: translateY(-5vh);
                max-height: calc(100vh - clamp(2rem, 6vh, 6rem));
                max-height: calc(100dvh - clamp(2rem, 6vh, 6rem));
            }
            .legion-hero-section::before {
                animation-duration: 90s;
            }
            .legion-hero-section .hero-logo-wrapper {
                margin-bottom: clamp(0.75rem, 2vh, 2rem);
            }
            .legion-hero-section .hero-logo {
                width: clamp(180px, 75vw, 500px);
                height: clamp(70px, 18vh, 200px);
            }
            .legion-hero-section .hero-subtitle-wrapper {
                margin-bottom: clamp(0.75rem, 2vh, 2rem);
                padding: clamp(0.75rem, 2vh, 2rem) clamp(0.5rem, 2vw, 1rem);
            }
            .legion-hero-section .hero-subtitle-wrapper::before {
                animation-duration: 12s;
            }
            .legion-hero-section .hero-subtitle-line-top,
            .legion-hero-section .hero-subtitle-line-bottom {
                width: 80%;
                animation-duration: 6s;
            }
            .legion-hero-section .hero-subtitle-accent-left,
            .legion-hero-section .hero-subtitle-accent-right {
                width: 20px;
                animation-duration: 5s;
            }
            .legion-hero-section .hero-subtitle {
                font-size: clamp(0.8rem, 4vw, 1.6rem);
                letter-spacing: clamp(0.08em, 1.5vw, 0.2em);
                padding: 0 clamp(0.25rem, 2vw, 1rem);
            }
            .legion-hero-section .hero-subtitle .headline-line-1,
            .legion-hero-section .hero-subtitle .headline-line-2 {
                white-space: normal;
            }
            .legion-hero-section .hero-subtitle::before {
                animation-duration: 10s;
            }
            .legion-hero-section .hero-description-wrapper {
                margin-bottom: clamp(0.5rem, 1.5vh, 1.5rem);
                padding: 0 clamp(0.75rem, 3vw, 1.5rem);
            }
            .legion-hero-section .hero-description {
                font-size: clamp(0.75rem, 3.5vw, 1.15rem);
                line-height: clamp(1.5, 1.8vw, 2.4);
                letter-spacing: clamp(0.03em, 0.8vw, 0.08em);
            }
            .legion-hero-section .hero-btn {
                padding: clamp(0.7rem, 1.2vh, 1rem) clamp(1.2rem, 5vw, 2.5rem);
                font-size: clamp(0.7rem, 2.5vw, 1rem);
                margin-top: clamp(0.75rem, 1.5vh, 1.5rem);
            }
        }
        @media (max-width: 480px) {
            .legion-hero-section {
                padding: clamp(0.75rem, 2.5vh, 2.5rem) clamp(0.5rem, 2vw, 1rem);
            }
            .legion-hero-section .hero-content {
                transform: translateY(-6vh);
                max-height: calc(100vh - clamp(1.5rem, 5vh, 5rem));
                max-height: calc(100dvh - clamp(1.5rem, 5vh, 5rem));
            }
            .legion-hero-section .hero-logo-wrapper {
                margin-bottom: clamp(0.5rem, 1.5vh, 1.5rem);
            }
            .legion-hero-section .hero-logo {
                width: clamp(150px, 80vw, 350px);
                height: clamp(60px, 15vh, 140px);
            }
            .legion-hero-section .hero-subtitle-wrapper {
                margin-bottom: clamp(0.5rem, 1.5vh, 1.5rem);
                padding: clamp(0.5rem, 1.5vh, 1.5rem) clamp(0.25rem, 1vw, 0.5rem);
            }
            .legion-hero-section .hero-subtitle {
                letter-spacing: clamp(0.05em, 1vw, 0.15em);
                font-size: clamp(0.7rem, 4.5vw, 1.2rem);
            }
            .legion-hero-section .hero-description-wrapper {
                margin-bottom: clamp(0.5rem, 1.5vh, 1.5rem);
                padding: 0 clamp(0.5rem, 2vw, 1rem);
            }
            .legion-hero-section .hero-description {
                font-size: clamp(0.7rem, 3.8vw, 1rem);
                line-height: clamp(1.4, 1.6vw, 2);
            }
            .legion-hero-section .hero-subtitle-accent-left,
            .legion-hero-section .hero-subtitle-accent-right {
                opacity: 0.5;
                animation: none;
            }
            .legion-hero-section .hero-subtitle::before {
                display: none;
            }
            .legion-hero-section .hero-btn {
                padding: clamp(0.6rem, 1vh, 0.9rem) clamp(1rem, 6vw, 2rem);
                font-size: clamp(0.65rem, 3vw, 0.9rem);
                margin-top: clamp(0.5rem, 1vh, 1rem);
            }
        }
        @media (max-height: 500px) {
            .legion-hero-section {
                padding: clamp(0.5rem, 2vh, 1.5rem) clamp(0.5rem, 2vw, 1rem);
            }
            .legion-hero-section .hero-content {
                max-height: calc(100vh - 1rem);
                max-height: calc(100dvh - 1rem);
            }
            .legion-hero-section .hero-logo {
                height: clamp(40px, 12vh, 100px);
            }
            .legion-hero-section .hero-logo-wrapper {
                margin-bottom: clamp(0.25rem, 1vh, 0.75rem);
            }
            .legion-hero-section .hero-subtitle-wrapper {
                margin-bottom: clamp(0.25rem, 1vh, 0.75rem);
                padding: clamp(0.25rem, 1vh, 0.75rem) clamp(0.25rem, 1vw, 0.5rem);
            }
            .legion-hero-section .hero-description-wrapper {
                margin-bottom: clamp(0.25rem, 1vh, 0.5rem);
            }
            .legion-hero-section .hero-description {
                line-height: 1.4;
            }
            .legion-hero-section .hero-btn {
                margin-top: clamp(0.25rem, 1vh, 0.75rem);
                padding: clamp(0.5rem, 1vh, 0.8rem) clamp(0.8rem, 4vw, 1.5rem);
            }
        }
        @media (prefers-reduced-motion: reduce) {
            .legion-hero-section::before {
                animation: none;
                opacity: 0.1;
            }
            .legion-hero-section .hero-subtitle-wrapper::before {
                animation: none;
                opacity: 0.3;
            }
            .legion-hero-section .hero-subtitle-line-top,
            .legion-hero-section .hero-subtitle-line-bottom {
                animation: none;
            }
            .legion-hero-section .hero-subtitle-accent-left,
            .legion-hero-section .hero-subtitle-accent-right {
                animation: none;
            }
            .legion-hero-section .hero-subtitle::before {
                display: none;
            }
            .legion-hero-section .hero-btn {
                animation: none;
            }
            .legion-hero-section * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .legion-hero-section .hero-subtitle-wrapper:hover {
                transform: none;
            }
        }
        .legion-hero-section.hero-reveal {
            opacity: 0;
            animation: hero-fade-in 1.5s ease-out forwards;
        }
        @keyframes hero-fade-in {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            .legion-hero-section.hero-reveal {
                opacity: 1;
                animation: none;
            }
        }

/* ─── online_viewer_net (25).html (section #manifest) ─── */
.legion-manifest-section {
        position: relative;
        padding: 100px 0;
        background: #000000;
        overflow: hidden;
    }
    .legion-manifest-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 50% 30%, rgba(192, 192, 192, 0.03) 0%, transparent 60%),
            radial-gradient(circle at 50% 70%, rgba(192, 192, 192, 0.02) 0%, transparent 50%);
        pointer-events: none;
    }
    .manifest-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
        position: relative;
        z-index: 1;
    }
    
    .manifest-divider {
        height: 1px;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(192, 192, 192, 0.2) 15%,
            rgba(192, 192, 192, 0.5) 50%,
            rgba(192, 192, 192, 0.2) 85%,
            transparent 100%
        );
        margin: 0 auto;
        max-width: 1100px;
    }
    .manifest-divider-top {
        margin-bottom: 70px;
    }
    .manifest-divider-bottom {
        margin-top: 70px;
    }
    
    .manifest-title {
        font-size: 64px;
        font-weight: 900;
        text-align: center;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 6px;
        margin-bottom: 80px;
        text-shadow: 
            0 0 30px rgba(192, 192, 192, 0.4),
            0 0 60px rgba(192, 192, 192, 0.2);
        line-height: 1;
        position: relative;
    }
    .manifest-title::after {
        content: '';
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 2px;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(192, 192, 192, 0.6) 50%,
            transparent 100%
        );
    }
    
    .manifest-video-wrapper {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
    }
    
    .manifest-video-frame {
        position: relative;
        width: 100%;
        background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.98));
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 
            0 20px 80px rgba(0, 0, 0, 0.8),
            0 0 40px rgba(192, 192, 192, 0.15),
            inset 0 0 0 2px rgba(192, 192, 192, 0.3);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .manifest-video-frame::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(
            135deg,
            rgba(192, 192, 192, 0.4) 0%,
            rgba(192, 192, 192, 0.1) 50%,
            rgba(192, 192, 192, 0.4) 100%
        );
        border-radius: 12px;
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: -1;
    }
    .manifest-video-frame:hover {
        box-shadow: 
            0 25px 100px rgba(0, 0, 0, 0.9),
            0 0 60px rgba(192, 192, 192, 0.25),
            inset 0 0 0 2px rgba(192, 192, 192, 0.5);
    }
    .manifest-video-frame:hover::before {
        opacity: 1;
    }
    
    .manifest-video-frame iframe,
    .manifest-video-frame video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .ordo-reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .ordo-reveal.ordo-visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    
    @media (max-width: 767px) {
        .legion-manifest-section {
            padding: 70px 0;
        }
        .manifest-container {
            padding: 0 20px;
        }
        .manifest-title {
            font-size: 36px;
            letter-spacing: 3px;
            margin-bottom: 50px;
        }
        .manifest-title::after {
            width: 80px;
            bottom: -18px;
        }
        .manifest-divider-top {
            margin-bottom: 45px;
        }
        .manifest-divider-bottom {
            margin-top: 45px;
        }
        .manifest-video-wrapper {
            max-width: 100%;
        }
        .manifest-video-frame {
            border-radius: 8px;
            box-shadow: 
                0 15px 60px rgba(0, 0, 0, 0.7),
                0 0 30px rgba(192, 192, 192, 0.12),
                inset 0 0 0 2px rgba(192, 192, 192, 0.25);
        }
    }
    
    @media (min-width: 768px) and (max-width: 1023px) {
        .legion-manifest-section {
            padding: 90px 0;
        }
        .manifest-title {
            font-size: 52px;
            letter-spacing: 5px;
            margin-bottom: 65px;
        }
        .manifest-video-wrapper {
            max-width: 900px;
        }
        .manifest-divider-top {
            margin-bottom: 60px;
        }
        .manifest-divider-bottom {
            margin-top: 60px;
        }
    }
    
    @media (min-width: 1024px) {
        .manifest-video-wrapper {
            max-width: 1000px;
        }
    }
    
    @media (min-width: 1400px) {
        .legion-manifest-section {
            padding: 120px 0;
        }
        .manifest-title {
            font-size: 72px;
            letter-spacing: 8px;
            margin-bottom: 90px;
        }
        .manifest-title::after {
            width: 140px;
            bottom: -30px;
        }
        .manifest-video-wrapper {
            max-width: 1100px;
        }
        .manifest-divider-top {
            margin-bottom: 80px;
        }
        .manifest-divider-bottom {
            margin-top: 80px;
        }
    }

/* ─── online_viewer_net (26).html (section #wahrheit) ─── */
:root {
            --color-text: #ffffff;
            --color-silver: #c0c0c0;
            --color-light-gray: #e0e0e0;
            --color-card-bg: #0a0a0a;
            --color-border: rgba(192, 192, 192, 0.3);
            --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html, body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        body {
            color: var(--color-text);
            line-height: 1.7;
            letter-spacing: 0.3px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background: #000;
            padding: 2rem 0;
        }
        h2, h3 {
            color: var(--color-text);
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
        }
        p {
            color: var(--color-text);
        }
        .is-topic {
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        #wahrheit {
            position: relative;
            padding: 4rem 0;
        }
        .wahrheit-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 5rem;
        }
        .wahrheit-intro h3 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1.5rem;
            white-space: nowrap;
        }
        .truth-grid {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }
        .truth-row {
            display: flex;
            gap: 2rem;
            align-items: stretch;
        }
        .truth-row--reverse {
            flex-direction: row-reverse;
        }
        .truth-card {
            flex: 1;
            background: var(--color-card-bg);
            border: 1px solid var(--color-silver);
            border-radius: 8px;
            padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 3vw, 3rem);
            position: relative;
            overflow: hidden;
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .truth-card::before {
            content: attr(data-roman);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: clamp(8rem, 15vw, 16rem);
            font-weight: 900;
            color: var(--color-silver);
            opacity: 0.06;
            z-index: 0;
            pointer-events: none;
            font-family: Georgia, serif;
            transition: all var(--transition-smooth);
        }
        .truth-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-silver), transparent);
            transition: left 0.7s ease;
            z-index: 1;
        }
        .truth-card:hover {
            transform: scale(1.02);
            border-color: var(--color-light-gray);
            box-shadow: 0 12px 32px rgba(192, 192, 192, 0.25);
        }
        .truth-card:hover::before {
            opacity: 0.12;
            transform: translate(-50%, -50%) scale(1.05);
            text-shadow: 0 0 30px rgba(192, 192, 192, 0.3);
        }
        .truth-card:hover::after {
            left: 100%;
        }
        .truth-card-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .truth-card-content .checkmark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2rem;
            height: 2rem;
            border: 2px solid var(--color-light-gray);
            border-radius: 12%;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-light-gray);
            margin-bottom: 1.5rem;
            box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
            animation: sealPulse 2.4s ease-in-out infinite;
        }
        .truth-card:hover .checkmark {
            transform: scale(1.07);
            box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
        }
        @keyframes sealPulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
            }
            50% {
                transform: scale(1.04);
                box-shadow: 0 0 0.35rem rgba(0, 0, 0, 0.28);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
            }
        }
        .truth-card h4 {
            color: var(--color-light-gray);
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            transition: color 0.2s ease;
            white-space: nowrap;
        }
        .truth-card p {
            color: var(--color-light-gray);
            line-height: 1.8;
            font-size: clamp(1rem, 1.8vw, 1.25rem);
            font-weight: 400;
        }
        .truth-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .truth-image img {
            width: 100%;
            height: 100%;
            max-width: 100%;
            object-fit: cover;
            display: block;
            border-radius: 8px;
        }
        
        @media (min-width: 1025px) and (max-width: 1599px) {
            .container {
                max-width: 1200px;
                padding: 0 3rem;
            }
            #wahrheit {
                padding: 3.5rem 0;
            }
            .wahrheit-intro {
                max-width: 800px;
                margin-bottom: 4rem;
            }
            .wahrheit-intro h3 {
                font-size: clamp(1.8rem, 4vw, 2.5rem);
            }
            .truth-grid {
                gap: 2.5rem;
            }
            .truth-row {
                gap: 2.5rem;
            }
            .truth-card {
                padding: clamp(1.75rem, 3.5vw, 3rem) clamp(1.25rem, 2.5vw, 2.5rem);
            }
            .truth-card::before {
                font-size: clamp(7rem, 12vw, 12rem);
            }
            .truth-card-content {
                max-width: 95%;
            }
            .truth-card-content .checkmark {
                margin-bottom: 1.25rem;
            }
        }
        
        @media (min-width: 1025px) and (max-width: 1450px) {
            .container {
                max-width: 1100px;
                padding: 0 3.5rem;
            }
            .wahrheit-intro {
                max-width: 750px;
                margin-bottom: 3.5rem;
            }
            .truth-grid {
                gap: 2.25rem;
            }
            .truth-row {
                gap: 2rem;
            }
            .truth-card {
                padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 2rem);
            }
        }
        
        @media (min-width: 1025px) and (max-width: 1599px) {
            
            .wahrheit-intro h3 {
                
                letter-spacing: 0.06em;
            }
            .wahrheit-intro p {
                
                font-size: clamp(1rem, 1.6vw, 1.2rem);
                line-height: 1.8;
                letter-spacing: 0.02em;
            }
            
            .truth-card h4 {
                
                font-size: clamp(1.25rem, 2.3vw, 1.65rem);
                
                letter-spacing: 0.5px;
                
                line-height: 1.3;
                margin-bottom: 1.25rem;
                
                white-space: normal;
                
                word-break: normal;
                overflow-wrap: normal;
                
                max-width: 100%;
            }
            
            .truth-card p {
                
                font-size: clamp(0.95rem, 1.45vw, 1.15rem);
                
                line-height: 1.85;
                
                letter-spacing: 0.3px;
                
                word-spacing: 0.05em;
                
                hyphens: auto;
                -webkit-hyphens: auto;
                -ms-hyphens: auto;
                
                text-wrap: pretty;
            }
            
            .truth-card-content {
                
                max-width: 100%;
                
                padding: 0 0.5rem;
            }
        }
        
        @media (min-width: 1025px) and (max-width: 1450px) {
            
            .truth-card h4 {
                
                font-size: clamp(1.15rem, 2.1vw, 1.45rem);
                
                letter-spacing: 0.3px;
                margin-bottom: 1rem;
            }
            
            .truth-card p {
                
                font-size: clamp(0.9rem, 1.35vw, 1.05rem);
                
                line-height: 1.8;
            }
            
            .wahrheit-intro p {
                font-size: clamp(0.95rem, 1.5vw, 1.1rem);
            }
        }
        
        @media (min-width: 1025px) and (max-height: 980px) {
            #wahrheit {
                padding: 3rem 0;
            }
            .wahrheit-intro {
                margin-bottom: 3rem;
            }
            .wahrheit-intro h3 {
                margin-bottom: 1rem;
                
                font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            }
            .wahrheit-intro p {
                
                line-height: 1.7;
            }
            .truth-grid {
                gap: 2rem;
            }
            .truth-row {
                gap: 1.75rem;
            }
            .truth-card {
                padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.75rem);
            }
            .truth-card-content .checkmark {
                width: 1.75rem;
                height: 1.75rem;
                font-size: 1rem;
                margin-bottom: 1rem;
            }
            .truth-card h4 {
                margin-bottom: 1rem;
                
                font-size: clamp(1.1rem, 2vw, 1.35rem);
                line-height: 1.25;
            }
            .truth-card p {
                
                line-height: 1.7;
                font-size: clamp(0.88rem, 1.3vw, 1rem);
            }
        }
        
        @media (min-width: 1600px) {
            .container {
                max-width: 1400px;
                padding: 0 2rem;
            }
            #wahrheit {
                padding: 4rem 0;
            }
            .wahrheit-intro {
                max-width: 900px;
                margin-bottom: 5rem;
            }
            .wahrheit-intro h3 {
                font-size: 3rem;
                letter-spacing: 2px;
            }
            .wahrheit-intro p {
                font-size: 1.25rem;
                line-height: 1.8;
            }
            .truth-grid {
                gap: 3rem;
            }
            .truth-row {
                gap: 2rem;
            }
            .truth-card {
                padding: 4rem 3rem;
            }
            .truth-card::before {
                font-size: 16rem;
            }
            .truth-card h4 {
                font-size: 2rem;
                margin-bottom: 1.5rem;
                letter-spacing: 1px;
                line-height: 1.3;
                white-space: nowrap;
            }
            .truth-card p {
                font-size: 1.25rem;
                line-height: 1.8;
                letter-spacing: 0.3px;
            }
            .truth-card-content {
                max-width: 90%;
                padding: 0;
            }
        }
        
        @media (max-width: 1024px) {
            body {
                padding: 1.5rem 0;
            }
            .container {
                padding: 0 1.5rem;
            }
            .wahrheit-intro {
                margin-bottom: 3rem;
            }
            .wahrheit-intro h3 {
                white-space: normal;
            }
            .truth-grid {
                gap: 2rem;
            }
            .truth-row {
                flex-direction: column;
                gap: 1.5rem;
            }
            .truth-row--reverse {
                flex-direction: column;
            }
            .truth-card {
                padding: 2.5rem 2rem;
            }
            .truth-card:hover {
                transform: scale(1.01);
            }
            .truth-card:hover::before {
                transform: translate(-50%, -50%) scale(1.02);
            }
            .truth-card h4 {
                white-space: normal;
            }
            .truth-image img {
                width: 100%;
                height: auto;
                max-height: 350px;
                object-fit: cover;
            }
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
            .truth-grid {
                gap: 2rem;
            }
            .truth-card {
                padding: 2.25rem 1.75rem;
            }
            .truth-image img {
                max-height: 300px;
            }
        }
        @media (max-width: 600px) {
            .truth-grid {
                gap: 1.75rem;
            }
            .truth-card {
                padding: 2rem 1.5rem;
            }
            .truth-card:hover {
                transform: none;
            }
            .truth-card:hover::before {
                transform: translate(-50%, -50%);
            }
            .truth-card-content .checkmark {
                margin-bottom: 1.25rem;
            }
            .truth-card h4 {
                margin-bottom: 1.25rem;
            }
            .truth-image img {
                max-height: 280px;
            }
        }
        @media (max-width: 480px) {
            .truth-grid {
                gap: 1.5rem;
            }
            .truth-card {
                padding: 1.75rem 1.25rem;
            }
            .truth-card-content {
                max-width: 100%;
            }
            .truth-card-content .checkmark {
                margin-bottom: 1rem;
            }
            .truth-card h4 {
                margin-bottom: 1rem;
            }
            .truth-image img {
                max-height: 250px;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            .truth-card-content .checkmark {
                animation: none;
            }
        }

/* ─── online_viewer_net (27).html (section #value) ─── */
.legion-value-section {
        position: relative;
        padding: 80px 0 60px 0;
        background: #000000;
        overflow: hidden;
    }
    .legion-value-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 15% 25%, rgba(192, 192, 192, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 85% 75%, rgba(192, 192, 192, 0.04) 0%, transparent 50%);
        pointer-events: none;
    }
    .value-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
        position: relative;
        z-index: 1;
    }
    
    .value-divider {
        height: 1px;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(192, 192, 192, 0.3) 20%,
            rgba(192, 192, 192, 0.6) 50%,
            rgba(192, 192, 192, 0.3) 80%,
            transparent 100%
        );
        margin: 0 auto;
        max-width: 1200px;
    }
    .value-divider-top {
        margin-bottom: 50px;
    }
    
    .value-main-title {
        font-size: 52px;
        font-weight: 800;
        text-align: center;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 35px;
        text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
        line-height: 1.1;
    }
    
    .value-intro-text {
        max-width: 800px;
        margin: 0 auto 60px;
        font-size: 18px;
        line-height: 1.7;
        text-align: center;
        color: #d0d0d0;
        font-weight: 300;
        letter-spacing: 0.5px;
    }
    
    .value-benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1300px;
        margin: 0 auto;
    }
    
    .value-benefit-box {
        position: relative;
        background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
        border: 2px solid rgba(192, 192, 192, 0.35);
        border-radius: 12px;
        padding: 40px 35px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .value-benefit-box::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            45deg,
            transparent 30%,
            rgba(192, 192, 192, 0.08) 50%,
            transparent 70%
        );
        transform: rotate(45deg);
        transition: all 0.6s ease;
        opacity: 0;
    }
    .value-benefit-box:hover::before {
        opacity: 1;
        animation: benefitShimmer 2s infinite;
    }
    @keyframes benefitShimmer {
        0% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }
        100% {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        }
    }
    .value-benefit-box:hover {
        transform: translateY(-8px);
        border-color: rgba(192, 192, 192, 0.6);
        box-shadow: 
            0 15px 50px rgba(0, 0, 0, 0.6),
            0 0 35px rgba(192, 192, 192, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    
    .benefit-icon-container {
        display: flex;
        justify-content: center;
        margin-bottom: 28px;
        position: relative;
        z-index: 2;
    }
    .benefit-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(192, 192, 192, 0.05);
        border: 2px solid rgba(192, 192, 192, 0.3);
        transition: all 0.4s ease;
        filter: drop-shadow(0 0 15px rgba(192, 192, 192, 0.2));
    }
    .value-benefit-box:hover .benefit-icon {
        transform: scale(1.1) rotate(5deg);
        border-color: rgba(192, 192, 192, 0.6);
        background: rgba(192, 192, 192, 0.1);
    }
    
    .benefit-title {
        font-size: 26px;
        font-weight: 700;
        color: #e0e0e0;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .benefit-description {
        font-size: 16px;
        line-height: 1.6;
        color: #c0c0c0;
        margin-bottom: 20px;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .benefit-highlight {
        font-size: 16px;
        line-height: 1.6;
        color: #e0e0e0;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
        padding: 12px 20px;
        background: rgba(192, 192, 192, 0.08);
        border-radius: 6px;
        border-left: 3px solid rgba(192, 192, 192, 0.5);
        position: relative;
        z-index: 2;
    }
    
    .benefit-list {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
        position: relative;
        z-index: 2;
    }
    .benefit-list-item {
        display: flex;
        align-items: center;
        padding: 10px 15px;
        margin-bottom: 8px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 6px;
        border-left: 2px solid rgba(192, 192, 192, 0.3);
        transition: all 0.3s ease;
    }
    .benefit-list-item:hover {
        background: rgba(255, 255, 255, 0.06);
        border-left-color: #c0c0c0;
        transform: translateX(5px);
    }
    .list-marker {
        color: #c0c0c0;
        font-size: 18px;
        font-weight: 700;
        margin-right: 12px;
        text-shadow: 0 0 8px rgba(192, 192, 192, 0.4);
    }
    .list-text {
        font-size: 15px;
        color: #d0d0d0;
        line-height: 1.4;
    }
    
    .benefit-extra-details {
        display: none;
        position: relative;
        z-index: 2;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(192, 192, 192, 0.15);
    }
    .extra-detail-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 12px;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    .extra-detail-item:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateX(3px);
    }
    .detail-bullet {
        color: #a0a0a0;
        font-size: 12px;
        margin-right: 10px;
        margin-top: 3px;
        flex-shrink: 0;
    }
    .detail-text {
        font-size: 14px;
        line-height: 1.5;
        color: #b8b8b8;
    }
    .detail-text strong {
        color: #d0d0d0;
        font-weight: 600;
    }
    
    .ordo-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .ordo-reveal.ordo-visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    
    @media (max-width: 767px) {
        .legion-value-section {
            padding: 60px 0 50px 0;
        }
        .value-container {
            padding: 0 20px;
        }
        .value-main-title {
            font-size: 32px;
            letter-spacing: 2px;
            margin-bottom: 25px;
        }
        .value-intro-text {
            font-size: 16px;
            margin-bottom: 45px;
            line-height: 1.6;
        }
        .value-divider-top {
            margin-bottom: 35px;
        }
        .value-benefits-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        .value-benefit-box {
            padding: 30px 25px;
        }
        .benefit-icon-container {
            margin-bottom: 22px;
        }
        .benefit-icon {
            width: 65px;
            height: 65px;
        }
        .benefit-icon svg {
            width: 50px;
            height: 50px;
        }
        .benefit-title {
            font-size: 22px;
            margin-bottom: 16px;
        }
        .benefit-description {
            font-size: 15px;
            margin-bottom: 18px;
        }
        .benefit-highlight {
            font-size: 15px;
            padding: 10px 16px;
            margin-bottom: 18px;
        }
        .benefit-list {
            margin-bottom: 0;
        }
        .benefit-list-item {
            padding: 8px 12px;
            margin-bottom: 6px;
        }
        .list-marker {
            font-size: 16px;
            margin-right: 10px;
        }
        .list-text {
            font-size: 14px;
        }
        
        .benefit-extra-details {
            display: none !important;
        }
    }
    
    @media (min-width: 768px) and (max-width: 1023px) {
        .value-main-title {
            font-size: 46px;
        }
        .value-intro-text {
            font-size: 17px;
            max-width: 700px;
        }
        .value-benefits-grid {
            gap: 28px;
        }
        .value-benefit-box {
            padding: 38px 32px;
        }
        .benefit-title {
            font-size: 24px;
        }
        
        .benefit-extra-details {
            display: block;
        }
    }
    
    @media (min-width: 1024px) {
        .value-benefits-grid {
            gap: 32px;
        }
        
        .benefit-extra-details {
            display: block;
        }
    }
    
    @media (min-width: 1400px) {
        .value-main-title {
            font-size: 58px;
        }
        .value-intro-text {
            font-size: 19px;
            max-width: 850px;
        }
        .value-benefit-box {
            padding: 45px 40px;
        }
    }
    
    .legion-value-section .value-main-title,
    .legion-value-section .benefit-title {
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
        -webkit-hyphens: none;
        -ms-hyphens: none;
    }

/* ─── online_viewer_net (28).html (section #gruender) ─── */
section[data-gruender] {
        --color-bg: #000000;
        --color-text: #ffffff;
        --color-silver: #c0c0c0;
        --color-light-gray: #e0e0e0;
        --color-card-bg: #0a0a0a;
        --color-border: rgba(192, 192, 192, 0.3);
        --color-shadow: rgba(192, 192, 192, 0.15);
        --max-width: 1600px;
        --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 6rem 0;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    section[data-gruender].ordo-visible {
        opacity: 1;
        transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce) {
        section[data-gruender] {
            opacity: 1;
            transform: none;
            transition: none;
        }
    }
    section[data-gruender] * {
        font-family: inherit;
    }
    section[data-gruender] .is-topic {
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    section[data-gruender] .container {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 2rem;
    }
    section[data-gruender] .ordo-bg-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        pointer-events: none;
    }
    section[data-gruender] .ordo-section-bg {
        background: radial-gradient(circle at 30% 20%, rgba(192, 192, 192, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 70% 80%, rgba(192, 192, 192, 0.03) 0%, transparent 50%);
    }
    section[data-gruender] .ordo-divider {
        position: absolute;
        left: 0;
        width: 100%;
        height: 40px;
        overflow: visible;
        z-index: 1;
    }
    section[data-gruender] .ordo-divider-top {
        top: 0;
    }
    section[data-gruender] .ordo-divider-bottom {
        bottom: 0;
    }
    section[data-gruender] .ordo-divider svg {
        width: 100%;
        height: 100%;
        display: block;
    }
    section[data-gruender] .ordo-divider-shine line {
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
        transition: stroke-dashoffset 2s ease;
    }
    section[data-gruender] .ordo-divider-shine.ordo-shine-active line {
        stroke-dashoffset: 0;
    }
    section[data-gruender] .founders-intro {
        text-align: center;
        max-width: 900px;
        margin: 0 auto 4rem;
    }
    section[data-gruender] .founders-intro h2 {
        font-size: clamp(2rem, 5vw, 3rem);
        color: var(--color-text);
        margin-bottom: 1.5rem;
        letter-spacing: 2px;
    }
    section[data-gruender] .founders-intro p {
        color: var(--color-text);
    }
    section[data-gruender] .founders-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: var(--max-width);
        margin: 0 auto;
    }
    @media (min-width: 1024px) {
        section[data-gruender] .founders-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    section[data-gruender] .founder-card {
        background: var(--color-card-bg);
        border: 1px solid var(--color-border);
        border-radius: 8px;
        transition: all var(--transition-smooth);
        overflow: hidden;
    }
    section[data-gruender] .founder-card:hover {
        border-color: var(--color-silver);
        box-shadow: 0 8px 24px var(--color-shadow), 0 0 20px rgba(255, 255, 255, 0.6);
        transform: scale(1.05);
    }
    section[data-gruender] .ordo-founder-image {
        width: 100%;
        aspect-ratio: 4 / 3;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-silver);
        font-size: 1.1rem;
        border-bottom: 1px solid var(--color-border);
        position: relative;
    }
    section[data-gruender] .founder-content {
        padding: 3rem;
    }
    section[data-gruender] .founder-name {
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-silver);
        margin-top: -1.25rem;
        margin-bottom: 1.75rem;
        text-align: center;
    }
    section[data-gruender] .founder-title {
        font-size: 1rem;
        color: var(--color-light-gray);
        margin-bottom: 1.5rem;
        font-style: italic;
    }
    section[data-gruender] .founder-quote {
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--color-light-gray);
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
        border-left: 3px solid var(--color-silver);
        font-style: italic;
    }
    section[data-gruender] .founder-description {
        color: var(--color-light-gray);
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    section[data-gruender] .founders-cta-wrapper {
        text-align: center;
        margin-top: 3rem;
    }
    section[data-gruender] .ordo-btn {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: linear-gradient(135deg, #c0c0c0 0%, #e0e0e0 50%, #c0c0c0 100%);
        color: #000000;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 4px;
        transition: all var(--transition-smooth);
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
        position: relative;
        overflow: hidden;
    }
    section[data-gruender] .ordo-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(192, 192, 192, 0.5);
    }
    section[data-gruender] .ordo-btn:active {
        transform: translateY(0);
    }
    section[data-gruender] .ordo-cta-pulse {
        animation: ordo-pulse-gruender 2.5s ease-in-out infinite;
    }
    @keyframes ordo-pulse-gruender {
        0%, 100% {
            box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
        }
        50% {
            box-shadow: 0 6px 25px rgba(192, 192, 192, 0.6);
        }
    }
    @media (prefers-reduced-motion: reduce) {
        section[data-gruender] .ordo-cta-pulse {
            animation: none;
        }
    }
    
    @media (min-width: 1024px) and (max-width: 1599px) {
        section[data-gruender] {
            padding: 5rem 0;
        }
        section[data-gruender] .container {
            max-width: 1300px;
            padding: 0 3rem;
            margin-left: auto;
            margin-right: auto;
        }
        section[data-gruender] .founders-grid {
            max-width: 100%;
            gap: 2.5rem;
        }
        section[data-gruender] .founders-intro {
            max-width: 800px;
            margin-bottom: 3.5rem;
        }
        section[data-gruender] .founder-content {
            padding: 2.5rem;
        }
        section[data-gruender] .founders-cta-wrapper {
            margin-top: 2.5rem;
        }
    }
    
    @media (min-width: 1024px) and (max-width: 1450px) {
        section[data-gruender] {
            padding: 4.5rem 0;
        }
        section[data-gruender] .container {
            max-width: 1200px;
            padding: 0 3.5rem;
        }
        section[data-gruender] .founders-grid {
            gap: 2rem;
        }
        section[data-gruender] .founders-intro {
            max-width: 750px;
            margin-bottom: 3rem;
        }
        section[data-gruender] .founder-content {
            padding: 2rem;
        }
        section[data-gruender] .founders-cta-wrapper {
            margin-top: 2rem;
        }
        section[data-gruender] .founder-card:hover {
            transform: scale(1.03);
        }
    }
    
    @media (min-width: 1024px) and (max-height: 980px) {
        section[data-gruender] {
            padding: 4rem 0;
        }
        section[data-gruender] .founders-intro {
            margin-bottom: 2.5rem;
        }
        section[data-gruender] .founders-grid {
            gap: 2rem;
        }
        section[data-gruender] .founder-content {
            padding: 2rem 1.75rem;
        }
        section[data-gruender] .founders-cta-wrapper {
            margin-top: 2rem;
        }
    }
    
    @media (min-width: 1600px) {
        section[data-gruender] {
            padding: 6rem 0;
        }
        section[data-gruender] .container {
            max-width: 1600px;
            padding: 0 2rem;
        }
        section[data-gruender] .founders-grid {
            max-width: 1600px;
            gap: 3rem;
        }
        section[data-gruender] .founders-intro {
            max-width: 900px;
            margin-bottom: 4rem;
        }
        section[data-gruender] .founder-content {
            padding: 3rem;
        }
        section[data-gruender] .founders-cta-wrapper {
            margin-top: 3rem;
        }
        section[data-gruender] .founder-card:hover {
            transform: scale(1.05);
        }
    }
    
    @media (min-width: 768px) and (max-width: 1023px) {
        section[data-gruender] {
            padding: 4rem 0;
        }
        section[data-gruender] .container {
            padding: 0 1.5rem;
        }
        section[data-gruender] .founder-content {
            padding: 2rem 1.5rem;
        }
        section[data-gruender] .founder-name {
            margin-top: -0.25rem;
        }
        section[data-gruender] .founder-quote {
            font-size: 1rem;
        }
    }
    
    @media (max-width: 767px) {
        section[data-gruender] {
            padding: 3rem 0;
        }
        section[data-gruender] .container {
            
            padding: 0 1rem;
        }
        section[data-gruender] .gruender-quote-mobile-hide {
            display: none;
        }
        section[data-gruender] .founder-content {
            text-align: center;
            padding: 1.5rem 1rem;
        }
        section[data-gruender] .founders-intro {
            margin-bottom: 2rem;
        }
        section[data-gruender] .founders-grid {
            gap: 2rem;
        }
        section[data-gruender] .founder-name {
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 1rem;
        }
        section[data-gruender] .founder-title {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        section[data-gruender] .founder-description {
            font-size: 0.95rem;
            line-height: 1.7;
        }
        section[data-gruender] .founders-cta-wrapper {
            margin-top: 2rem;
            
            padding: 0 0.5rem;
        }
        
        section[data-gruender] .ordo-btn {
            
            display: block;
            
            width: 100%;
            max-width: 320px;
            
            margin-left: auto;
            margin-right: auto;
            
            padding: 1rem 1.25rem;
            
            font-size: 0.85rem;
            
            letter-spacing: 0.5px;
            
            white-space: normal;
            
            text-align: center;
            
            line-height: 1.4;
            
            box-sizing: border-box;
        }
        
        section[data-gruender] .ordo-btn:hover,
        section[data-gruender] .ordo-btn:focus {
            transform: none;
        }
        section[data-gruender] .ordo-btn:active {
            transform: scale(0.98);
            box-shadow: 0 2px 10px rgba(192, 192, 192, 0.4);
        }
        
        section[data-gruender] .ordo-cta-pulse {
            animation: ordo-pulse-gruender-mobile 3s ease-in-out infinite;
        }
        @keyframes ordo-pulse-gruender-mobile {
            0%, 100% {
                box-shadow: 0 3px 12px rgba(192, 192, 192, 0.25);
            }
            50% {
                box-shadow: 0 4px 18px rgba(192, 192, 192, 0.45);
            }
        }
    }
    
    @media (max-width: 380px) {
        section[data-gruender] .container {
            padding: 0 0.75rem;
        }
        section[data-gruender] .founder-content {
            padding: 1.25rem 0.75rem;
        }
        section[data-gruender] .ordo-btn {
            
            max-width: 280px;
            
            padding: 0.9rem 1rem;
            
            font-size: 0.8rem;
            letter-spacing: 0.3px;
        }
    }

/* ─── online_viewer_net (29).html (section #mitgliedschaft) ─── */
.legion-pricing-section {
        position: relative;
        padding: 70px 0;
        background: #000000;
        overflow: hidden;
    }
    .legion-pricing-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(192, 192, 192, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(192, 192, 192, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }
    .pricing-container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 30px;
        position: relative;
        z-index: 1;
    }
    .pricing-divider {
        height: 1px;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(192, 192, 192, 0.3) 20%,
            rgba(192, 192, 192, 0.6) 50%,
            rgba(192, 192, 192, 0.3) 80%,
            transparent 100%
        );
        margin: 0 auto;
        max-width: 1400px;
    }
    .pricing-divider-top {
        margin-bottom: 40px;
    }
    .pricing-main-title {
        font-size: 52px;
        font-weight: 800;
        text-align: center;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 12px;
        text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
        line-height: 1.1;
    }
    .pricing-subtitle {
        font-size: 18px;
        font-weight: 300;
        text-align: center;
        color: #c0c0c0;
        letter-spacing: 2px;
        margin-bottom: 50px;
    }
    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 1400px;
        margin: 0 auto;
    }
    .pricing-box {
        position: relative;
        background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
        border: 2px solid rgba(192, 192, 192, 0.4);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .pricing-box::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            45deg,
            transparent 30%,
            rgba(192, 192, 192, 0.08) 50%,
            transparent 70%
        );
        transform: rotate(45deg);
        transition: all 0.6s ease;
        opacity: 0;
    }
    .pricing-box:hover::before {
        opacity: 1;
        animation: shimmerEffect 2s infinite;
    }
    @keyframes shimmerEffect {
        0% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }
        100% {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        }
    }
    .pricing-box:hover {
        transform: translateY(-8px);
        border-color: rgba(192, 192, 192, 0.7);
        box-shadow: 
            0 15px 50px rgba(0, 0, 0, 0.6),
            0 0 35px rgba(192, 192, 192, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    .pricing-box-featured {
        border-color: rgba(192, 192, 192, 0.8);
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.5),
            0 0 25px rgba(192, 192, 192, 0.2);
    }
    .pricing-box-featured:hover {
        border-color: #c0c0c0;
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.7),
            0 0 45px rgba(192, 192, 192, 0.3);
    }
    .featured-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, #d0d0d0, #a8a8a8);
        color: #000000;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        z-index: 10;
        box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
        animation: badgePulse 2.5s ease-in-out infinite;
    }
    @keyframes badgePulse {
        0%, 100% {
            box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
        }
        50% {
            box-shadow: 0 6px 25px rgba(192, 192, 192, 0.6);
        }
    }
    .pricing-box-inner {
        padding: 35px 30px;
        position: relative;
        z-index: 2;
    }
    .pricing-icon-container {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
        filter: drop-shadow(0 0 12px rgba(192, 192, 192, 0.3));
    }
    .pricing-icon {
        transition: transform 0.4s ease;
    }
    .pricing-box:hover .pricing-icon {
        transform: scale(1.1) rotate(5deg);
    }
    .pricing-box-title {
        font-size: 28px;
        font-weight: 700;
        text-align: center;
        color: #e0e0e0;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 25px;
    }
    .pricing-amount-container {
        text-align: center;
        margin-bottom: 28px;
        padding: 22px 18px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 10px;
        border: 1px solid rgba(192, 192, 192, 0.15);
    }
    .pricing-main-price {
        margin-bottom: 16px;
    }
    .price-value {
        display: block;
        font-size: 46px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1;
        margin-bottom: 8px;
        text-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
    }
    .price-period {
        display: block;
        font-size: 13px;
        font-weight: 400;
        color: #a0a0a0;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }
    .pricing-fee {
        padding-top: 16px;
        border-top: 1px solid rgba(192, 192, 192, 0.2);
    }
    .fee-text {
        display: block;
        font-size: 11px;
        color: #999999;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }
    .fee-value {
        display: block;
        font-size: 22px;
        font-weight: 600;
        color: #c0c0c0;
    }
    .pricing-fee-none {
        border-top: 1px solid rgba(192, 192, 192, 0.3);
        padding-top: 16px;
    }
    .fee-text-none {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #c0c0c0;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }
    .pricing-fee-savings {
        border-top: 1px solid rgba(192, 192, 192, 0.3);
        padding-top: 16px;
    }
    .fee-text-strike {
        display: block;
        font-size: 16px;
        font-weight: 400;
        color: #666666;
        text-decoration: line-through;
        margin-bottom: 6px;
    }
    .fee-savings {
        display: block;
        font-size: 14px;
        font-weight: 700;
        color: #d4af37;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    .fee-bonus {
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: #d4af37;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .pricing-fee-spacer {
        display: none;
    }
    .pricing-features-list {
        margin-bottom: 28px;
    }
    .pricing-feature {
        display: flex;
        align-items: flex-start;
        padding: 12px 14px;
        margin-bottom: 8px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 6px;
        border-left: 2px solid rgba(192, 192, 192, 0.3);
        transition: all 0.3s ease;
    }
    .pricing-feature:hover {
        background: rgba(255, 255, 255, 0.06);
        border-left-color: #c0c0c0;
        transform: translateX(4px);
    }
    .feature-check {
        color: #c0c0c0;
        font-size: 16px;
        font-weight: 700;
        margin-right: 12px;
        flex-shrink: 0;
        line-height: 1.4;
        text-shadow: 0 0 8px rgba(192, 192, 192, 0.4);
    }
    .feature-text {
        font-size: 14px;
        line-height: 1.4;
        color: #d0d0d0;
        font-weight: 400;
    }
    .legion-btn-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: auto;
    }
    .legion-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        padding: 24px 32px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        text-decoration: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
    }
    .legion-btn-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .legion-btn-text {
        position: relative;
        z-index: 2;
        white-space: nowrap;
    }
    .legion-btn-shine {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent
        );
        transition: left 0.6s ease;
        z-index: 1;
    }
    .legion-btn:hover .legion-btn-shine {
        left: 100%;
    }
    .legion-btn-credit {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(232, 232, 232, 0.95) 40%, 
            rgba(208, 208, 208, 0.95) 100%
        );
        border-color: rgba(192, 192, 192, 0.5);
        color: #0a0a0a;
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.4),
            0 0 15px rgba(192, 192, 192, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.9),
            inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    }
    .legion-btn-credit::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(180deg, 
            rgba(255, 255, 255, 0.3) 0%, 
            transparent 100%
        );
        border-radius: 8px 8px 0 0;
        pointer-events: none;
    }
    .legion-btn-credit:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 1) 0%, 
            rgba(245, 245, 245, 1) 40%, 
            rgba(224, 224, 224, 1) 100%
        );
        border-color: rgba(192, 192, 192, 0.8);
        box-shadow: 
            0 8px 30px rgba(0, 0, 0, 0.5),
            0 0 30px rgba(192, 192, 192, 0.25),
            0 0 50px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 1);
    }
    .legion-btn-credit:active {
        transform: translateY(0);
    }
    .legion-btn-credit-featured {
        box-shadow: 
            0 6px 25px rgba(0, 0, 0, 0.45),
            0 0 25px rgba(192, 192, 192, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }
    .legion-btn-credit-featured:hover {
        box-shadow: 
            0 10px 35px rgba(0, 0, 0, 0.55),
            0 0 40px rgba(192, 192, 192, 0.35),
            0 0 60px rgba(255, 255, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 1);
    }
    .legion-btn-paypal {
        background: linear-gradient(135deg, 
            #0070ba 0%, 
            #003087 100%
        );
        border-color: rgba(0, 112, 186, 0.6);
        color: #ffffff;
        box-shadow: 
            0 4px 18px rgba(0, 48, 135, 0.4),
            0 0 12px rgba(0, 112, 186, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
    .legion-btn-paypal::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(180deg, 
            rgba(255, 255, 255, 0.12) 0%, 
            transparent 100%
        );
        border-radius: 8px 8px 0 0;
        pointer-events: none;
    }
    .legion-btn-paypal:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, 
            #0082d8 0%, 
            #0040a0 100%
        );
        border-color: rgba(0, 130, 216, 0.8);
        box-shadow: 
            0 8px 28px rgba(0, 48, 135, 0.5),
            0 0 25px rgba(0, 112, 186, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    .legion-btn-paypal:active {
        transform: translateY(0);
    }
    .legion-btn-paypal .legion-btn-icon svg {
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    }
    .kodex-cta-btn {
        display: block;
        width: 100%;
        padding: 18px 35px;
        background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, #d0d0d0 100%);
        border: 2px solid rgba(192, 192, 192, 0.5);
        border-radius: 8px;
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #000000;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.4),
            0 0 15px rgba(192, 192, 192, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        text-align: center;
        text-decoration: none;
    }
    .kodex-btn-text {
        position: relative;
        z-index: 2;
        text-shadow: none;
    }
    .kodex-btn-glow {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent
        );
        transition: left 0.6s ease;
    }
    .kodex-cta-btn:hover {
        transform: translateY(-3px);
        background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #e0e0e0 100%);
        border-color: rgba(192, 192, 192, 0.8);
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.5),
            0 0 25px rgba(192, 192, 192, 0.3),
            0 0 40px rgba(255, 255, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 1);
    }
    .kodex-cta-btn:hover .kodex-btn-glow {
        left: 100%;
    }
    .kodex-cta-btn:active {
        transform: translateY(-1px);
    }
    .kodex-cta-btn-featured {
        background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 30%, #d0d0d0 70%, #b8b8b8 100%);
        border-color: rgba(192, 192, 192, 0.7);
        box-shadow: 
            0 6px 25px rgba(0, 0, 0, 0.5),
            0 0 25px rgba(192, 192, 192, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
    .kodex-cta-btn-featured:hover {
        background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 30%, #e0e0e0 70%, #c8c8c8 100%);
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(192, 192, 192, 0.4),
            0 0 50px rgba(255, 255, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 1);
    }
    .ordo-reveal {
        opacity: 0;
        transform: translateY(25px);
        transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .ordo-reveal.ordo-visible {
        opacity: 1;
        transform: translateY(0);
    }
    @media (max-width: 767px) {
        .legion-pricing-section {
            padding: 50px 0;
        }
        .pricing-container {
            padding: 0 18px;
        }
        .pricing-main-title {
            font-size: 32px;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }
        .pricing-subtitle {
            font-size: 14px;
            margin-bottom: 35px;
        }
        .pricing-divider-top {
            margin-bottom: 30px;
        }
        .pricing-grid {
            gap: 20px;
        }
        .pricing-box-inner {
            padding: 25px 20px;
        }
        .pricing-icon-container {
            margin-bottom: 15px;
        }
        .pricing-icon {
            width: 50px;
            height: 50px;
        }
        .pricing-box-title {
            font-size: 24px;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }
        .pricing-amount-container {
            padding: 18px 15px;
            margin-bottom: 22px;
        }
        .pricing-main-price {
            margin-bottom: 12px;
        }
        .price-value {
            font-size: 38px;
            margin-bottom: 6px;
        }
        .price-period {
            font-size: 12px;
        }
        .fee-text {
            font-size: 10px;
            margin-bottom: 5px;
        }
        .fee-value {
            font-size: 19px;
        }
        .fee-text-none {
            font-size: 13px;
        }
        .fee-text-strike {
            font-size: 14px;
        }
        .fee-savings {
            font-size: 12px;
        }
        .fee-bonus {
            font-size: 11px;
        }
        .pricing-features-list {
            margin-bottom: 22px;
        }
        .pricing-feature {
            padding: 10px 12px;
            margin-bottom: 6px;
        }
        .feature-check {
            font-size: 14px;
            margin-right: 10px;
        }
        .feature-text {
            font-size: 13px;
            line-height: 1.35;
        }
        .legion-btn-group {
            gap: 10px;
        }
        .legion-btn {
            padding: 22px 28px;
            font-size: 15px;
            letter-spacing: 1px;
            gap: 10px;
        }
        .legion-btn-icon svg {
            width: 18px;
            height: 18px;
        }
        .kodex-cta-btn {
            padding: 15px 28px;
            font-size: 13px;
            letter-spacing: 2px;
        }
        .featured-badge {
            top: 12px;
            right: 12px;
            padding: 5px 14px;
            font-size: 10px;
        }
    }
    @media (min-width: 768px) and (max-width: 1023px) {
        .pricing-container {
            max-width: 700px;
            padding: 0 30px;
        }
        .pricing-grid {
            gap: 30px;
        }
        .pricing-box-inner {
            padding: 40px 35px;
        }
        .pricing-main-title {
            font-size: 48px;
        }
        .pricing-subtitle {
            font-size: 19px;
        }
        .pricing-box-title {
            font-size: 30px;
        }
        .price-value {
            font-size: 50px;
        }
        .legion-btn {
            padding: 22px 32px;
            font-size: 14px;
        }
    }
    @media (min-width: 1024px) {
        .pricing-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            align-items: stretch;
        }
        .pricing-box {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .pricing-box-inner {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .pricing-features-list {
            flex-grow: 1;
        }
        .pricing-fee-spacer {
            display: block;
            height: 20px;
        }
        .pricing-box-featured {
            transform: scale(1.03);
        }
        .pricing-box-featured:hover {
            transform: scale(1.03) translateY(-8px);
        }
        .legion-btn-group {
            margin-top: auto;
        }
    }
    @media (min-width: 1400px) {
        .pricing-grid {
            gap: 30px;
        }
        .pricing-box-inner {
            padding: 38px 35px;
        }
        .pricing-main-title {
            font-size: 58px;
        }
        .pricing-subtitle {
            font-size: 20px;
        }
        .legion-btn {
            padding: 22px 32px;
            font-size: 15px;
            letter-spacing: 2px;
        }
    }
    .legion-btn .legion-btn-text {
        font-family: "Nunito Sans", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif !important;
        font-weight: 700 !important;
        letter-spacing: 0.06em !important;
    }
    .legion-btn .legion-btn-text {
        font-weight: 600 !important;
    }
    .legion-btn .legion-btn-text {
        font-weight: 700 !important;
    }

/* ─── online_viewer_net (30).html (section #faq) ─── */
[data-legion-faq] {
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-silver: #c0c0c0;
    --color-light-gray: #e0e0e0;
    --color-card-bg: #0a0a0a;
    --color-border: rgba(192, 192, 192, 0.3);
    --color-shadow: rgba(192, 192, 192, 0.15);
    --max-width: 1600px;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-legion-faq] * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
[data-legion-faq] {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg);
    color: var(--color-text);
}
[data-legion-faq] h2,
[data-legion-faq] h3,
[data-legion-faq] h4 {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    hyphens: none;
    word-break: normal;
}
[data-legion-faq] h2 {
    letter-spacing: 2px;
}
[data-legion-faq] h3 {
    letter-spacing: 1px;
}
[data-legion-faq] p {
    color: var(--color-text);
}
[data-legion-faq] .is-topic {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
[data-legion-faq] .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}
[data-legion-faq] .ordo-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
}
[data-legion-faq] .ordo-section-bg {
    background: var(--color-bg)
    opacity: 0.05;
}
[data-legion-faq] .ordo-divider {
    width: 100%;
    height: 1px;
    position: relative;
    margin: 4rem 0;
    opacity: 0.4;
}
[data-legion-faq] .ordo-divider svg {
    width: 100%;
    height: 40px;
    display: block;
}
[data-legion-faq] .ordo-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
}
[data-legion-faq] .ordo-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
}
[data-legion-faq] .ordo-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-legion-faq] .ordo-reveal.ordo-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-legion-faq] .faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}
[data-legion-faq] .faq-intro h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}
[data-legion-faq] .faq-list {
    max-width: 1000px;
    margin: 0 auto;
}
[data-legion-faq] .faq-item {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-smooth);
}
[data-legion-faq] .faq-item:hover {
    border-color: var(--color-silver);
}
[data-legion-faq] .faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-smooth);
}
[data-legion-faq] .faq-question:hover {
    color: var(--color-silver);
}
[data-legion-faq] .faq-question:focus-visible {
    outline: 3px solid var(--color-silver);
    outline-offset: 4px;
}
[data-legion-faq] .faq-icon {
    font-size: 1.5rem;
    color: var(--color-silver);
    transition: transform var(--transition-smooth);
}
[data-legion-faq] .faq-item.active .faq-icon {
    transform: rotate(45deg);
}
[data-legion-faq] .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}
[data-legion-faq] .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}
[data-legion-faq] .faq-answer p {
    color: var(--color-light-gray);
    line-height: 1.8;
}
@media (prefers-reduced-motion: reduce) {
    [data-legion-faq] *,
    [data-legion-faq] *::before,
    [data-legion-faq] *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ─── online_viewer_net (31).html (footer) ─── */
*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --legion-silver: #c0c0c0;
            --legion-silver-light: #e0e0e0;
            --legion-silver-dark: #8a8a8a;
            --legion-black: #000000;
            --legion-dark: #0a0a0a;
            --transition-smooth: 0.3s ease;
        }
        
        [data-legion-footer] {
            background: var(--legion-black);
            padding: 5rem 4rem 3rem;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        [data-legion-footer-inner] {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 3rem;
        }
        
        [data-legion-footer-logo] {
            flex-shrink: 0;
        }
        [data-legion-footer-logo] a {
            display: block;
            transition: opacity var(--transition-smooth), transform var(--transition-smooth);
        }
        [data-legion-footer-logo] a:hover {
            opacity: 0.85;
            transform: scale(1.02);
        }
        [data-legion-footer-logo] img {
            display: block;
            width: auto;
            height: 180px;
            object-fit: contain;
        }
        
        [data-legion-footer-nav] {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem 3rem;
            justify-content: flex-end;
            align-items: center;
        }
        [data-legion-footer-nav] a {
            color: var(--legion-silver-light);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
        }
        [data-legion-footer-nav] a:hover {
            color: #ffffff;
            text-shadow: 
                0 0 10px rgba(255, 255, 255, 0.6),
                0 0 20px rgba(255, 255, 255, 0.4),
                0 0 30px rgba(192, 192, 192, 0.3);
        }
        
        [data-legion-footer-disclaimer] {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(192, 192, 192, 0.15);
        }
        [data-legion-footer-disclaimer] p {
            color: var(--legion-silver-dark);
            font-size: 0.8125rem;
            line-height: 1.7;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        @media (max-width: 1024px) {
            [data-legion-footer] {
                padding: 4rem 2.5rem 2.5rem;
            }
            [data-legion-footer-inner] {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 2.5rem;
            }
            [data-legion-footer-nav] {
                justify-content: center;
            }
            [data-legion-footer-logo] img {
                height: 160px;
            }
        }
        
        @media (max-width: 768px) {
            [data-legion-footer] {
                padding: 3rem 1.5rem 2rem;
            }
            [data-legion-footer-nav] {
                gap: 1.25rem 2rem;
            }
            [data-legion-footer-nav] a {
                font-size: 0.875rem;
            }
            [data-legion-footer-logo] img {
                height: 140px;
            }
            [data-legion-footer-disclaimer] {
                margin-top: 2.5rem;
                padding-top: 1.5rem;
            }
            [data-legion-footer-disclaimer] p {
                font-size: 0.75rem;
            }
        }
        
        @media (max-width: 600px) {
            [data-legion-footer] {
                padding: 2.5rem 1.25rem 1.75rem;
            }
            [data-legion-footer-inner] {
                gap: 2rem;
            }
            [data-legion-footer-nav] {
                flex-direction: column;
                gap: 1rem;
            }
            [data-legion-footer-nav] a {
                font-size: 0.9375rem;
            }
            [data-legion-footer-logo] img {
                height: 120px;
            }
            [data-legion-footer-disclaimer] {
                margin-top: 2rem;
                padding-top: 1.25rem;
            }
            [data-legion-footer-disclaimer] p {
                font-size: 0.6875rem;
                line-height: 1.6;
            }
        }
        
        @media (max-width: 400px) {
            [data-legion-footer] {
                padding: 2rem 1rem 1.5rem;
            }
            [data-legion-footer-logo] img {
                height: 100px;
            }
            [data-legion-footer-nav] a {
                font-size: 0.875rem;
            }
            [data-legion-footer-disclaimer] p {
                font-size: 0.625rem;
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            [data-legion-footer-logo] a,
            [data-legion-footer-nav] a {
                transition: none;
            }
        }
        [data-legion-footer-nav] a:focus-visible,
        [data-legion-footer-logo] a:focus-visible {
            outline: 2px solid var(--legion-silver);
            outline-offset: 3px;
        }
/* CTA Button size fix - smaller */
[data-legion-cta] {
    padding: 0.7rem 1.5rem !important;
    font-size: 0.8rem !important;
}
.hero-btn, .ordo-btn {
    padding: 1.1rem 2.2rem !important;
    font-size: 0.95rem !important;
}

/* Cookie-Button: nur Schild-Icon, kein Text */
#mm-cb-revoke span {
    display: none !important;
}
#mm-cb-revoke {
    padding: 8px !important;
    min-width: auto !important;
    border-radius: 50% !important;
}
