:root {
            /* Helle Basis-Farben */
            --white: rgb(255, 255, 255);
            --bg-white: #5f8dff1a;
            --bg-light: #5f8dff1a;
            --text-dark: #23272a;
            --text-muted: #4f5660;

            --page-bg: #5f8dff1a;
            --surface: #ffffff;
            --surface-elevated: #ffffff;
            --border-subtle: rgba(95, 141, 255, 0.15);
            --logo-text: #23272a;
            --header-nav: #23272a;

            --logo: #4317A7;
            --logo-grey: #23272A;
            /* Akzentfarben: Blau & Lila */
            --blue: #5f8dff;
            --purple: #4317A7;
            --gradient: #4317A7;
            --gradient-hover: linear-gradient(125deg, #4a78e8, #7550d4);
            --grad-soft: linear-gradient(125deg, rgba(95, 141, 255, 0.14), rgba(138, 99, 232, 0.14));

            --radius-lg: 16px;
            --radius-pill: 999px;
            --shadow: 0 8px 24px rgba(138, 99, 232, 0.15);

        }

        body.theme-light {
            --page-bg: #5f8dff1a;
            --surface: #ffffff;
            --surface-elevated: #ffffff;
            --border-subtle: rgba(95, 141, 255, 0.15);
            --logo-text: #23272a;
            --header-nav: #23272a;
            --text-dark: #23272a;
            --text-muted: #4f5660;
            --bg-white: #5f8dff1a;
            --bg-light: #5f8dff1a;
            --btn-border: rgba(35, 39, 42, 0.32);
        }

        body.theme-dark {
            --page-bg: #0f1118;
            --surface: #171924;
            --surface-elevated: #1e2233;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --logo-text: #ffffff;
            --header-nav: rgba(255, 255, 255, 0.78);
            --text-dark: rgba(255, 255, 255, 0.92);
            --text-muted: rgba(255, 255, 255, 0.55);
            --bg-white: #0f1118;
            --bg-light: rgba(95, 141, 255, 0.06);
            --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
            --btn-border: rgba(255, 255, 255, 0.28);
        }

        @property --btn-blue-mix {
            syntax: '<percentage>';
            inherits: false;
            initial-value: 0%;
        }

        @font-face {
            font-family: "Baloo 2";
            src: url("data/font/Baloo2-VariableFont_wght.ttf") format("truetype");
            font-weight: 100 900;
            font-style: normal;
            font-display: swap;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Space Grotesk", system-ui, sans-serif;
            color: var(--text-dark);
            background-color: var(--page-bg);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* --- Navigation --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 24px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            pointer-events: none;
        }

        header .logo,
        header .header-actions,
        header .login-btn {
            pointer-events: auto;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .lang-switch {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border-subtle);
        }

        body.theme-light .lang-switch {
            background: rgba(35, 39, 42, 0.04);
        }

        .lang-switch-btn {
            font-family: inherit;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            padding: 4px 8px;
            border: none;
            background: transparent;
            color: var(--text-muted);
            cursor: pointer;
            border-radius: 6px;
            line-height: 1.2;
            transition: color 0.15s ease, background 0.15s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .lang-switch-btn .lang-flag {
            display: inline-flex;
            align-items: center;
            line-height: 1;
        }

        .lang-switch-btn img.twemoji {
            width: 1.125rem;
            height: 1.125rem;
            margin: 0;
            vertical-align: middle;
        }

        .lang-switch-btn .lang-label {
            line-height: 1;
        }

        .lang-switch-btn:hover {
            color: var(--text-dark);
        }

        .lang-switch-btn.is-active {
            color: var(--text-dark);
            background: rgba(95, 141, 255, 0.2);
        }

        body.theme-dark .lang-switch-btn.is-active {
            color: #fff;
        }

        .lang-switch-sep {
            color: var(--text-muted);
            opacity: 0.45;
            font-size: 0.75rem;
            user-select: none;
        }

        .logo {
            font-size: 2.7rem;
            font-family: "Baloo 2", system-ui, sans-serif;
            font-weight: 800;
            background-clip: text;
            -webkit-background-clip: text;
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .logo img {
            width: 52px;
            height: 52px;
        }

        .logo a {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .logo .logo-text {
            color: var(--logo-text) !important;
        }

        .nav-links {
            position: absolute;
            top: 48px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 32px;
            font-weight: 600;
            font-size: 1rem;
            color: var(--header-nav);
            z-index: 50;
        }

        .nav-links a:hover {
            color: var(--blue);
        }

        body.theme-light .nav-links a:hover {
            color: var(--purple);
        }

        body.theme-dark .login-btn {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.14);
            color: var(--white);
        }

        body.theme-dark .login-btn:hover {
            background: var(--purple);
            border-color: transparent;
        }

        /* Font Awesome icon boxes (einheitlich auf allen Seiten) */
        .icon-box {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--grad-soft);
            border: 1px solid var(--border-subtle);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--blue);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .icon-box.value-icon {
            width: 56px;
            height: 56px;
            font-size: 1.35rem;
            line-height: 1;
            margin-bottom: 12px;
        }

        .icon-box.value-icon i {
            display: block;
            line-height: 1;
        }

        body.theme-dark .icon-box {
            background: rgba(95, 141, 255, 0.1);
            border-color: rgba(95, 141, 255, 0.22);
        }

        .icon-box-lg {
            width: 88px;
            height: 88px;
            font-size: 2rem;
            border-radius: var(--radius-lg);
        }

        .about-visual .icon-box-lg {
            width: 64px;
            height: 64px;
            font-size: 1.5rem;
        }

        .pillar-icon.icon-box {
            margin-bottom: 20px;
        }

        .login-btn {
            background: var(--text-dark);
            color: var(--white);
            padding: 10px 24px;
            border-radius: var(--radius-pill);
            font-weight: 600;
            border: 1px solid transparent;
            transition: background 0.2s, border-color 0.45s ease;
        }

        body.theme-light .login-btn {
            border-color: var(--btn-border);
        }

        .login-btn:hover {
            background: var(--purple);
        }

        .login-btn-secondary {
            background: transparent;
            color: var(--text-muted);
            border-color: var(--border-subtle);
        }

        .login-btn-secondary:hover {
            background: rgba(95, 141, 255, 0.1);
            color: var(--text-dark);
            border-color: rgba(95, 141, 255, 0.35);
        }

        body.theme-dark .login-btn-secondary {
            color: var(--text-muted);
            border-color: var(--border-subtle);
        }

        body.theme-dark .login-btn-secondary:hover {
            color: var(--text-dark);
        }

        /* --- Hero Section --- */
        .hero {
            background-color: var(--bg-light);
            padding: 160px 40px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 120%;
            height: 100%;
            background: radial-gradient(circle, rgba(95, 141, 255, 0.1) 0%, rgba(138, 99, 232, 0.05) 50%, transparent 80%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: clamp(3rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            text-transform: uppercase;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 60px;
        }

        /* Buttons — schlicht, dünner Rand je nach Theme */
        .btn-primary,
        .btn-secondary,
        .download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 32px;
            min-height: 48px;
            border-radius: var(--radius-pill);
            font-family: inherit;
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.2;
            cursor: pointer;
            text-decoration: none;
            box-shadow: none;
            filter: none;
            -webkit-tap-highlight-color: transparent;
        }

        /* Primary: Lila (#4317A7), Hover mischt langsam #4a78e8 ein */
        .btn-primary,
        .download-btn {
            --btn-blue-mix: 0%;
            background: linear-gradient(
                125deg,
                #4317a7 0%,
                color-mix(in srgb, #4317a7 calc(100% - var(--btn-blue-mix)), #4a78e8 var(--btn-blue-mix)) 100%
            );
            color: #fff;
            border: 1px solid var(--btn-border, rgba(255, 255, 255, 0.28));
            transition:
                --btn-blue-mix 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.45s ease;
        }

        .btn-primary:hover,
        .download-btn:hover,
        .btn-primary:focus-visible,
        .download-btn:focus-visible {
            --btn-blue-mix: 42%;
        }

        body.theme-light .btn-primary,
        body.theme-light .btn-secondary,
        body.theme-light .download-btn {
            border: 1px solid var(--btn-border);
        }

        body.theme-dark .btn-primary,
        body.theme-dark .btn-secondary,
        body.theme-dark .download-btn {
            border: 1px solid var(--btn-border);
        }

        a.btn-primary:hover,
        a.download-btn:hover {
            color: #fff;
        }

        a.btn-secondary:hover {
            color: #fff;
        }

        .btn-primary:active,
        .btn-secondary:active,
        .download-btn:active {
            opacity: 0.9;
        }

        .btn-primary:focus-visible,
        .btn-secondary:focus-visible,
        .download-btn:focus-visible {
            outline: 2px solid var(--blue);
            outline-offset: 2px;
        }

        .btn-secondary {
            background: #23272a;
            color: #fff;
            border: 1px solid var(--btn-border, rgba(35, 39, 42, 0.28));
            transition: background-color 0.45s ease, border-color 0.45s ease;
        }

        .btn-secondary:hover {
            background: #363b40;
        }

        body.theme-dark .btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.92);
            border-color: rgba(255, 255, 255, 0.28);
        }

        body.theme-dark .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .download-btn-action {
            white-space: nowrap;
            flex-shrink: 0;
        }

        .cta .btn-primary {
            --btn-blue-mix: 0% !important;
            background: #fff !important;
            color: var(--purple);
            border: 1px solid rgba(35, 39, 42, 0.2);
            transition: background-color 0.45s ease, border-color 0.45s ease;
        }

        .cta .btn-primary:hover,
        .cta .btn-primary:focus-visible {
            --btn-blue-mix: 0% !important;
            background: #f4f5f9 !important;
            color: var(--purple);
        }

        .cta a.btn-primary:hover {
            color: var(--purple);
        }

        .about-cta .btn-primary {
            --btn-blue-mix: 0% !important;
            background: #fff !important;
            color: var(--purple);
            border: 1px solid rgba(35, 39, 42, 0.2);
            transition: background-color 0.45s ease, border-color 0.45s ease;
        }

        .about-cta .btn-primary:hover,
        .about-cta .btn-primary:focus-visible {
            --btn-blue-mix: 0% !important;
            background: #f4f5f9 !important;
            color: var(--purple);
        }

        .about-cta a.btn-primary:hover {
            color: var(--purple);
        }

        /* --- Platzhalter für große Hero-Illustration --- */
        .hero-illustration {
            width: 100%;
            max-width: 1200px;
            height: 400px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(95, 141, 255, 0.1), rgba(138, 99, 232, 0.1));
            border: 2px dashed var(--purple);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--purple);
            font-weight: 600;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
        }

        /* --- Feature Sections (Alternierend) --- */
        .section {
            padding: 120px 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section-alt {
            background-color: var(--bg-light);
        }

        .container {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .section.reverse .container {
            direction: rtl;
        }

        .section.reverse .text-content {
            direction: ltr;
        }

        .text-content h2 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .text-content p {
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        /* --- Platzhalter für Figuren & Artworks --- */
        .illustration-box {
            width: 100%;
            aspect-ratio: 4/3;
            background: rgba(95, 141, 255, 0.05);
            border: 2px dashed var(--blue);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue);
            font-weight: 600;
            font-size: 1.2rem;
            text-align: center;
            padding: 20px;
        }

        /* --- Bottom CTA --- */
        .cta {
            padding: 120px 40px;
            text-align: center;
            background: var(--gradient);
            color: white;
        }

        .cta h2 {
            font-size: 3rem;
            margin-bottom: 40px;
        }

        /* --- Footer --- */
        footer {
            background: #0f1117;
            color: white;
            padding: 80px 40px 0;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gradient);
        }

        footer::after {
            content: '';
            position: absolute;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(95, 141, 255, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-brand .logo-text {
            font-family: "Baloo 2", system-ui, sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-brand h3 {
            font-family: "Baloo 2", system-ui, sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0;
        }

        .footer-brand p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.7;
            max-width: 260px;
        }

        .footer-tagline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.35);
            letter-spacing: 0.05em;
            margin-top: 8px;
        }

        .footer-links {
            display: contents;
        }

        .link-column h4 {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.35);
            margin-bottom: 20px;
        }

        .link-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .link-column a {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.65);
            transition: color 0.2s;
            font-weight: 500;
        }

        .link-column a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 28px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
            z-index: 1;
        }

        .footer-bottom p {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.3);
            font-weight: 500;
        }

        .footer-developer a {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .footer-developer a:hover {
            color: #fff;
        }

        /* --- Legal Pages (Datenschutz, Impressum) --- */
        .legal-hero {
            padding: 160px 40px 60px;
            text-align: center;
            background: var(--bg-light);
            position: relative;
            overflow: hidden;
        }

        .legal-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 120%;
            height: 100%;
            background: radial-gradient(circle, rgba(95, 141, 255, 0.1) 0%, rgba(138, 99, 232, 0.05) 50%, transparent 80%);
            z-index: 0;
        }

        .legal-hero-content {
            position: relative;
            z-index: 1;
        }

        .legal-badge {
            display: inline-block;
            background: var(--gradient);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: var(--radius-pill);
            margin-bottom: 24px;
        }

        .legal-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: 12px;
        }

        .legal-hero p {
            margin-top: 16px;
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        /* Layout with sidebar TOC */
        .legal-layout {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px 120px;
            display: grid;
            grid-template-columns: 220px 1fr;
            gap: 80px;
            align-items: start;
        }

        .toc {
            position: sticky;
            top: 100px;
        }

        .toc-title {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .toc a {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-muted);
            padding: 8px 0;
            border-left: 2px solid rgba(95, 141, 255, 0.2);
            padding-left: 16px;
            transition: color 0.2s, border-color 0.2s;
        }

        .toc a:hover {
            color: var(--blue);
            border-color: var(--blue);
        }

        .legal-content {}

        .legal-section {
            margin-bottom: 64px;
            scroll-margin-top: 100px;
        }

        .legal-section h2 {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--gradient);
            color: white;
            font-size: 0.8rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .legal-section p,
        .legal-section li {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.85;
            margin-bottom: 12px;
        }

        .legal-section ul {
            padding-left: 0;
            list-style: none;
        }

        .legal-section ul li::before {
            content: '→';
            color: var(--blue);
            margin-right: 10px;
            font-weight: 700;
        }

        .legal-section a {
            color: var(--blue);
            border-bottom: 1px solid rgba(95, 141, 255, 0.3);
            transition: border-color 0.2s;
        }

        .legal-section a:hover {
            border-color: var(--blue);
        }

        .highlight-box {
            background: rgba(95, 141, 255, 0.06);
            border: 1px solid rgba(95, 141, 255, 0.2);
            border-left: 3px solid var(--blue);
            border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
            padding: 20px 24px;
            margin: 20px 0;
        }

        .highlight-box p {
            margin-bottom: 0;
        }

        .rights-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 16px;
        }

        .right-item {
            background: rgba(67, 23, 167, 0.04);
            border: 1px solid rgba(67, 23, 167, 0.12);
            border-radius: var(--radius-lg);
            padding: 20px;
        }

        .right-item .right-title {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--purple);
            margin-bottom: 6px;
        }

        .right-item p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        /* Impressum page */
        .legal-body {
            max-width: 760px;
            margin: 0 auto;
            padding: 80px 40px 120px;
        }

        .legal-body .legal-section {
            margin-bottom: 56px;
            padding-bottom: 56px;
            border-bottom: 1px solid rgba(95, 141, 255, 0.15);
        }

        .legal-body .legal-section:last-child {
            border-bottom: none;
        }

        .legal-body .legal-section h2 {
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--blue);
            margin-bottom: 20px;
            display: block;
        }

        .legal-section address {
            font-style: normal;
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 8px;
        }

        .info-card {
            background: rgba(95, 141, 255, 0.06);
            border: 1px solid rgba(95, 141, 255, 0.15);
            border-radius: var(--radius-lg);
            padding: 24px;
        }

        .info-card .label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 8px;
        }

        .info-card .value {
            font-size: 1rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        body.legal-page .legal-layout {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0;
            gap: 56px;
        }

        body.legal-page .legal-section h3.legal-subheading {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 28px 0 12px;
        }

        body.legal-page .legal-provider {
            margin-top: 16px;
            padding: 20px 24px;
            background: var(--surface-elevated);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
        }

        body.legal-page .legal-provider h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        body.legal-page .legal-objection {
            margin-top: 20px;
            padding: 20px 24px;
            background: rgba(95, 141, 255, 0.06);
            border: 1px solid rgba(95, 141, 255, 0.2);
            border-radius: var(--radius-lg);
            font-size: 0.92rem;
            line-height: 1.75;
            color: var(--text-muted);
        }

        body.legal-page .legal-objection p {
            margin-bottom: 12px;
        }

        body.legal-page .legal-objection p:last-child {
            margin-bottom: 0;
        }

        body.legal-page .toc a.active {
            color: var(--blue);
            border-color: var(--blue);
        }

        body.legal-page .legal-body {
            max-width: 760px;
            padding: 0;
        }

        body.legal-page .impressum-body .impressum-address {
            font-style: normal;
            line-height: 1.85;
            margin-bottom: 24px;
            color: var(--text-muted);
        }

        body.legal-page .impressum-body .impressum-contact {
            margin-bottom: 24px;
        }

        /* --- Unterstützen / Crowdfunding --- */
        body.support-page .about-hero-pro .hero-buttons {
            margin-top: 32px;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .value-card--tagged {
            position: relative;
        }

        .value-card-tag {
            position: absolute;
            top: 16px;
            right: 16px;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            background: rgba(95, 141, 255, 0.15);
            color: var(--blue);
            border: 1px solid rgba(95, 141, 255, 0.25);
        }

        .support-note {
            margin-top: 32px;
            text-align: center;
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.75;
        }

        .support-steps {
            list-style: none;
            padding: 0;
            margin: 0;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .support-steps li {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .support-step-num {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient);
            color: #fff;
            font-weight: 800;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .support-steps h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0 0 8px;
            color: var(--text-dark);
        }

        .support-steps p {
            margin: 0;
            color: var(--text-muted);
            line-height: 1.75;
        }

        .support-cta .hero-buttons {
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 20px;
        }

        .support-cta-hint {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto;
        }

        .support-cta-hint a {
            color: var(--blue);
            border-bottom: 1px solid rgba(95, 141, 255, 0.35);
        }

        /* --- Articles Page --- */
        .articles-hero {
            padding: 160px 40px 80px;
            text-align: center;
            background: var(--bg-light);
            position: relative;
            overflow: hidden;
        }

        .articles-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 120%;
            height: 200%;
            background: radial-gradient(circle, rgba(95, 141, 255, 0.1) 0%, rgba(138, 99, 232, 0.05) 50%, transparent 80%);
            z-index: 0;
        }

        .articles-hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .articles-hero h1 {
            font-size: clamp(3rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            text-transform: uppercase;
        }

        .articles-hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .articles-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 100px 40px 120px;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .article-card {
            background: white;
            border: 1px solid rgba(95, 141, 255, 0.15);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }

        .article-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(138, 99, 232, 0.2);
        }

        .article-card-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, rgba(95, 141, 255, 0.15), rgba(138, 99, 232, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue);
            font-size: 3rem;
        }

        .article-card-content {
            padding: 32px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .article-card-category {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 12px;
        }

        .article-card-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .article-card-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .article-card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(95, 141, 255, 0.1);
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .article-card-read-more {
            color: var(--blue);
            font-weight: 600;
            transition: color 0.2s;
        }

        .article-card-read-more:hover {
            color: var(--purple);
        }

        /* --- Brand Pages (Marke) --- */
        .brand-hero {
            padding: 160px 40px 100px;
            text-align: center;
            background: var(--text-dark);
            position: relative;
            overflow: hidden;
            color: white;
        }

        .brand-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 60% at 20% 50%, rgba(95, 141, 255, 0.18) 0%, transparent 70%),
                radial-gradient(ellipse 50% 50% at 80% 40%, rgba(67, 23, 167, 0.22) 0%, transparent 70%);
        }

        .brand-hero-content {
            position: relative;
            z-index: 1;
        }

        .brand-badge {
            display: inline-block;
            border: 1px solid rgba(95, 141, 255, 0.4);
            color: var(--blue);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: var(--radius-pill);
            margin-bottom: 24px;
        }

        .brand-hero h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 800;
            text-transform: uppercase;
            line-height: 1.05;
            margin-bottom: 20px;
        }

        .brand-hero h1 span {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .brand-hero p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: 560px;
            margin: 0 auto 40px;
        }

        .brand-body {
            max-width: 1100px;
            margin: 0 auto;
            padding: 100px 40px 140px;
        }

        .brand-section {
            margin-bottom: 100px;
        }

        .brand-section-header {
            display: flex;
            align-items: baseline;
            gap: 16px;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(95, 141, 255, 0.15);
        }

        .brand-section-header h2 {
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .brand-section-header .section-tag {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--blue);
            background: rgba(95, 141, 255, 0.1);
            padding: 4px 12px;
            border-radius: var(--radius-pill);
        }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .logo-card {
            border-radius: var(--radius-lg);
            padding: 48px 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            position: relative;
        }

        .logo-card-light {
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .logo-card-dark {
            background: var(--text-dark);
        }

        .logo-card-gradient {
            background: var(--gradient);
        }

        .logo-card .logo-preview {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: "Space Grotesk", sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
        }

        .logo-card .logo-preview img {
            width: 40px;
            height: 40px;
        }

        .logo-card-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .logo-card-light .logo-card-label {
            color: var(--text-muted);
        }

        .logo-card-dark .logo-card-label {
            color: rgba(255, 255, 255, 0.4);
        }

        .logo-card-gradient .logo-card-label {
            color: rgba(255, 255, 255, 0.7);
        }

        .logo-card-dark .logo-preview {
            color: white;
        }

        .logo-card-gradient .logo-preview {
            color: white;
        }

        .color-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .color-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .color-swatch {
            height: 100px;
        }

        .color-info {
            padding: 14px 16px;
            background: white;
        }

        .color-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

        .color-hex {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-family: monospace;
        }

        .color-role {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--blue);
            margin-top: 4px;
        }

        .type-showcase {
            display: grid;
            gap: 24px;
        }

        .type-card {
            background: white;
            border: 1px solid rgba(95, 141, 255, 0.12);
            border-radius: var(--radius-lg);
            padding: 32px 40px;
            display: grid;
            grid-template-columns: 180px 1fr;
            gap: 40px;
            align-items: center;
        }

        .type-meta .type-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 6px;
        }

        .type-meta .type-name {
            font-weight: 700;
            color: var(--text-dark);
        }

        .type-meta .type-usage {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .type-sample-display {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .type-sample-body {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .rules-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .rule-card {
            border-radius: var(--radius-lg);
            padding: 28px 32px;
            border: 1px solid transparent;
        }

        .rule-do {
            background: rgba(95, 141, 255, 0.05);
            border-color: rgba(95, 141, 255, 0.2);
        }

        .rule-dont {
            background: rgba(220, 50, 50, 0.04);
            border-color: rgba(220, 50, 50, 0.15);
        }

        .rule-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .rule-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: 800;
            flex-shrink: 0;
        }

        .rule-do .rule-icon {
            background: rgba(95, 141, 255, 0.15);
            color: var(--blue);
        }

        .rule-dont .rule-icon {
            background: rgba(220, 50, 50, 0.12);
            color: #dc3232;
        }

        .rule-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .rule-do .rule-label {
            color: var(--blue);
        }

        .rule-dont .rule-label {
            color: #dc3232;
        }

        .rule-card ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .rule-card li {
            font-size: 0.95rem;
            color: var(--text-muted);
            padding-left: 16px;
            position: relative;
        }

        .rule-do li::before {
            content: '✓';
            color: var(--blue);
            position: absolute;
            left: 0;
            font-weight: 700;
        }

        .rule-dont li::before {
            content: '✗';
            color: #dc3232;
            position: absolute;
            left: 0;
            font-weight: 700;
        }

        .gradient-strip {
            height: 120px;
            border-radius: var(--radius-lg);
            background: var(--gradient);
            margin-bottom: 16px;
            position: relative;
            overflow: hidden;
        }

        .gradient-strip::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 60%, rgba(255, 255, 255, 0.08));
        }

        .gradient-label {
            font-size: 0.8rem;
            font-family: monospace;
            color: var(--text-muted);
            background: rgba(95, 141, 255, 0.06);
            border: 1px solid rgba(95, 141, 255, 0.15);
            border-radius: 8px;
            padding: 10px 16px;
            display: inline-block;
        }

        .spacing-display {
            display: flex;
            align-items: flex-end;
            gap: 24px;
            flex-wrap: wrap;
        }

        .spacing-item {
            text-align: center;
        }

        .spacing-bar {
            background: var(--gradient);
            border-radius: 4px;
            width: 40px;
            margin: 0 auto 8px;
            opacity: 0.7;
        }

        .spacing-value {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--text-muted);
            font-family: monospace;
        }

        /* --- About Page --- */
        .about-hero {
            padding: 200px 40px 100px;
            text-align: center;
            background: var(--text-dark);
            position: relative;
            overflow: hidden;
            color: white;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 80% at 50% 0%, rgba(95, 141, 255, 0.25) 0%, transparent 60%),
                radial-gradient(ellipse 60% 60% at 0% 50%, rgba(67, 23, 167, 0.15) 0%, transparent 70%),
                radial-gradient(ellipse 60% 60% at 100% 50%, rgba(95, 141, 255, 0.15) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(20px); }
        }

        .about-hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .about-hero-content p {
            margin-bottom: 24px;
        }

        .about-hero-badge {
            display: inline-block;
            border: 1px solid rgba(95, 141, 255, 0.5);
            color: var(--blue);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 8px 20px;
            border-radius: var(--radius-pill);
            margin-bottom: 32px;
            animation: fadeInDown 0.8s ease-out;
        }

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

        .about-hero h1 {
            font-size: clamp(3.5rem, 7vw, 5.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeInDown 0.8s ease-out 0.1s both;
        }

        .gradient-text {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-hero h1 .gradient-text {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-hero p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            animation: fadeInDown 0.8s ease-out 0.2s both;
        }

        /* About Content Sections */
        .about-section {
            padding: 120px 40px;
            position: relative;
        }

        .about-section-light {
            background: white;
        }

        .about-section-dark {
            background: rgba(35, 39, 42, 0.5);
            color: white;
        }

        .about-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .about-section-header {
            margin-bottom: 80px;
            text-align: center;
        }

        .about-section-header h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .about-section-light .about-section-header h2 {
            color: var(--text-dark);
        }

        .about-section-dark .about-section-header h2 {
            color: white;
        }

        .about-section-header p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            color: var(--text-muted);
        }

        .about-section-dark .about-section-header p {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Two-column layout */
        .about-grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-grid-2.reverse {
            direction: rtl;
        }

        .about-grid-2.reverse > * {
            direction: ltr;
        }

        .about-content h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .about-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .about-section-light .about-content p {
            color: var(--text-muted);
        }

        .about-section-dark .about-content p {
            color: rgba(255, 255, 255, 0.7);
        }

        .about-content ul {
            list-style: none;
            padding: 0;
            margin-top: 30px;
        }

        .about-content li {
            font-size: 1.05rem;
            padding: 16px 0;
            padding-left: 40px;
            position: relative;
            line-height: 1.6;
        }

        .about-section-light .about-content li {
            color: var(--text-muted);
        }

        .about-section-dark .about-content li {
            color: rgba(255, 255, 255, 0.7);
        }

        .about-content li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: var(--blue);
            font-weight: 800;
            font-size: 1.2rem;
        }

        .about-visual {
            width: 100%;
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, rgba(95, 141, 255, 0.15), rgba(138, 99, 232, 0.1));
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            border: 2px dashed rgba(95, 141, 255, 0.3);
        }

        .about-section-dark .about-visual {
            background: rgba(95, 141, 255, 0.08);
            border-color: rgba(95, 141, 255, 0.2);
        }

        /* Values Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .value-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(95, 141, 255, 0.1);
        }

        .value-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(138, 99, 232, 0.15);
        }

        .value-icon:not(.icon-box) {
            font-size: 3rem;
            margin-bottom: 20px;
            display: inline-block;
        }

        .value-card h4 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .value-card p {
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Stats Section */
        .about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .stat-item {
            text-align: center;
            padding: 32px;
            background: rgba(95, 141, 255, 0.06);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(95, 141, 255, 0.15);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 12px;
        }

        .stat-label {
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .stat-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .about-section-dark .stat-item {
            background: rgba(95, 141, 255, 0.1);
            border-color: rgba(95, 141, 255, 0.2);
        }

        .about-section-dark .stat-label {
            color: rgba(255, 255, 255, 0.6);
        }

        .about-section-dark .stat-desc {
            color: rgba(255, 255, 255, 0.7);
        }

        /* CTA Section in About */
        .about-cta {
            padding: 80px 40px;
            background: var(--gradient);
            color: white;
            text-align: center;
            border-radius: var(--radius-lg);
            margin: 0 40px;
        }

        .about-cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 24px;
        }

        .about-cta p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 40px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* --- Security & Support Pages --- */
        .page-hero {
            padding: 160px 40px 80px;
            text-align: center;
            background: var(--bg-light);
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 120%;
            height: 100%;
            background: radial-gradient(circle, rgba(95, 141, 255, 0.12) 0%, rgba(67, 23, 167, 0.06) 50%, transparent 80%);
            z-index: 0;
        }

        .page-hero-content {
            position: relative;
            z-index: 1;
            max-width: 760px;
            margin: 0 auto;
        }

        .page-badge {
            display: inline-block;
            background: var(--gradient);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: var(--radius-pill);
            margin-bottom: 24px;
        }

        .page-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .page-hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .page-intro {
            max-width: 760px;
            margin: -20px auto 0;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .page-body {
            max-width: 1100px;
            margin: 0 auto;
            padding: 80px 40px 120px;
        }

        .page-section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .page-section-header h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .page-section-header p {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin-top: 24px;
            text-align: left;
        }

        .feature-list li {
            font-size: 1rem;
            color: var(--text-muted);
            padding: 10px 0 10px 28px;
            position: relative;
            line-height: 1.6;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--blue);
            font-weight: 800;
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }

        .pillar-card {
            background: var(--surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            transition: transform 0.25s, box-shadow 0.25s;
        }

        .pillar-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(138, 99, 232, 0.12);
        }

        .pillar-icon {
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .pillar-card h3 {
            font-size: 1.15rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .pillar-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .pillar-card a {
            color: var(--blue);
            border-bottom: 1px solid rgba(95, 141, 255, 0.3);
        }

        .pillar-card a:hover {
            border-color: var(--blue);
        }

        .cta p {
            font-size: 1.1rem;
        }

        /* --- Support (dark, professional) --- */
        .support-hero {
            padding: 168px 40px 72px;
            background: var(--page-bg);
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-subtle);
        }

        .support-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 55% 80% at 15% 30%, rgba(95, 141, 255, 0.14) 0%, transparent 65%),
                radial-gradient(ellipse 45% 60% at 85% 70%, rgba(67, 23, 167, 0.18) 0%, transparent 65%);
            pointer-events: none;
        }

        .support-hero-inner {
            position: relative;
            z-index: 1;
            max-width: 720px;
            margin: 0 auto;
        }

        .support-hero h1 {
            font-size: clamp(2.2rem, 4.5vw, 3.2rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .support-hero-lead {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .support-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-muted);
        }

        .support-meta-row span {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .support-meta-row i {
            color: var(--blue);
        }

        .support-main {
            max-width: 1100px;
            margin: 0 auto;
            padding: 72px 40px 120px;
        }

        .support-section {
            margin-bottom: 80px;
        }

        .support-section-label {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 28px;
        }

        .support-channels {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .support-channel-card {
            background: var(--surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            transition: border-color 0.2s, background 0.2s;
        }

        .support-channel-card:hover {
            border-color: rgba(95, 141, 255, 0.35);
            background: var(--surface-elevated);
        }

        .support-channel-body {
            flex: 1;
            min-width: 0;
        }

        .support-channel-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .support-channel-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin-bottom: 14px;
        }

        .support-channel-link {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--blue);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .support-channel-link i {
            font-size: 0.75rem;
            transition: transform 0.2s;
        }

        .support-channel-card:hover .support-channel-link {
            color: #8bb4ff;
        }

        .support-channel-card:hover .support-channel-link i {
            transform: translateX(3px);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background: var(--surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: border-color 0.2s;
        }

        .faq-item[open] {
            border-color: rgba(95, 141, 255, 0.3);
        }

        .faq-item summary {
            padding: 20px 24px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            user-select: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary .faq-chevron {
            color: var(--blue);
            font-size: 0.85rem;
            transition: transform 0.2s;
        }

        .faq-item[open] summary .faq-chevron {
            transform: rotate(180deg);
        }

        .faq-item p {
            padding: 0 24px 22px;
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .faq-item a {
            color: var(--blue);
            border-bottom: 1px solid rgba(95, 141, 255, 0.35);
        }

        .faq-item a:hover {
            border-color: var(--blue);
        }

        .support-contact-banner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
            padding: 40px 44px;
            background: var(--surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            border-left: 3px solid var(--blue);
        }

        .support-contact-banner h3 {
            font-size: 1.35rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .support-contact-banner p {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 420px;
            line-height: 1.65;
        }

        /* --- Security page (dark) --- */
        .security-main {
            max-width: 1100px;
            margin: 0 auto;
            padding: 56px 40px 120px;
        }

        .security-highlight {
            margin-bottom: 64px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .security-highlight i {
            color: var(--blue);
            margin-top: 3px;
            flex-shrink: 0;
        }

        .security-highlight p {
            margin: 0;
        }

        .security-block {
            margin-bottom: 48px;
        }

        .security-block-alt {
            padding: 48px 0;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .security-block-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .security-block-inner.reverse {
            direction: rtl;
        }

        .security-block-inner.reverse > * {
            direction: ltr;
        }

        .security-block-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            padding: 0;
        }

        .security-block-visual img {
            width: 100%;
            max-width: 520px;
            max-height: 400px;
            height: auto;
            object-fit: contain;
            display: block;
        }

        .security-block-content h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .security-block-content p {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 8px;
        }

        .security-section {
            margin-bottom: 80px;
        }

        .security-main .support-contact-banner {
            margin-top: 24px;
        }

        /* --- Download page --- */
        .download-hero-inner {
            max-width: 800px;
        }

        .download-version-badge {
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 20px;
            margin-top: 8px;
            padding: 14px 22px;
            background: var(--surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            font-size: 0.9rem;
        }

        .download-version-tag {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--blue);
            background: rgba(95, 141, 255, 0.12);
            padding: 4px 10px;
            border-radius: var(--radius-pill);
        }

        .download-version-badge strong {
            font-size: 1.05rem;
            color: var(--text-dark);
        }

        .download-version-date {
            color: var(--text-muted);
            font-weight: 500;
        }

        .download-main {
            max-width: 1100px;
            margin: 0 auto;
            padding: 72px 40px 120px;
        }

        .download-section {
            margin-bottom: 80px;
        }

        .download-primary-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
            padding: 36px 40px;
            background: var(--surface);
            border: 1px solid rgba(95, 141, 255, 0.25);
            border-radius: var(--radius-lg);
            box-shadow: 0 0 0 1px rgba(95, 141, 255, 0.08);
        }

        .download-primary-info {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .download-primary-info h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 6px;
            color: var(--text-dark);
        }

        .download-primary-info p {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .download-file-meta {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--blue);
        }

        .download-platform-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .download-platform-card {
            background: var(--surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: border-color 0.2s, background 0.2s;
        }

        .download-platform-card:hover {
            border-color: rgba(95, 141, 255, 0.3);
            background: var(--surface-elevated);
        }

        .download-platform-card-highlight {
            border-color: rgba(95, 141, 255, 0.28);
            background: rgba(95, 141, 255, 0.06);
        }

        .download-platform-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-top: 8px;
        }

        .download-platform-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            flex-grow: 1;
            margin-bottom: 12px;
        }

        .download-platform-link {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--blue);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .download-platform-link:hover {
            color: #8bb4ff;
        }

        .download-req-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .download-req-card {
            background: var(--surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px;
        }

        .download-req-card h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .download-req-card h4 i {
            color: var(--blue);
        }

        .download-req-card ul {
            list-style: none;
            padding: 0;
        }

        .download-req-card li {
            font-size: 0.9rem;
            color: var(--text-muted);
            padding: 8px 0 8px 20px;
            position: relative;
            line-height: 1.55;
            border-bottom: 1px solid var(--border-subtle);
        }

        .download-req-card li:last-child {
            border-bottom: none;
        }

        .download-req-card li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 16px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--blue);
        }

        .download-archive-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.65;
            max-width: 560px;
            margin-top: 8px;
        }

        .download-archive-platforms {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 28px;
        }

        .download-platform-accordion {
            background: var(--surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: border-color 0.2s;
        }

        .download-platform-accordion[open] {
            border-color: rgba(95, 141, 255, 0.3);
        }

        .download-platform-summary {
            list-style: none;
            cursor: pointer;
            user-select: none;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            transition: background 0.2s;
        }

        .download-platform-summary::-webkit-details-marker {
            display: none;
        }

        .download-platform-summary:hover {
            background: rgba(95, 141, 255, 0.04);
        }

        .download-platform-summary-left {
            display: flex;
            align-items: center;
            gap: 16px;
            min-width: 0;
        }

        .download-platform-summary .icon-box {
            width: 44px;
            height: 44px;
            font-size: 1.1rem;
        }

        .download-platform-name {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .download-platform-count {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-muted);
            padding-left: 12px;
            border-left: 1px solid var(--border-subtle);
        }

        .download-platform-chevron {
            color: var(--blue);
            font-size: 0.85rem;
            transition: transform 0.2s;
            flex-shrink: 0;
        }

        .download-platform-accordion[open] .download-platform-chevron {
            transform: rotate(180deg);
        }

        .download-platform-accordion .download-table-wrap {
            margin-top: 0;
            border: none;
            border-radius: 0;
            border-top: 1px solid var(--border-subtle);
        }

        .download-table-wrap {
            overflow-x: auto;
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            margin-top: 28px;
        }

        .download-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
        }

        .download-table thead {
            background: var(--surface-elevated);
        }

        .download-table th {
            text-align: left;
            padding: 16px 20px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border-subtle);
        }

        .download-table td {
            padding: 16px 20px;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border-subtle);
            vertical-align: middle;
        }

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

        .download-table tbody tr:hover {
            background: rgba(95, 141, 255, 0.04);
        }

        .version-num {
            font-weight: 700;
            color: var(--text-dark);
            margin-right: 8px;
        }

        .version-badge {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            padding: 3px 8px;
            border-radius: var(--radius-pill);
            background: rgba(95, 141, 255, 0.15);
            color: var(--blue);
        }

        .version-badge-legacy {
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-muted);
        }

        .download-table-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(95, 141, 255, 0.1);
            border: 1px solid rgba(95, 141, 255, 0.2);
            color: var(--blue);
            transition: background 0.2s, color 0.2s;
        }

        .download-table-btn:hover {
            background: var(--blue);
            color: white;
            border-color: var(--blue);
        }

        .download-archive-note {
            margin-top: 20px;
            font-size: 0.88rem;
            color: var(--text-muted);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.65;
        }

        .download-archive-note i {
            color: var(--blue);
            margin-top: 3px;
        }

        .download-archive-note a {
            color: var(--blue);
            border-bottom: 1px solid rgba(95, 141, 255, 0.35);
        }

        /* --- About (professional, dark) --- */
        .about-hero-pro {
            padding: 168px 40px 88px;
            text-align: center;
            background: var(--page-bg);
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-subtle);
        }

        .about-hero-pro::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 70% at 50% 0%, rgba(95, 141, 255, 0.16) 0%, transparent 55%),
                radial-gradient(ellipse 40% 50% at 90% 80%, rgba(67, 23, 167, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }

        .about-hero-pro .about-hero-content {
            position: relative;
            z-index: 1;
            max-width: 780px;
            margin: 0 auto;
        }

        .about-hero-pro h1 {
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .about-hero-pro p {
            font-size: 1.15rem;
            color: var(--text-muted);
            line-height: 1.75;
        }

        .about-page .about-section {
            padding: 96px 40px;
            border-bottom: 1px solid var(--border-subtle);
        }

        .about-page .about-section:last-of-type {
            border-bottom: none;
        }

        .about-page .about-section-surface {
            background: var(--surface);
        }

        .about-page .about-content li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.65rem;
            top: 18px;
            width: 22px;
            height: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(95, 141, 255, 0.12);
            border-radius: 50%;
            color: var(--blue);
        }

        .about-page .about-visual {
            background: var(--surface-elevated);
            border: 1px solid var(--border-subtle);
            font-size: 0;
        }

        .about-page .value-card {
            background: var(--surface-elevated);
            border-color: var(--border-subtle);
        }

        .about-page .value-card:hover {
            box-shadow: var(--shadow);
            border-color: rgba(95, 141, 255, 0.25);
        }

        .about-page .stat-item {
            background: var(--surface-elevated);
            border-color: var(--border-subtle);
        }

        .about-page .timeline-item::before {
            border-color: var(--page-bg);
        }

        .about-page .about-cta-wrap {
            padding: 96px 40px 120px;
        }

        .about-page .about-cta {
            max-width: 900px;
            margin: 0 auto;
            border-radius: var(--radius-lg);
        }

        .about-page .about-section-header h2,
        .about-page .about-content h3 {
            color: var(--text-dark);
        }

        .about-page .about-content li {
            color: var(--text-muted);
            border-bottom-color: var(--border-subtle);
        }

        .about-page .value-card h4 {
            color: var(--text-dark);
        }

        .about-page .value-card p {
            color: var(--text-muted);
        }

        .about-page .timeline-item h4 {
            color: var(--text-dark);
        }

        .about-page .timeline-item p {
            color: var(--text-muted);
        }

        body.home-page .about-hero-pro .about-hero-content p + p {
            margin-top: 1rem;
        }

        body.home-page .about-section-header p + p {
            margin-top: 1rem;
        }

        body.home-page .about-content code {
            word-break: break-all;
            font-size: 0.9em;
        }

        /* Tech section (index) — compact */
        body.home-page #technologie.about-section {
            padding-top: 72px;
            padding-bottom: 72px;
        }

        body.home-page .tech-compact-header {
            margin-bottom: 28px;
        }

        body.home-page .tech-compact-header h2 {
            font-size: clamp(1.5rem, 4vw, 2rem);
        }

        body.home-page .tech-compact-header p {
            font-size: 0.95rem;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        body.home-page .tech-compact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            max-width: 720px;
            margin: 0 auto 20px;
        }

        body.home-page .tech-compact-col {
            padding: 16px 18px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
            background: rgba(95, 141, 255, 0.04);
        }

        body.home-page .tech-compact-col h3 {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--blue);
            margin: 0 0 10px;
        }

        body.home-page .tech-compact-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        body.home-page .tech-compact-list li {
            font-size: 0.875rem;
            line-height: 1.45;
            color: var(--text-muted);
        }

        body.home-page .tech-compact-note {
            font-size: 0.9rem;
            line-height: 1.55;
            color: var(--text-muted);
            text-align: center;
            max-width: 560px;
            margin: 0 auto;
            padding-top: 4px;
        }

        /* Dark theme: shared page surfaces */
        body.theme-dark .article-card,
        body.theme-dark .faq-item,
        body.theme-dark .info-card,
        body.theme-dark .right-item {
            background: var(--surface);
            border-color: var(--border-subtle);
        }

        body.theme-dark .article-card:hover {
            box-shadow: var(--shadow);
        }

        body.theme-dark .article-card-image {
            background: rgba(95, 141, 255, 0.08);
            color: var(--blue);
            font-size: 2rem;
        }

        body.theme-dark .article-card-title {
            color: var(--text-dark);
        }

        body.theme-dark .stat-label {
            color: rgba(255, 255, 255, 0.45);
        }

        body.theme-dark .stat-desc {
            color: var(--text-muted);
        }

        body.theme-dark .legal-hero,
        body.theme-dark .articles-hero,
        body.theme-dark .page-hero {
            background: var(--page-bg);
            border-bottom: 1px solid var(--border-subtle);
        }

        body.theme-dark .section-alt {
            background: var(--bg-light);
        }

        body.theme-dark .highlight-box {
            background: rgba(95, 141, 255, 0.08);
            border-color: rgba(95, 141, 255, 0.2);
        }

        body.theme-dark .brand-body {
            background: var(--page-bg);
        }

        body.theme-dark .logo-card-light,
        body.theme-dark .color-info,
        body.theme-dark .type-card,
        body.theme-dark .rule-do {
            background: var(--surface);
            border-color: var(--border-subtle);
            color: var(--text-dark);
        }

        body.theme-dark .color-name {
            color: var(--text-dark);
        }

        body.theme-dark .legal-section h2 {
            color: var(--text-dark);
        }

        body.theme-dark .toc a {
            border-left-color: rgba(95, 141, 255, 0.15);
        }

        body.theme-dark .legal-body .legal-section {
            border-bottom-color: var(--border-subtle);
        }

        /* Responsive */
        @media (max-width: 900px) {
            .about-grid-2 {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-grid-2.reverse {
                direction: ltr;
            }

            .about-hero {
                padding: 120px 40px 60px;
            }

            .about-hero h1 {
                margin-bottom: 16px;
            }

            .about-section {
                padding: 80px 40px;
            }

            .about-cta {
                margin: 0 24px;
                padding: 60px 32px;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .section.reverse .container {
                direction: ltr;
            }

            .hero-buttons {
                flex-direction: column;
                padding: 0 20px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            .legal-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .toc {
                display: none;
            }

            .rights-grid {
                grid-template-columns: 1fr;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .articles-grid {
                grid-template-columns: 1fr;
            }

            .logo-grid {
                grid-template-columns: 1fr;
            }

            .color-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .type-card {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .rules-grid {
                grid-template-columns: 1fr;
            }

            .brand-body {
                padding: 60px 24px 80px;
            }

            .page-body {
                padding: 60px 24px 80px;
            }

            .page-intro {
                padding: 0 24px;
            }

            .support-channels {
                grid-template-columns: 1fr;
            }

            .support-contact-banner {
                flex-direction: column;
                align-items: flex-start;
                padding: 28px 24px;
            }

            .support-hero,
            .about-hero-pro {
                padding-top: 130px;
            }

            .security-block-inner,
            .security-block-inner.reverse {
                grid-template-columns: 1fr;
                direction: ltr;
                gap: 32px;
            }

            .security-main {
                padding: 40px 24px 80px;
            }

            .download-platform-grid {
                grid-template-columns: 1fr 1fr;
            }

            .download-req-grid {
                grid-template-columns: 1fr;
            }

            .download-primary-card {
                flex-direction: column;
                align-items: flex-start;
                padding: 28px 24px;
            }

            .download-main {
                padding: 48px 24px 80px;
            }

            .download-platform-summary-left {
                flex-wrap: wrap;
                gap: 10px;
            }

            .download-platform-count {
                border-left: none;
                padding-left: 0;
                width: 100%;
                margin-left: 60px;
            }

            .feature-list {
                text-align: left;
            }
        }

        @media (max-width: 520px) {
            .download-platform-grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- index.html (home-page) — Mobile --- */
        @media (max-width: 900px) {
            body.home-page header {
                padding: 14px 20px;
            }

            body.home-page .logo {
                font-size: 1.65rem;
                gap: 10px;
            }

            body.home-page .logo img {
                width: 40px;
                height: 40px;
            }

            body.home-page .header-actions {
                gap: 8px;
            }

            body.home-page .lang-switch {
                padding: 3px 8px;
            }

            body.home-page .lang-switch-btn {
                font-size: 0.75rem;
                padding: 3px 5px;
            }

            body.home-page .login-btn {
                padding: 8px 14px;
                font-size: 0.875rem;
            }

            body.home-page .about-hero-pro {
                padding: 108px 20px 52px;
            }

            body.home-page .about-hero-pro .about-hero-content {
                max-width: 100%;
                padding: 0 4px;
            }

            body.home-page .page-badge {
                font-size: 0.65rem;
                letter-spacing: 0.06em;
                padding: 6px 14px;
                margin-bottom: 18px;
                line-height: 1.4;
                max-width: 100%;
            }

            body.home-page .about-hero-pro h1 {
                font-size: clamp(1.85rem, 8vw, 2.75rem);
                margin-bottom: 16px;
            }

            body.home-page .about-hero-pro p {
                font-size: 1rem;
                line-height: 1.65;
            }

            body.home-page .hero-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                width: 100%;
                max-width: 360px;
                margin: 28px auto 0;
                padding: 0;
            }

            body.home-page .hero-buttons .btn-primary,
            body.home-page .hero-buttons .btn-secondary {
                width: 100%;
                padding: 14px 20px;
            }

            body.home-page .about-section {
                padding: 56px 20px;
            }

            body.home-page .about-section-header {
                margin-bottom: 40px;
                text-align: left;
            }

            body.home-page .about-section-header h2 {
                font-size: clamp(1.65rem, 6vw, 2.25rem);
                margin-bottom: 14px;
            }

            body.home-page .about-section-header p {
                font-size: 1rem;
                max-width: none;
                margin-left: 0;
                margin-right: 0;
                text-align: left;
            }

            body.home-page .values-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            body.home-page .value-card {
                padding: 24px 20px;
                text-align: left;
            }

            body.home-page .value-card h4 {
                font-size: 1.15rem;
            }

            body.home-page .value-card p {
                font-size: 0.925rem;
            }

            body.home-page #technologie.about-section {
                padding-top: 48px;
                padding-bottom: 48px;
            }

            body.home-page .tech-compact-grid {
                grid-template-columns: 1fr;
                max-width: none;
            }

            body.home-page .tech-compact-header {
                text-align: left;
                margin-bottom: 20px;
            }

            body.home-page .tech-compact-header p {
                margin-left: 0;
                margin-right: 0;
            }

            body.home-page .tech-compact-note {
                text-align: left;
                max-width: none;
            }

            body.home-page .about-grid-2 {
                gap: 28px;
            }

            body.home-page .about-content h3 {
                font-size: 1.35rem;
                margin-bottom: 16px;
            }

            body.home-page .about-content ul {
                margin-top: 8px;
            }

            body.home-page .about-content li {
                font-size: 0.95rem;
                padding: 14px 0 14px 32px;
            }

            body.home-page .about-visual {
                aspect-ratio: auto;
                min-height: 100px;
                padding: 24px;
            }

            body.home-page .about-cta-wrap {
                padding: 56px 20px 72px;
            }

            body.home-page .about-cta {
                margin: 0;
                padding: 40px 24px;
            }

            body.home-page .about-cta h2 {
                font-size: clamp(1.45rem, 5vw, 2rem);
                margin-bottom: 16px;
            }

            body.home-page .about-cta p {
                font-size: 1rem;
                margin-bottom: 28px;
            }

            body.home-page footer {
                padding: 48px 20px 0;
            }

            body.home-page .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 28px 20px;
                padding-bottom: 40px;
            }

            body.home-page .footer-brand {
                grid-column: 1 / -1;
            }

            body.home-page .footer-brand p {
                font-size: 0.95rem;
            }

            body.home-page .footer-bottom {
                padding: 24px 0 28px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 520px) {
            body.home-page header {
                padding: 12px 16px;
            }

            body.home-page .logo {
                font-size: 1.4rem;
            }

            body.home-page .logo img {
                width: 36px;
                height: 36px;
            }

            body.home-page .login-btn {
                padding: 8px 10px;
                font-size: 0.8125rem;
            }

            body.home-page .lang-switch-sep {
                display: none;
            }

            body.home-page .lang-switch {
                gap: 2px;
            }

            body.home-page .about-hero-pro {
                padding: 96px 16px 44px;
            }

            body.home-page .about-hero-pro h1 {
                font-size: 1.75rem;
            }

            body.home-page .page-badge {
                font-size: 0.6rem;
                padding: 5px 12px;
            }

            body.home-page .about-section {
                padding: 44px 16px;
            }

            body.home-page .about-section-header {
                margin-bottom: 32px;
            }

            body.home-page .value-card {
                padding: 20px 16px;
            }

            body.home-page .value-card:hover {
                transform: none;
            }

            body.home-page .about-cta-wrap {
                padding: 44px 16px 56px;
            }

            body.home-page .about-cta {
                padding: 32px 18px;
                border-radius: 12px;
            }

            body.home-page .about-cta .btn-primary {
                width: 100%;
            }

            body.home-page .footer-content {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            body.home-page .footer-bottom p {
                line-height: 1.5;
            }
        }

        @media (max-width: 380px) {
            body.home-page .login-btn {
                padding: 8px 10px;
                font-size: 0.75rem;
            }

            body.home-page .logo .logo-text {
                font-size: 1.25rem;
            }
        }