        /* ============================================
           HERO - Professional with Mockup
           ============================================ */
        .page-hero {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 60px;
            align-items: center;
            padding: 80px 56px;
            background: linear-gradient(135deg, #0a0f14 0%, #1a2530 50%, #0a0f14 100%);
            position: relative;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0,177,235,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0,177,235,0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0,177,235,0.035) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0) 85%);
            -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0) 85%);
            pointer-events: none;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #00B1EB;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
            padding: 6px 14px 6px 10px;
            background: rgba(0,177,235,0.08);
            border: 1px solid rgba(0,177,235,0.2);
            border-radius: 20px;
        }
        .hero-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #00B1EB;
            box-shadow: 0 0 10px #00B1EB;
            position: relative;
            flex-shrink: 0;
        }
        .hero-badge-dot::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: #00B1EB;
            opacity: 0.35;
            animation: hero-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
        }
        @keyframes hero-ping {
            0% { transform: scale(1); opacity: 0.35; }
            75%, 100% { transform: scale(2.2); opacity: 0; }
        }
        .hero-badge-count {
            color: #fff;
            background: rgba(255,255,255,0.08);
            padding: 1px 8px;
            border-radius: 10px;
            letter-spacing: 0.5px;
            font-size: 10px;
        }

        /* Rotating keyword */
        .hero-rotator {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 18px;
            margin-bottom: 6px;
            padding: 8px 14px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            font-size: 13px;
            color: rgba(255,255,255,0.55);
        }
        .hero-rotator-label {
            font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
            font-size: 11px;
            color: rgba(0,177,235,0.85);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .hero-rotator-word {
            display: inline-block;
            color: #fff;
            font-weight: 600;
            min-width: 130px;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }
        .hero-rotator-word.swap {
            opacity: 0;
            transform: translateY(-6px);
        }

        /* Category chips */
        .hero-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 28px;
        }
        .hero-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.75);
            font-size: 12px;
            font-weight: 500;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }
        .hero-chip:hover {
            background: rgba(0,177,235,0.15);
            border-color: rgba(0,177,235,0.5);
            color: #fff;
            transform: translateY(-1px);
        }
        .hero-chip-count {
            font-size: 10px;
            color: rgba(255,255,255,0.45);
            background: rgba(0,0,0,0.25);
            padding: 1px 7px;
            border-radius: 8px;
        }
        .hero-chip:hover .hero-chip-count {
            color: #00B1EB;
            background: rgba(0,177,235,0.1);
        }

        .page-hero h1 {
            font-size: 32px;
            font-weight: 700;
            letter-spacing: -1.5px;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #fff;
        }

        .hero-content > p {
            font-size: 18px;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* Hero Mockup — Interactive Card Stack */
        .hero-mockup {
            position: relative;
            z-index: 2;
        }
        .mockup-browser {
            background: rgba(10,15,20,0.75);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px 12px 0 0;
            padding: 10px 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
            font-size: 11px;
            color: rgba(255,255,255,0.5);
            border-bottom: none;
            backdrop-filter: blur(6px);
        }
        .mockup-browser-dots {
            display: flex;
            gap: 5px;
        }
        .mockup-browser-dots span {
            width: 9px;
            height: 9px;
            border-radius: 50%;
        }
        .mockup-browser-dots span:nth-child(1) { background: rgba(239,68,68,0.6); }
        .mockup-browser-dots span:nth-child(2) { background: rgba(234,179,8,0.6); }
        .mockup-browser-dots span:nth-child(3) { background: rgba(16,185,129,0.6); }
        .mockup-browser-url {
            flex: 1;
            text-align: center;
            padding: 3px 10px;
            background: rgba(255,255,255,0.04);
            border-radius: 6px;
            color: rgba(0,177,235,0.7);
            letter-spacing: 0.3px;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .mockup-stack {
            position: relative;
            height: 340px;
            padding-top: 8px;
        }
        .mockup-card {
            position: absolute;
            background: rgba(10,15,20,0.92);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            padding: 22px;
            width: 300px;
            backdrop-filter: blur(6px);
            cursor: pointer;
            transition: transform 0.45s cubic-bezier(0.22,0.9,0.3,1.2),
                        opacity 0.35s ease,
                        box-shadow 0.3s ease,
                        border-color 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
            will-change: transform, opacity;
        }
        .mockup-card[data-pos="0"] {
            transform: translate(50px, 0) rotate(0deg);
            z-index: 3;
            opacity: 1;
            border-color: rgba(0,177,235,0.35);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,177,235,0.15);
        }
        .mockup-card[data-pos="1"] {
            transform: translate(20px, 90px) rotate(-1.5deg);
            z-index: 2;
            opacity: 0.75;
        }
        .mockup-card[data-pos="2"] {
            transform: translate(0, 180px) rotate(-3deg);
            z-index: 1;
            opacity: 0.45;
        }
        .mockup-card[data-pos="0"]:hover {
            transform: translate(50px, -6px) rotate(0deg);
            box-shadow: 0 28px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,177,235,0.35);
        }
        .mockup-card[data-pos="1"]:hover, .mockup-card[data-pos="2"]:hover {
            opacity: 0.95;
        }
        .mockup-card-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 12px;
        }
        .mockup-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: #00B1EB;
            background: rgba(0,177,235,0.15);
            padding: 5px 10px;
            border-radius: 12px;
        }
        .mockup-tag::before {
            content: '';
            width: 5px;
            height: 5px;
            background: #00B1EB;
            border-radius: 50%;
            box-shadow: 0 0 6px #00B1EB;
        }
        .mockup-card[data-pos="0"] .mockup-new {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 9px;
            font-weight: 700;
            color: #10b981;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .mockup-new {
            display: none;
        }
        .mockup-new-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #10b981;
            box-shadow: 0 0 6px #10b981;
            animation: hero-ping 1.8s ease-in-out infinite;
        }
        .mockup-title {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            line-height: 1.35;
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            letter-spacing: -0.2px;
        }
        .mockup-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 11px;
            color: rgba(255,255,255,0.4);
        }
        .mockup-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .mockup-meta svg {
            width: 12px;
            height: 12px;
            opacity: 0.6;
        }
        .mockup-stack-hint {
            position: absolute;
            left: 0;
            right: 0;
            bottom: -10px;
            text-align: center;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            color: rgba(255,255,255,0.3);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            pointer-events: none;
        }
        .mockup-stack-hint kbd {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 9px;
            color: rgba(0,177,235,0.8);
            margin: 0 3px;
        }

        /* Hero Ticker */
        .hero-ticker {
            grid-column: 1 / -1;
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 48px;
            padding: 14px 20px;
            background: rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            z-index: 2;
        }
        .hero-ticker-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            font-weight: 700;
            color: #00B1EB;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            flex-shrink: 0;
            padding-right: 20px;
            border-right: 1px solid rgba(255,255,255,0.08);
        }
        .hero-ticker-label::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #00B1EB;
            border-radius: 50%;
            box-shadow: 0 0 6px #00B1EB;
            animation: hero-ping 1.6s ease-in-out infinite;
        }
        .hero-ticker-track-wrap {
            flex: 1;
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
            -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
        }
        .hero-ticker-track {
            display: flex;
            gap: 40px;
            white-space: nowrap;
            animation: ticker-scroll 55s linear infinite;
        }
        .hero-ticker:hover .hero-ticker-track {
            animation-play-state: paused;
        }
        @keyframes ticker-scroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }
        .hero-ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            flex-shrink: 0;
            transition: color 0.2s;
        }
        .hero-ticker-item:hover {
            color: #00B1EB;
        }
        .hero-ticker-item-cat {
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            color: rgba(0,177,235,0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero-ticker-item-sep {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
        }

        /* Stats Bar */
        .hero-stats {
            background: #fff;
        }
        .hero-stats-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-bottom: 1px solid #e8eaed;
        }
        .hero-stat {
            padding: 32px 24px;
            text-align: center;
            border-right: 1px solid #e8eaed;
        }
        .hero-stat:last-child {
            border-right: none;
        }
        .hero-stat-value {
            font-size: 32px;
            font-weight: 700;
            color: #0a0f14;
            margin-bottom: 4px;
        }
        .hero-stat-value span {
            color: #00B1EB;
        }
        .hero-stat-label {
            font-size: 12px;
            color: #5f6368;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ============================================
           FEATURED - Elegant Card
           ============================================ */
        .featured-section {
            padding: 80px 56px;
            background: #fff;
        }
        .featured-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .featured-label {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(0,177,235,0.7);
            margin-bottom: 24px;
        }
        .featured-card {
            display: grid;
            grid-template-columns: 1fr 420px;
            background: #fafbfc;
            text-decoration: none;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }
        .featured-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #00B1EB, transparent 80%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s;
        }
        .featured-card:hover::before {
            transform: scaleX(1);
        }
        .featured-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 32px 64px -16px rgba(0,0,0,0.1);
        }
        .featured-content {
            padding: 48px 56px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .featured-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }
        .featured-tag {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #00B1EB;
            background: rgba(0,177,235,0.08);
            padding: 6px 14px;
        }
        .featured-date {
            font-size: 13px;
            color: #9ca3af;
        }
        .featured-content h2 {
            font-size: 28px;
            font-weight: 700;
            color: #0a0f14;
            line-height: 1.3;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .featured-content p {
            font-size: 15px;
            color: #6b7280;
            line-height: 1.75;
            margin-bottom: 28px;
        }
        .featured-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 600;
            color: #0a0f14;
        }
        .featured-link svg {
            width: 18px;
            height: 18px;
            color: #00B1EB;
            transition: transform 0.25s;
        }
        .featured-card:hover .featured-link {
            color: #00B1EB;
        }
        .featured-card:hover .featured-link svg {
            transform: translateX(4px);
        }
        .featured-visual {
            background: linear-gradient(135deg, #0a0f14 0%, #141c24 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            min-height: 380px;
        }
        .featured-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 30%, rgba(0,177,235,0.15) 0%, transparent 55%);
        }

        /* Fallback-Icon wenn kein Custom-Visual registriert ist */
        .featured-icon-wrap {
            position: relative; z-index: 1;
            width: 100px; height: 100px;
            display: flex; align-items: center; justify-content: center;
        }
        .featured-icon-wrap::before {
            content: ''; position: absolute; inset: 0;
            background: rgba(0,177,235,0.1); border-radius: 50%;
        }
        .featured-icon-wrap svg {
            width: 48px; height: 48px; color: #00B1EB;
            position: relative; z-index: 1;
        }

        /* Orbit-Visual 1:1 wie im Artikel-Hero */
        .fv-orbit-wrap {
            position: relative;
            width: 340px;
            height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.9;
        }
        .fv-orbit {
            position: absolute;
            border: 2px dashed rgba(0,177,235,0.25);
            border-radius: 50%;
            animation: fv-rot 22s linear infinite;
        }
        .fv-orbit:nth-child(1) { width: 310px; height: 310px; }
        .fv-orbit:nth-child(2) { width: 220px; height: 220px; animation-direction: reverse; animation-duration: 16s; border-color: rgba(16,185,129,0.22); }
        .fv-orbit:nth-child(3) { width: 130px; height: 130px; animation-duration: 11s; }
        @keyframes fv-rot { from { transform: rotate(0); } to { transform: rotate(360deg); } }
        .fv-center {
            position: relative; z-index: 2;
            width: 100px; height: 100px;
            background: rgba(0,177,235,0.18);
            border: 1px solid rgba(0,177,235,0.4);
            border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            padding: 18px;
            box-shadow: 0 8px 32px rgba(0,177,235,0.25);
        }
        .fv-center img { width: 100%; height: auto; display: block; }
        .fv-node {
            position: absolute;
            background: rgba(10,15,20,0.85);
            border: 1px solid rgba(0,177,235,0.3);
            padding: 7px 11px;
            font-size: 11px;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.3px;
            white-space: nowrap;
            box-shadow: 0 8px 20px rgba(0,0,0,0.35);
        }
        .fv-node.accent { border-color: rgba(16,185,129,0.4); color: #10b981; }
        .fv-node:nth-child(5)  { top: 4px; left: 50%; transform: translateX(-50%); }
        .fv-node:nth-child(6)  { top: 20%; right: -4px; }
        .fv-node:nth-child(7)  { top: 50%; right: -14px; transform: translateY(-50%); }
        .fv-node:nth-child(8)  { bottom: 20%; right: -4px; }
        .fv-node:nth-child(9)  { bottom: 4px; left: 50%; transform: translateX(-50%); }
        .fv-node:nth-child(10) { bottom: 20%; left: -4px; }
        .fv-node:nth-child(11) { top: 20%; left: -4px; }

        /* Panel-Visuals (Pentest, M365-Backup) */
        .fv-panel {
            position: relative; z-index: 1;
            width: 320px;
            background: linear-gradient(180deg, #101a22 0%, #0a1218 100%);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 18px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,177,235,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
            font-family: 'Inter', sans-serif;
        }
        .fv-p-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
        .fv-p-head-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
        .fv-p-logo { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, rgba(0,177,235,0.25), rgba(0,177,235,0.08)); border: 1px solid rgba(0,177,235,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .fv-p-logo svg { width: 16px; height: 16px; color: #00B1EB; }
        .fv-p-logo-red { background: linear-gradient(135deg, rgba(239,68,68,0.25), rgba(239,68,68,0.08)); border-color: rgba(239,68,68,0.35); }
        .fv-p-logo-red svg { color: #ef4444; }
        .fv-p-title { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: -0.2px; }
        .fv-p-sub { font-family: 'JetBrains Mono', Consolas, monospace; font-size: 9px; color: rgba(0,177,235,0.75); margin-top: 2px; }
        .fv-panel-pentest .fv-p-sub { color: rgba(239,68,68,0.75); }
        .fv-p-live { display: inline-flex; align-items: center; gap: 5px; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border-radius: 10px; background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); color: #ef4444; flex-shrink: 0; }
        .fv-panel-m365 .fv-p-live { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.3); color: #10b981; }
        .fv-p-live-dot { width: 5px; height: 5px; border-radius: 50%; background: #ef4444; box-shadow: 0 0 6px #ef4444; animation: fv-p-pulse 1.4s ease-in-out infinite; }
        .fv-p-live-dot.green { background: #10b981; box-shadow: 0 0 6px #10b981; }
        @keyframes fv-p-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
        .fv-p-lbl { font-size: 8px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin: 12px 0 8px; display: flex; align-items: center; gap: 6px; }
        .fv-p-lbl::before { content: ''; width: 10px; height: 1px; background: rgba(0,177,235,0.5); }

        /* Pentest Phases */
        .fv-p-phases { display: flex; flex-direction: column; gap: 4px; }
        .fv-p-phase { display: grid; grid-template-columns: 14px 1fr auto; align-items: center; gap: 8px; padding: 6px 9px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: 6px; font-family: 'JetBrains Mono', Consolas, monospace; font-size: 10px; color: #fff; }
        .fv-p-ico { width: 12px; height: 12px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
        .fv-p-ico.done { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.5); }
        .fv-p-ico.done::after { content: '✓'; color: #10b981; font-size: 8px; font-weight: 700; }
        .fv-p-ico.run { background: rgba(0,177,235,0.15); border: 1px solid rgba(0,177,235,0.5); }
        .fv-p-ico.run::after { content: ''; width: 4px; height: 4px; border-radius: 50%; background: #00B1EB; box-shadow: 0 0 6px #00B1EB; animation: fv-p-pulse 1.2s ease-in-out infinite; }
        .fv-p-time { font-size: 9px; color: rgba(255,255,255,0.4); }
        .fv-p-phase.run .fv-p-time { color: #00B1EB; }

        /* Severity badges */
        .fv-p-sev { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
        .fv-p-s { padding: 8px 6px 6px; border-radius: 6px; text-align: center; border: 1px solid; font-size: 8px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 700; }
        .fv-p-s b { display: block; font-size: 16px; font-weight: 800; line-height: 1; margin-bottom: 3px; letter-spacing: -0.3px; }
        .fv-p-s.crit { background: rgba(239,68,68,0.08); border-color: rgba(239,68,68,0.3); }
        .fv-p-s.crit b { color: #ef4444; }
        .fv-p-s.high { background: rgba(249,115,22,0.08); border-color: rgba(249,115,22,0.3); }
        .fv-p-s.high b { color: #f97316; }
        .fv-p-s.med { background: rgba(234,179,8,0.08); border-color: rgba(234,179,8,0.3); }
        .fv-p-s.med b { color: #eab308; }
        .fv-p-s.low { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.3); }
        .fv-p-s.low b { color: #3b82f6; }

        /* M365 metrics + services */
        .fv-p-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 4px; }
        .fv-p-metric { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 6px; padding: 10px 12px; }
        .fv-p-ml { font-size: 8px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700; margin-bottom: 5px; }
        .fv-p-mv { font-size: 18px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -0.4px; }
        .fv-p-mv span { color: #00B1EB; font-size: 11px; font-weight: 600; margin-left: 2px; }
        .fv-p-svcs { display: flex; flex-direction: column; gap: 5px; }
        .fv-p-svc { display: flex; align-items: center; gap: 8px; padding: 7px 10px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 6px; font-size: 11px; color: #fff; font-weight: 600; }
        .fv-p-svc svg { width: 12px; height: 12px; color: #00B1EB; flex-shrink: 0; }
        .fv-p-svc span:nth-of-type(1) { flex: 1; }
        .fv-p-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; box-shadow: 0 0 6px rgba(16,185,129,0.6); flex-shrink: 0; }

        /* ============================================
           SEARCH & FILTER SECTION
           ============================================ */
        .search-filter-section {
            padding: 48px 56px;
            background: #fff;
            border-bottom: 1px solid #e8eaed;
        }
        .search-filter-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .search-box {
            position: relative;
            margin-bottom: 32px;
        }
        .search-input-wrap {
            position: relative;
            display: flex;
            align-items: center;
        }
        .search-input {
            width: 100%;
            box-sizing: border-box;
            height: 56px;
            padding: 0 56px 0 52px;
            font-family: inherit;
            font-size: 15px;
            background: #fafbfc;
            border: 1px solid #e8eaed;
            border-radius: 10px;
            color: #0a0f14;
            transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
            appearance: none;
            -webkit-appearance: none;
        }
        .search-input::placeholder {
            color: #9ca3af;
        }
        .search-input:hover {
            border-color: #cbd5e1;
        }
        .search-input:focus {
            outline: none;
            border-color: #00B1EB;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(0,177,235,0.12);
        }
        .search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            color: #9ca3af;
            pointer-events: none;
            transition: color 0.2s;
        }
        .search-input:focus ~ .search-icon {
            color: #00B1EB;
        }
        .search-clear {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            display: none;
            align-items: center;
            justify-content: center;
            background: #e8eaed;
            color: #5f6368;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            padding: 0;
            transition: background 0.2s, color 0.2s;
        }
        .search-clear:hover {
            background: #00B1EB;
            color: #fff;
        }
        .search-clear svg {
            width: 14px;
            height: 14px;
        }
        .search-clear.visible {
            display: inline-flex;
        }
        .search-results-info {
            display: none;
            align-items: center;
            gap: 8px;
            margin-top: 14px;
            padding: 10px 14px;
            background: rgba(0,177,235,0.06);
            border: 1px solid rgba(0,177,235,0.15);
            border-radius: 8px;
            font-size: 13px;
            color: #5f6368;
        }
        .search-results-info.visible {
            display: inline-flex;
        }
        .search-results-info svg { color: #00B1EB; flex-shrink: 0; }
        .search-results-info strong {
            color: #00B1EB;
            font-weight: 700;
        }

        /* Tag Cloud */
        .tag-cloud-section {
            margin-bottom: 0;
        }
        .tag-cloud-label {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #5f6368;
            margin-bottom: 16px;
        }
        .tag-cloud-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: #00B1EB;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            font-family: inherit;
            font-size: 13px;
            font-weight: 500;
            color: #5f6368;
            background: #f8f9fa;
            border: 1px solid #e8eaed;
            cursor: pointer;
            transition: all 0.2s;
        }
        .tag-item:hover {
            border-color: #00B1EB;
            color: #00B1EB;
            background: rgba(0,177,235,0.05);
        }
        .tag-item.active {
            background: #00B1EB;
            border-color: #00B1EB;
            color: #fff;
        }
        .tag-item .tag-count {
            font-size: 11px;
            padding: 2px 6px;
            background: rgba(0,0,0,0.08);
            border-radius: 10px;
            min-width: 20px;
            text-align: center;
        }
        .tag-item.active .tag-count {
            background: rgba(255,255,255,0.25);
        }

        /* ============================================
           ARTICLES - Clean Grid
           ============================================ */
        .articles-section {
            padding: 48px 56px 80px;
            background: #fafbfc;
        }
        .articles-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .articles-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
            flex-wrap: wrap;
            gap: 16px;
        }
        .articles-title {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #0a0f14;
        }
        .articles-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .rss-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            font-size: 13px;
            font-weight: 600;
            color: #5f6368;
            background: #fff;
            border: 1px solid #e8eaed;
            text-decoration: none;
            transition: all .2s ease;
        }
        .rss-link svg {
            width: 14px;
            height: 14px;
            color: #f26522;
        }
        .rss-link:hover {
            color: #0a0f14;
            border-color: #f26522;
            background: rgba(242,101,34,0.04);
        }
        .articles-sort {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .articles-sort label {
            font-size: 13px;
            color: #6b7280;
        }
        .articles-sort select {
            padding: 8px 32px 8px 12px;
            font-family: inherit;
            font-size: 13px;
            background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat right 8px center;
            background-size: 16px;
            border: 1px solid #e8eaed;
            cursor: pointer;
            appearance: none;
        }
        .articles-sort select:focus {
            outline: none;
            border-color: #00B1EB;
        }

        /* No Results */
        .no-results {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 80px 24px;
            text-align: center;
        }
        .no-results.visible {
            display: flex;
        }
        .no-results-icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,177,235,0.1);
            border-radius: 50%;
            margin-bottom: 24px;
        }
        .no-results-icon svg {
            width: 32px;
            height: 32px;
            color: #00B1EB;
        }
        .no-results h3 {
            font-size: 18px;
            font-weight: 600;
            color: #0a0f14;
            margin-bottom: 8px;
        }
        .no-results p {
            font-size: 14px;
            color: #6b7280;
            margin-bottom: 24px;
        }
        .no-results-btn {
            padding: 12px 24px;
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            color: #00B1EB;
            background: rgba(0,177,235,0.1);
            border: none;
            cursor: pointer;
            transition: all 0.2s;
        }
        .no-results-btn:hover {
            background: #00B1EB;
            color: #fff;
        }
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .article-card {
            background: #fff;
            border: 1px solid rgba(0,0,0,0.04);
            text-decoration: none;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .article-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #00B1EB;
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        .article-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 48px -12px rgba(0,0,0,0.1);
        }
        .article-card:hover::after {
            transform: scaleX(1);
        }
        .article-image {
            height: 160px;
            background: linear-gradient(135deg, #0a0f14 0%, #1a2530 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .article-image.has-custom { padding: 14px; }

        /* Grid-Card Mini-Visual: Branchen Orbit */
        .ac-orbit {
            position: relative;
            width: 140px; height: 140px;
            display: flex; align-items: center; justify-content: center;
            z-index: 1;
        }
        .ac-orbit-ring {
            position: absolute; border: 1.5px dashed rgba(0,177,235,0.3);
            border-radius: 50%; animation: ac-rot 22s linear infinite;
        }
        .ac-orbit-ring.ring1 { width: 130px; height: 130px; }
        .ac-orbit-ring.ring2 { width: 92px; height: 92px; animation-direction: reverse; animation-duration: 16s; border-color: rgba(16,185,129,0.28); }
        .ac-orbit-ring.ring3 { width: 56px; height: 56px; animation-duration: 11s; }
        @keyframes ac-rot { from{transform:rotate(0)} to{transform:rotate(360deg)} }
        .ac-orbit-center {
            position: relative; z-index: 2;
            width: 46px; height: 46px;
            background: rgba(0,177,235,0.2);
            border: 1px solid rgba(0,177,235,0.45);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            padding: 8px;
            box-shadow: 0 4px 16px rgba(0,177,235,0.3);
        }
        .ac-orbit-center img { width: 100%; height: auto; display: block; }
        .ac-orbit-chip {
            position: absolute;
            background: rgba(10,15,20,0.88);
            border: 1px solid rgba(0,177,235,0.3);
            padding: 2px 6px;
            font-size: 8px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.2px;
            white-space: nowrap;
            z-index: 3;
            border-radius: 3px;
        }
        .ac-orbit-chip.accent { border-color: rgba(16,185,129,0.45); color: #10b981; }

        /* Grid-Card Mini-Visual: Pentest */
        .ac-pentest {
            position: relative; z-index: 1;
            width: 100%; max-width: 260px;
            background: linear-gradient(180deg, #111a22 0%, #0a1218 100%);
            border: 1px solid rgba(239,68,68,0.15);
            border-radius: 8px;
            padding: 10px 12px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.4);
            font-family: 'Inter', sans-serif;
        }
        .ac-p-top { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; font-size: 9px; }
        .ac-p-dot { width: 6px; height: 6px; border-radius: 50%; background: #ef4444; box-shadow: 0 0 6px #ef4444; animation: ac-pulse 1.4s ease-in-out infinite; flex-shrink: 0; }
        @keyframes ac-pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
        .ac-p-label { font-weight: 700; color: #ef4444; text-transform: uppercase; letter-spacing: 1px; }
        .ac-p-target { font-family: 'JetBrains Mono', Consolas, monospace; color: rgba(255,255,255,0.5); margin-left: auto; font-size: 8.5px; }
        .ac-p-sev { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-bottom: 7px; }
        .ac-p-s { padding: 4px 0 3px; text-align: center; border: 1px solid; border-radius: 4px; }
        .ac-p-s b { display: block; font-size: 13px; font-weight: 800; line-height: 1; letter-spacing: -0.3px; }
        .ac-p-s i { font-style: normal; font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; color: rgba(255,255,255,0.4); display: block; margin-top: 2px; }
        .ac-p-s.crit { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.3); }
        .ac-p-s.crit b { color: #ef4444; }
        .ac-p-s.high { background: rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.3); }
        .ac-p-s.high b { color: #f97316; }
        .ac-p-s.med { background: rgba(234,179,8,0.1); border-color: rgba(234,179,8,0.3); }
        .ac-p-s.med b { color: #eab308; }
        .ac-p-s.low { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.3); }
        .ac-p-s.low b { color: #3b82f6; }
        .ac-p-cve {
            font-family: 'JetBrains Mono', Consolas, monospace;
            font-size: 9px; color: rgba(0,177,235,0.75);
            padding: 5px 8px;
            background: rgba(0,177,235,0.06);
            border-left: 2px solid #00B1EB;
            border-radius: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Grid-Card Mini-Visual: M365 Backup */
        .ac-m365 {
            position: relative; z-index: 1;
            width: 100%; max-width: 260px;
            background: linear-gradient(180deg, #111a22 0%, #0a1218 100%);
            border: 1px solid rgba(0,177,235,0.18);
            border-radius: 8px;
            padding: 10px 12px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.4);
            font-family: 'Inter', sans-serif;
        }
        .ac-m-top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
        .ac-m-logo { width: 22px; height: 22px; border-radius: 5px; background: linear-gradient(135deg, rgba(0,177,235,0.25), rgba(0,177,235,0.08)); border: 1px solid rgba(0,177,235,0.3); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .ac-m-logo svg { width: 12px; height: 12px; color: #00B1EB; }
        .ac-m-title { font-size: 11px; font-weight: 700; color: #fff; flex: 1; }
        .ac-m-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; padding: 2px 7px; border-radius: 8px; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); color: #10b981; }
        .ac-m-dot { width: 4px; height: 4px; border-radius: 50%; background: #10b981; box-shadow: 0 0 4px #10b981; animation: ac-pulse 1.8s ease-in-out infinite; }
        .ac-m-svcs { display: flex; flex-direction: column; gap: 3px; }
        .ac-m-svc { display: flex; align-items: center; padding: 4px 8px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 4px; font-size: 10px; color: #fff; font-weight: 500; }
        .ac-m-svc span:first-child { flex: 1; }
        .ac-m-ok { width: 5px; height: 5px; border-radius: 50%; background: #10b981; box-shadow: 0 0 4px rgba(16,185,129,0.6); }

        /* Grid-Card Mini-Visual: Agentic AI (purple orchestrator) */
        .ac-agent {
            position: relative; z-index: 1;
            width: 100%; max-width: 260px;
            background: linear-gradient(180deg, #141029 0%, #0a0818 100%);
            border: 1px solid rgba(139,92,246,0.2);
            border-radius: 8px;
            padding: 10px 12px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.45);
            font-family: 'Inter', sans-serif;
        }
        .ac-a-top { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; }
        .ac-a-logo { width: 22px; height: 22px; border-radius: 5px; background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(139,92,246,0.1)); border: 1px solid rgba(139,92,246,0.5); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .ac-a-logo svg { width: 12px; height: 12px; color: #a78bfa; }
        .ac-a-title { font-size: 11px; font-weight: 700; color: #fff; flex: 1; letter-spacing: -0.1px; }
        .ac-a-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; padding: 2px 7px; border-radius: 8px; background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.4); color: #a78bfa; }
        .ac-a-dot { width: 4px; height: 4px; border-radius: 50%; background: #a78bfa; box-shadow: 0 0 6px #a78bfa; animation: ac-pulse 1.4s ease-in-out infinite; }
        .ac-a-nodes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-bottom: 7px; }
        .ac-a-node { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding: 5px 4px; background: rgba(139,92,246,0.06); border: 1px solid rgba(139,92,246,0.2); border-radius: 5px; font-size: 8.5px; font-weight: 600; color: rgba(255,255,255,0.75); }
        .ac-a-node-ic { font-size: 12px; line-height: 1; }
        .ac-a-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
        .ac-a-stat { text-align: center; padding: 4px 2px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 4px; }
        .ac-a-stat b { display: block; font-size: 12px; font-weight: 800; color: #a78bfa; line-height: 1; letter-spacing: -0.2px; }
        .ac-a-stat b span { font-size: 8px; color: rgba(167,139,250,0.7); margin-left: 1px; }
        .ac-a-stat i { font-style: normal; font-size: 7px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.4px; font-weight: 700; display: block; margin-top: 2px; }

        /* ==================================================
           GEMEINSAME BASIS für Grid-Card Mini-Panels
           ================================================== */
        .ac-vs, .ac-score, .ac-check, .ac-book, .ac-phases, .ac-alerts, .ac-trust, .ac-easter, .ac-vault, .ac-mail, .ac-ransom {
            position: relative; z-index: 1;
            width: 100%; max-width: 260px;
            background: linear-gradient(180deg, #111a22 0%, #0a1218 100%);
            border: 1px solid rgba(0,177,235,0.15);
            border-radius: 8px;
            padding: 10px 12px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.4);
            font-family: 'Inter', sans-serif;
            color: #fff;
        }

        /* VS Comparison */
        .ac-vs { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 6px; }
        .ac-vs-col { padding: 10px 8px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 6px; text-align: center; }
        .ac-vs-col.green { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.3); }
        .ac-vs-name { font-size: 11px; font-weight: 700; line-height: 1; margin-bottom: 5px; }
        .ac-vs-col.green .ac-vs-name { color: #10b981; }
        .ac-vs-lbl { font-size: 8px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 6px; }
        .ac-vs-metric { font-size: 13px; font-weight: 800; letter-spacing: -0.3px; line-height: 1; }
        .ac-vs-metric span { font-size: 8px; color: rgba(255,255,255,0.4); font-weight: 600; margin-left: 2px; letter-spacing: 0.3px; text-transform: uppercase; }
        .ac-vs-mid { font-family: 'JetBrains Mono', Consolas, monospace; font-size: 9px; font-weight: 800; color: #00B1EB; align-self: center; padding: 0 4px; letter-spacing: 1px; }

        /* Awareness Score */
        .ac-sc-top { display: flex; justify-content: space-between; align-items: baseline; font-size: 10px; color: rgba(255,255,255,0.6); margin-bottom: 6px; font-weight: 600; }
        .ac-sc-val { font-size: 18px; font-weight: 800; color: #00B1EB; letter-spacing: -0.3px; }
        .ac-sc-val i { font-size: 10px; color: rgba(255,255,255,0.35); font-weight: 600; font-style: normal; margin-left: 2px; }
        .ac-sc-bar { height: 5px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
        .ac-sc-fill { height: 100%; background: linear-gradient(90deg, #00B1EB, #10b981); border-radius: 3px; }
        .ac-sc-rows { display: flex; flex-direction: column; gap: 3px; }
        .ac-sc-row { display: flex; justify-content: space-between; align-items: center; padding: 4px 8px; background: rgba(255,255,255,0.03); border-radius: 4px; font-size: 9.5px; }
        .ac-sc-row span { color: rgba(255,255,255,0.6); }
        .ac-sc-row b { font-weight: 700; font-size: 10px; }
        .ac-sc-row b.red { color: #ef4444; }
        .ac-sc-row b.green { color: #10b981; }

        /* Checklist */
        .ac-ck-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7px; font-size: 10px; }
        .ac-ck-title { font-weight: 700; color: #fff; }
        .ac-ck-badge { font-family: 'JetBrains Mono', monospace; font-size: 9px; background: rgba(0,177,235,0.12); border: 1px solid rgba(0,177,235,0.3); color: #00B1EB; padding: 1px 7px; border-radius: 10px; font-weight: 700; }
        .ac-ck-row { display: flex; align-items: center; gap: 7px; padding: 5px 8px; margin-bottom: 3px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 4px; font-size: 10px; color: rgba(255,255,255,0.8); }
        .ac-ck-row:last-child { margin-bottom: 0; }
        .ac-ck-ic { width: 14px; height: 14px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; flex-shrink: 0; }
        .ac-ck-row.ok .ac-ck-ic { background: rgba(16,185,129,0.18); color: #10b981; border: 1px solid rgba(16,185,129,0.4); }
        .ac-ck-row.fail .ac-ck-ic { background: rgba(239,68,68,0.18); color: #ef4444; border: 1px solid rgba(239,68,68,0.4); }
        .ac-ck-row.warn .ac-ck-ic { background: rgba(234,179,8,0.18); color: #eab308; border: 1px solid rgba(234,179,8,0.4); }
        .ac-ck-row.fail span:last-child { text-decoration: line-through; color: rgba(239,68,68,0.75); }

        /* Book / Topics */
        .ac-bk-top { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 8px; }
        .ac-bk-ic { font-size: 14px; }
        .ac-bk-topics { display: flex; flex-direction: column; gap: 3px; }
        .ac-bk-t { display: flex; justify-content: space-between; align-items: center; padding: 5px 9px; background: rgba(255,255,255,0.03); border-left: 2px solid #00B1EB; border-radius: 3px; font-size: 10px; color: rgba(255,255,255,0.7); }
        .ac-bk-t b { color: #00B1EB; font-weight: 800; font-size: 11px; }

        /* Phases (Incident Response) */
        .ac-ph-top { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; font-size: 10px; font-weight: 700; }
        .ac-ph-dot { width: 6px; height: 6px; border-radius: 50%; background: #ef4444; box-shadow: 0 0 6px #ef4444; animation: ac-pulse 1.4s ease-in-out infinite; }
        .ac-ph-title { color: #fff; flex: 1; }
        .ac-ph-time { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: rgba(255,255,255,0.4); font-weight: 600; }
        .ac-ph-row { display: grid; grid-template-columns: 20px 1fr 14px; align-items: center; gap: 8px; padding: 4px 8px; background: rgba(255,255,255,0.03); border-radius: 4px; margin-bottom: 3px; font-size: 10px; }
        .ac-ph-row:last-child { margin-bottom: 0; }
        .ac-ph-num { font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 700; color: rgba(0,177,235,0.7); }
        .ac-ph-ic { font-size: 10px; text-align: center; }
        .ac-ph-row.done { color: rgba(255,255,255,0.5); }
        .ac-ph-row.done .ac-ph-ic { color: #10b981; }
        .ac-ph-row.run { border: 1px solid rgba(0,177,235,0.35); background: rgba(0,177,235,0.08); color: #fff; }
        .ac-ph-row.run .ac-ph-ic.run { color: #00B1EB; animation: ac-pulse 1.2s ease-in-out infinite; }
        .ac-ph-row.wait { color: rgba(255,255,255,0.35); }

        /* Alerts stream (SIEM) */
        .ac-al-top { display: flex; align-items: center; gap: 7px; margin-bottom: 7px; font-size: 10px; font-weight: 700; color: #fff; }
        .ac-al-dot { width: 6px; height: 6px; border-radius: 50%; background: #00B1EB; box-shadow: 0 0 6px #00B1EB; animation: ac-pulse 1.6s ease-in-out infinite; }
        .ac-al-cnt { font-family: 'JetBrains Mono', monospace; font-size: 9px; margin-left: auto; color: #00B1EB; background: rgba(0,177,235,0.1); padding: 1px 6px; border-radius: 8px; }
        .ac-al-row { display: flex; align-items: center; gap: 7px; padding: 5px 8px; background: rgba(255,255,255,0.03); border-left: 2px solid; border-radius: 3px; margin-bottom: 3px; font-size: 9.5px; color: rgba(255,255,255,0.75); }
        .ac-al-row:last-child { margin-bottom: 0; }
        .ac-al-sev { font-family: 'JetBrains Mono', monospace; font-size: 8px; font-weight: 800; padding: 1px 5px; border-radius: 3px; letter-spacing: 0.5px; flex-shrink: 0; }
        .ac-al-row.crit { border-color: #ef4444; }
        .ac-al-row.crit .ac-al-sev { background: rgba(239,68,68,0.2); color: #ef4444; }
        .ac-al-row.high { border-color: #f97316; }
        .ac-al-row.high .ac-al-sev { background: rgba(249,115,22,0.2); color: #f97316; }
        .ac-al-row.med { border-color: #eab308; }
        .ac-al-row.med .ac-al-sev { background: rgba(234,179,8,0.2); color: #eab308; }

        /* Trust Chain (VPN/ZTNA, Zero-Trust) */
        .ac-tr-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 10px; }
        .ac-tr-title { font-weight: 700; color: #fff; }
        .ac-tr-ok { font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 700; color: #10b981; background: rgba(16,185,129,0.12); padding: 1px 7px; border-radius: 8px; border: 1px solid rgba(16,185,129,0.3); }
        .ac-tr-flow { display: flex; align-items: center; justify-content: space-between; gap: 2px; margin-bottom: 7px; }
        .ac-tr-node { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 5px 3px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; flex: 1; }
        .ac-tr-node.ok { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.35); }
        .ac-tr-ic { font-size: 13px; line-height: 1; }
        .ac-tr-node span:last-child { font-size: 8px; color: rgba(255,255,255,0.7); font-weight: 600; }
        .ac-tr-arr { color: rgba(0,177,235,0.6); font-size: 11px; font-weight: 700; flex-shrink: 0; }
        .ac-tr-foot { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; text-align: center; color: rgba(255,255,255,0.4); letter-spacing: 0.4px; }

        /* Easter */
        .ac-easter { text-align: center; padding: 14px 12px; background: linear-gradient(180deg, rgba(249,168,212,0.08) 0%, rgba(254,202,202,0.04) 100%); border-color: rgba(249,168,212,0.25); }
        .ac-eg-eggs { font-size: 22px; margin-bottom: 6px; letter-spacing: 4px; }
        .ac-eg-title { font-size: 12px; font-weight: 800; color: #fda4af; margin-bottom: 3px; letter-spacing: 0.2px; }
        .ac-eg-sub { font-size: 9px; color: rgba(255,255,255,0.55); }

        /* Password Vault */
        .ac-v-top { display: flex; align-items: center; gap: 7px; margin-bottom: 7px; font-size: 10px; font-weight: 700; color: #fff; }
        .ac-v-ic { font-size: 13px; }
        .ac-v-cnt { font-family: 'JetBrains Mono', monospace; font-size: 9px; margin-left: auto; color: #00B1EB; background: rgba(0,177,235,0.1); padding: 1px 6px; border-radius: 8px; }
        .ac-v-row { display: flex; align-items: center; justify-content: space-between; padding: 4px 8px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 3px; margin-bottom: 3px; font-size: 9.5px; }
        .ac-v-name { font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,0.7); }
        .ac-v-val { font-family: 'JetBrains Mono', monospace; color: #00B1EB; letter-spacing: 1px; }
        .ac-v-foot { display: flex; gap: 4px; justify-content: center; margin-top: 5px; font-family: 'JetBrains Mono', monospace; font-size: 8px; color: rgba(255,255,255,0.35); letter-spacing: 0.4px; }

        /* Mail / Phishing */
        .ac-ml-top { display: flex; align-items: center; gap: 7px; margin-bottom: 6px; font-size: 10px; font-weight: 700; color: #fff; }
        .ac-ml-warn { font-size: 14px; color: #ef4444; }
        .ac-ml-sev { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 8px; font-weight: 800; background: rgba(239,68,68,0.18); color: #ef4444; padding: 1px 6px; border-radius: 3px; }
        .ac-ml-from { font-size: 10px; color: rgba(255,255,255,0.6); margin-bottom: 3px; font-family: 'JetBrains Mono', monospace; }
        .ac-ml-from i { color: rgba(255,255,255,0.35); font-style: normal; margin-right: 4px; }
        .ac-ml-subj { font-size: 10px; color: rgba(255,255,255,0.8); margin-bottom: 6px; padding: 4px 7px; background: rgba(239,68,68,0.08); border-left: 2px solid #ef4444; border-radius: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .ac-ml-checks { display: flex; gap: 4px; font-family: 'JetBrains Mono', monospace; font-size: 8.5px; font-weight: 700; letter-spacing: 0.3px; }
        .ac-ml-checks span { padding: 2px 6px; border-radius: 3px; }
        .ac-ml-checks span.fail { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }
        .ac-ml-checks span.warn { background: rgba(234,179,8,0.15); color: #eab308; border: 1px solid rgba(234,179,8,0.3); }

        /* Ransomware Timeline */
        .ac-rs-top { display: flex; align-items: center; gap: 7px; margin-bottom: 7px; font-size: 10px; font-weight: 700; color: #fff; }
        .ac-rs-ic { font-size: 13px; }
        .ac-rs-row { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 8px; padding: 4px 8px; background: rgba(255,255,255,0.03); border-left: 2px solid; border-radius: 3px; margin-bottom: 3px; font-size: 9.5px; color: rgba(255,255,255,0.7); }
        .ac-rs-row:last-child { margin-bottom: 0; }
        .ac-rs-t { font-family: 'JetBrains Mono', monospace; font-weight: 700; }
        .ac-rs-row.red { border-color: #ef4444; }
        .ac-rs-row.red .ac-rs-t { color: #ef4444; }
        .ac-rs-row.amber { border-color: #eab308; }
        .ac-rs-row.amber .ac-rs-t { color: #eab308; }
        .ac-rs-row.green { border-color: #10b981; }
        .ac-rs-row.green .ac-rs-t { color: #10b981; }

        /* === ARTIKEL 21-40: zusätzliche Basis-Klassen === */
        .ac-321, .ac-pipe, .ac-graph, .ac-term, .ac-srv, .ac-cluster, .ac-ceph, .ac-daas, .ac-mac, .ac-migrate {
            position: relative; z-index: 1;
            width: 100%; max-width: 260px;
            background: linear-gradient(180deg, #111a22 0%, #0a1218 100%);
            border: 1px solid rgba(0,177,235,0.15);
            border-radius: 8px;
            padding: 10px 12px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.4);
            font-family: 'Inter', sans-serif;
            color: #fff;
        }

        /* 3-2-1 Rule */
        .ac-321-top { display: flex; justify-content: space-between; align-items: center; font-size: 10px; font-weight: 700; margin-bottom: 8px; }
        .ac-321-ok { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: #10b981; background: rgba(16,185,129,0.1); padding: 1px 7px; border-radius: 8px; border: 1px solid rgba(16,185,129,0.3); }
        .ac-321-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 6px; }
        .ac-321-c { padding: 10px 4px; text-align: center; background: rgba(0,177,235,0.08); border: 1px solid rgba(0,177,235,0.25); border-radius: 6px; }
        .ac-321-c b { display: block; font-size: 22px; font-weight: 800; color: #00B1EB; line-height: 1; letter-spacing: -0.5px; margin-bottom: 4px; }
        .ac-321-c i { font-style: normal; font-size: 8px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 700; }
        .ac-321-foot { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; text-align: center; color: rgba(255,255,255,0.4); letter-spacing: 0.3px; }

        /* GitLab Pipeline */
        .ac-pp-top { display: flex; align-items: center; gap: 7px; margin-bottom: 7px; font-size: 10px; font-weight: 700; }
        .ac-pp-ic { color: #fc6d26; font-size: 14px; }
        .ac-pp-ok { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 9px; color: #10b981; background: rgba(16,185,129,0.12); padding: 1px 7px; border-radius: 8px; }
        .ac-pp-stages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
        .ac-pp-st { padding: 6px 4px; text-align: center; border-radius: 4px; border: 1px solid; font-size: 9px; }
        .ac-pp-st b { display: block; font-weight: 700; font-size: 10px; margin-bottom: 2px; letter-spacing: -0.1px; }
        .ac-pp-st i { font-style: normal; font-family: 'JetBrains Mono', monospace; font-size: 8px; color: rgba(255,255,255,0.5); }
        .ac-pp-st.done { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.3); color: #10b981; }
        .ac-pp-st.run { background: rgba(0,177,235,0.08); border-color: rgba(0,177,235,0.4); color: #00B1EB; }
        .ac-pp-st.run i { color: #00B1EB; animation: ac-pulse 1.3s ease-in-out infinite; }

        /* Grafana Graph */
        .ac-gr-top { display: flex; align-items: center; gap: 7px; margin-bottom: 6px; font-size: 10px; font-weight: 700; }
        .ac-gr-ic { font-size: 13px; }
        .ac-gr-val { margin-left: auto; font-size: 13px; font-weight: 800; color: #00B1EB; letter-spacing: -0.3px; }
        .ac-gr-val i { font-size: 9px; color: rgba(255,255,255,0.4); font-style: normal; font-weight: 600; margin-left: 1px; }
        .ac-gr-svg { width: 100%; height: 42px; display: block; margin-bottom: 6px; }
        .ac-gr-rows { display: flex; flex-direction: column; gap: 3px; }
        .ac-gr-row { display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 9px; padding: 3px 8px; background: rgba(255,255,255,0.03); border-radius: 3px; color: rgba(255,255,255,0.65); }
        .ac-gr-row b { font-weight: 700; }
        .ac-gr-row b.green { color: #10b981; }

        /* Terminal (Ansible) */
        .ac-term { background: #0a0e13; padding: 0; overflow: hidden; font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace; }
        .ac-tm-top { display: flex; align-items: center; gap: 8px; padding: 6px 10px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.06); }
        .ac-tm-dots { display: flex; gap: 4px; }
        .ac-tm-dots span { width: 7px; height: 7px; border-radius: 50%; }
        .ac-tm-dots span:nth-child(1) { background: #ff5f57; }
        .ac-tm-dots span:nth-child(2) { background: #febc2e; }
        .ac-tm-dots span:nth-child(3) { background: #28c840; }
        .ac-tm-ttl { font-size: 9px; color: rgba(255,255,255,0.5); letter-spacing: 0.3px; }
        .ac-tm-line { font-size: 9.5px; padding: 2px 10px; color: rgba(255,255,255,0.75); line-height: 1.5; }
        .ac-tm-line:first-of-type { padding-top: 8px; }
        .ac-tm-ok { color: #10b981; font-weight: 700; }
        .ac-tm-chg { color: #eab308; font-weight: 700; }
        .ac-tm-foot { padding: 6px 10px 8px; font-size: 9px; color: rgba(0,177,235,0.65); border-top: 1px dashed rgba(255,255,255,0.08); margin-top: 4px; letter-spacing: 0.2px; }

        /* Managed Server stats */
        .ac-sr-top { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; font-size: 11px; font-weight: 700; }
        .ac-sr-logo { width: 22px; height: 22px; border-radius: 5px; background: linear-gradient(135deg, rgba(0,177,235,0.25), rgba(0,177,235,0.08)); border: 1px solid rgba(0,177,235,0.3); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .ac-sr-logo svg { width: 12px; height: 12px; color: #00B1EB; }
        .ac-sr-title { flex: 1; letter-spacing: -0.1px; }
        .ac-sr-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 8px; font-weight: 700; text-transform: uppercase; padding: 2px 7px; border-radius: 8px; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); color: #10b981; letter-spacing: 0.5px; }
        .ac-sr-dot { width: 4px; height: 4px; border-radius: 50%; background: #10b981; box-shadow: 0 0 4px #10b981; animation: ac-pulse 1.5s ease-in-out infinite; }
        .ac-sr-bars { display: flex; flex-direction: column; gap: 4px; }
        .ac-sr-bar { display: grid; grid-template-columns: 32px 1fr 36px; align-items: center; gap: 7px; font-size: 9px; color: rgba(255,255,255,0.6); }
        .ac-sr-bar span { font-family: 'JetBrains Mono', monospace; font-weight: 600; }
        .ac-sr-bar b { font-family: 'JetBrains Mono', monospace; text-align: right; font-weight: 700; color: #fff; font-size: 10px; }
        .ac-sr-b { height: 5px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
        .ac-sr-b div { height: 100%; background: linear-gradient(90deg, #00B1EB, #10b981); border-radius: 3px; }

        /* Proxmox Cluster */
        .ac-cl-top { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; font-size: 10px; font-weight: 700; }
        .ac-cl-ic { color: #e87722; font-size: 13px; }
        .ac-cl-badge { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 9px; color: #10b981; background: rgba(16,185,129,0.1); padding: 1px 7px; border-radius: 8px; }
        .ac-cl-nodes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-bottom: 6px; }
        .ac-cl-n { padding: 7px 4px; text-align: center; background: rgba(232,119,34,0.06); border: 1px solid rgba(232,119,34,0.25); border-radius: 4px; position: relative; }
        .ac-cl-n b { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; color: #e87722; }
        .ac-cl-n i { font-style: normal; font-size: 8px; color: rgba(255,255,255,0.5); margin-top: 2px; display: block; }
        .ac-cl-dot { position: absolute; top: 4px; right: 4px; width: 5px; height: 5px; border-radius: 50%; background: #10b981; box-shadow: 0 0 4px #10b981; }
        .ac-cl-foot { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; text-align: center; color: rgba(255,255,255,0.4); letter-spacing: 0.3px; }

        /* Ceph OSDs */
        .ac-cp-top { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; font-size: 10px; font-weight: 700; }
        .ac-cp-ic { color: #e54c4c; font-size: 14px; }
        .ac-cp-health { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 9px; color: #10b981; background: rgba(16,185,129,0.1); padding: 1px 7px; border-radius: 8px; border: 1px solid rgba(16,185,129,0.3); }
        .ac-cp-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; margin-bottom: 6px; }
        .ac-cp-osd { aspect-ratio: 1; border-radius: 3px; background: rgba(16,185,129,0.18); border: 1px solid rgba(16,185,129,0.4); }
        .ac-cp-osd.rebalance { background: rgba(234,179,8,0.18); border-color: rgba(234,179,8,0.4); animation: ac-pulse 1.4s ease-in-out infinite; }
        .ac-cp-stats { display: flex; gap: 4px; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 8.5px; color: rgba(255,255,255,0.5); }

        /* DaaS */
        .ac-ds-top { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; font-size: 10px; font-weight: 700; }
        .ac-ds-ic { font-size: 13px; }
        .ac-ds-cnt { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 9px; color: #10b981; background: rgba(16,185,129,0.1); padding: 1px 7px; border-radius: 8px; }
        .ac-ds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-bottom: 6px; }
        .ac-ds-session { aspect-ratio: 4/3; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 700; }
        .ac-ds-session.active { background: rgba(0,177,235,0.12); border: 1px solid rgba(0,177,235,0.35); color: #00B1EB; }
        .ac-ds-session.idle { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.35); }
        .ac-ds-session i { font-style: normal; }
        .ac-ds-foot { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; text-align: center; color: rgba(255,255,255,0.4); letter-spacing: 0.3px; }

        /* Mac Studio Cluster */
        .ac-mc-top { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; font-size: 10px; font-weight: 700; }
        .ac-mc-ic { font-size: 13px; }
        .ac-mc-tok { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 9px; color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); padding: 1px 7px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }
        .ac-mc-nodes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-bottom: 6px; }
        .ac-mc-n { padding: 6px 2px; text-align: center; background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; }
        .ac-mc-n b { display: block; font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 700; color: #fff; }
        .ac-mc-n i { font-style: normal; font-size: 8px; color: rgba(0,177,235,0.7); margin-top: 2px; display: block; font-family: 'JetBrains Mono', monospace; }
        .ac-mc-foot { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; text-align: center; color: rgba(255,255,255,0.4); letter-spacing: 0.3px; }

        /* Migration (Oracle → PostgreSQL) */
        .ac-mg-top { display: flex; justify-content: space-between; align-items: baseline; font-size: 10px; font-weight: 700; margin-bottom: 8px; }
        .ac-mg-pct { font-size: 16px; font-weight: 800; color: #00B1EB; letter-spacing: -0.3px; }
        .ac-mg-pct i { font-size: 9px; color: rgba(255,255,255,0.35); font-style: normal; font-weight: 600; margin-left: 1px; }
        .ac-mg-flow { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; margin-bottom: 7px; }
        .ac-mg-src, .ac-mg-dst { padding: 7px 9px; border-radius: 4px; text-align: center; font-size: 10px; font-weight: 700; white-space: nowrap; }
        .ac-mg-src { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #ef4444; }
        .ac-mg-dst { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #10b981; }
        .ac-mg-src i, .ac-mg-dst i { display: block; font-style: normal; font-family: 'JetBrains Mono', monospace; font-size: 8px; color: rgba(255,255,255,0.45); font-weight: 600; margin-top: 2px; }
        .ac-mg-arr { display: flex; flex-direction: column; gap: 3px; }
        .ac-mg-bar { height: 5px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
        .ac-mg-bar div { height: 100%; background: linear-gradient(90deg, #ef4444, #00B1EB, #10b981); border-radius: 3px; }
        .ac-mg-arr > span { font-family: 'JetBrains Mono', monospace; font-size: 8px; text-align: center; color: rgba(255,255,255,0.45); letter-spacing: 0.2px; }
        .ac-mg-foot { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; text-align: center; color: rgba(255,255,255,0.4); }
        .article-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 70% 30%, rgba(0,177,235,0.12) 0%, transparent 50%);
        }
        .article-image svg {
            width: 36px;
            height: 36px;
            color: #00B1EB;
            position: relative;
            z-index: 1;
            opacity: 0.8;
        }
        .article-content {
            padding: 28px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .article-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }
        .article-tag {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #00B1EB;
        }
        .article-date {
            font-size: 12px;
            color: #9ca3af;
        }
        .article-content h3 {
            font-size: 17px;
            font-weight: 600;
            color: #0a0f14;
            line-height: 1.4;
            margin-bottom: 10px;
            letter-spacing: -0.2px;
        }
        .article-content p {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 20px;
            flex: 1;
        }
        .article-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: #0a0f14;
        }
        .article-link svg {
            width: 16px;
            height: 16px;
            color: #00B1EB;
            transition: transform 0.25s;
        }
        .article-card:hover .article-link {
            color: #00B1EB;
        }
        .article-card:hover .article-link svg {
            transform: translateX(4px);
        }

        /* ============================================
           TOPICS - Minimal
           ============================================ */
        .topics-section {
            padding: 80px 56px;
            background: #fff;
        }
        .topics-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .topics-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 48px;
        }
        .topics-title {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #0a0f14;
        }
        .topics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.06);
        }
        .topic-card {
            background: #fff;
            padding: 36px 28px;
            text-decoration: none;
            transition: all 0.25s;
            position: relative;
        }
        .topic-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #00B1EB;
            transition: width 0.25s;
        }
        .topic-card:hover {
            background: #fafbfc;
        }
        .topic-card:hover::after {
            width: 40px;
        }
        .topic-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
        }
        .topic-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,177,235,0.08);
            border-radius: 10px;
        }
        .topic-icon svg {
            width: 22px;
            height: 22px;
            color: #00B1EB;
            position: relative;
            z-index: 1;
        }
        .topic-card h3 {
            font-size: 15px;
            font-weight: 600;
            color: #0a0f14;
            margin-bottom: 6px;
        }
        .topic-card p {
            font-size: 13px;
            color: #9ca3af;
        }

        /* ============================================
           NEWSLETTER - Refined
           ============================================ */
        .newsletter-section {
            padding: 80px 56px;
            background: #0a0f14;
            position: relative;
            overflow: hidden;
        }
        .newsletter-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(0,177,235,0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .newsletter-inner {
            max-width: 520px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .newsletter-section h2 {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        .newsletter-section .newsletter-inner > p {
            font-size: 15px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 32px;
            line-height: 1.7;
        }
        .newsletter-form {
            display: flex;
            gap: 8px;
        }
        .newsletter-input {
            flex: 1;
            padding: 16px 20px;
            font-family: inherit;
            font-size: 14px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            color: #fff;
            transition: all 0.2s;
        }
        .newsletter-input::placeholder {
            color: rgba(255,255,255,0.35);
        }
        .newsletter-input:focus {
            outline: none;
            border-color: #00B1EB;
            background: rgba(255,255,255,0.1);
        }
        .newsletter-btn {
            padding: 16px 28px;
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: #00B1EB;
            border: none;
            cursor: pointer;
            transition: all 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .newsletter-btn:hover {
            background: #0095c8;
            transform: translateY(-2px);
        }
        .newsletter-btn svg {
            width: 16px;
            height: 16px;
        }
        .newsletter-hint {
            margin-top: 16px;
            font-size: 12px;
            color: rgba(255,255,255,0.35);
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1200px) {
            .page-hero { grid-template-columns: 1fr; gap: 40px; }
            .hero-mockup { display: block; max-width: 380px; margin: 0 auto; }
            .mockup-stack { height: 300px; }
            .mockup-card { width: 300px; }
            .featured-card { grid-template-columns: 1fr; }
            .featured-visual { min-height: 200px; }
            .articles-grid { grid-template-columns: repeat(2, 1fr); }
            .topics-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .page-hero { padding: 48px 24px; }
            .page-hero h1 { font-size: 32px; letter-spacing: -1px; }
            .hero-content > p { font-size: 16px; }
            .hero-mockup { display: none; }
            .hero-ticker { margin-top: 32px; padding: 12px 14px; gap: 12px; }
            .hero-ticker-label { font-size: 9px; padding-right: 12px; }
            .hero-ticker-item { font-size: 12px; }
            .hero-rotator { flex-wrap: wrap; font-size: 12px; }
            .hero-rotator-word { min-width: 100px; }
            .hero-chips { gap: 6px; }
            .hero-chip { padding: 6px 10px; font-size: 11px; }
            .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
            .hero-stat { border-bottom: 1px solid #e8eaed; }
            .hero-stat:nth-child(2) { border-right: none; }
            .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-bottom: none; }
            .featured-section { padding: 48px 24px; }
            .featured-content { padding: 32px 24px; }
            .featured-content h2 { font-size: 22px; }
            .search-filter-section { padding: 32px 24px; }
            .search-input { height: 52px; padding: 0 48px 0 48px; font-size: 15px; }
            .search-icon { left: 16px; }
            .tag-cloud { gap: 8px; }
            .tag-item { padding: 6px 12px; font-size: 12px; }
            .articles-section { padding: 32px 24px 48px; }
            .articles-grid { grid-template-columns: 1fr; }
            .articles-header { flex-direction: column; align-items: flex-start; }
            .topics-section { padding: 48px 24px; }
            .topics-grid { grid-template-columns: 1fr 1fr; }
            .newsletter-section { padding: 48px 24px; }
            .newsletter-form { flex-direction: column; }
        }
        @media (max-width: 480px) {
            .page-hero { padding: 32px 16px; }
            .page-hero h1 { font-size: 32px; }
            .hero-content > p { font-size: 15px; margin-bottom: 24px; }
            .hero-badge { font-size: 10px; margin-bottom: 16px; }
            .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
            .hero-stat { padding: 20px 16px; }
            .hero-stat-value { font-size: 24px; }
            .search-filter-section { padding: 24px 16px; }
            .search-input { height: 48px; padding: 0 44px 0 44px; font-size: 14px; }
            .search-icon { left: 14px; width: 18px; height: 18px; }
            .search-clear { right: 8px; width: 28px; height: 28px; }
            .tag-cloud-label { font-size: 10px; }
            .tag-item { padding: 5px 10px; font-size: 11px; }
            .tag-item .tag-count { font-size: 10px; padding: 1px 5px; }
            .articles-section { padding: 24px 16px 40px; }
            .topics-grid { grid-template-columns: 1fr; }
        }

        /* === Pagination (Light-Theme passend zu .articles-section #fafbfc) === */
        .pagination {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            margin: 48px auto 24px;
            max-width: 1200px;
            padding: 24px;
            flex-wrap: wrap;
            border-top: 1px solid #e8eaed;
        }
        .pagination-info {
            font-size: 14px;
            color: #5f6368;
        }
        .pagination-info strong { color: #0a0f14; font-weight: 700; }
        .pagination-controls {
            display: flex;
            gap: 6px;
            align-items: center;
        }
        .pagination-btn {
            min-width: 40px;
            height: 40px;
            padding: 0 14px;
            background: #fff;
            border: 1px solid #e8eaed;
            color: #0a0f14;
            font-size: 14px;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.15s;
        }
        .pagination-btn:hover:not(:disabled) {
            border-color: #00B1EB;
            color: #00B1EB;
            background: rgba(0,177,235,0.05);
        }
        .pagination-btn.active {
            background: #00B1EB;
            border-color: #00B1EB;
            color: #fff;
            cursor: default;
        }
        .pagination-btn.active:hover { background: #00B1EB; color: #fff; }
        .pagination-btn:disabled {
            opacity: 0.35;
            cursor: not-allowed;
            background: #f8f9fa;
        }
        .pagination-gap {
            color: #5f6368;
            padding: 0 6px;
            font-size: 14px;
            user-select: none;
        }
        @media (max-width: 768px) {
            .pagination { flex-direction: column; gap: 16px; margin: 32px auto 16px; padding: 20px 16px; }
            .pagination-controls { flex-wrap: wrap; justify-content: center; }
            .pagination-btn { min-width: 36px; height: 36px; padding: 0 12px; font-size: 13px; }
        }
