        :root {
            --bg:          #09090b;
            --surface:     #111113;
            --surface-2:   #18181b;
            --surface-3:   #1e1e22;
            --border:      #27272a;
            --border-hover: #3f3f46;
            --text:        #fafafa;
            --text-secondary: #a1a1aa;
            --text-tertiary:  #71717a;
            --gold:        #C9A962;
            --gold-glow:   rgba(201, 169, 98, 0.15);
            --gold-text:   #e5d4a1;
            --accent:      #8b7cf6;
            --accent-glow: rgba(139, 124, 246, 0.12);
            --success:     #4ade80;
            --error:       #f87171;
            --section-y:   clamp(80px, 12vw, 140px);
            --section-x:   clamp(20px, 5vw, 80px);
            --container:   1280px;
            --radius-sm:   6px;
            --radius-md:   12px;
            --radius-lg:   20px;
            --radius-full: 9999px;
            --font-main: 'Space Grotesk', sans-serif;
            --font-body: 'Inter Tight', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
            /* CIA pillér-színek (arany-családon belül, brand-konzisztens) */
            --c-conf: #C9A962;   /* Bizalmasság */
            --c-int:  #8b7cf6;   /* Sértetlenség (accent) */
            --c-avail:#4ade80;   /* Rendelkezésre állás (success) */
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: var(--font-main);
            overflow-x: hidden;
        }

        .skip-link {
            position: absolute; top: -100%; left: 1rem;
            padding: 0.5rem 1rem; background: var(--gold); color: #09090b;
            font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
            z-index: 10000; border-radius: var(--radius-sm); transition: top 0.2s;
        }
        .skip-link:focus { top: 0.5rem; }

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

        .nav {
            position: sticky; top: 0; z-index: 1000;
            display: flex; align-items: center; justify-content: space-between;
            padding: 1.5rem 2rem; backdrop-filter: blur(18px);
            background: rgba(10, 10, 10, 0.85);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .nav-logo { font-family: var(--font-mono); font-weight: 700; font-size: 1.1rem; }
        .nav-logo-bracket { color: var(--gold); }
        .nav-logo-text { color: var(--text); }
        /* Hamburger-only nav (mint a nis2-felkeszules): a menüpontok csak a hamburgerben (.active). */
        .nav-links { display: none; gap: 1.5rem; list-style: none; flex-wrap: wrap; justify-content: center; }
        .nav-links a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }
        .nav-links a::before { content: '//'; margin-right: 0.3rem; color: var(--gold); opacity: 1; }
        .nav-links a:hover, .nav-links a.active { color: var(--gold); }
        .nav-right { display: flex; align-items: center; gap: 1rem; }
        .nav-konfigurator-btn {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.65rem 1.2rem; background: #0a0a0a; color: #fff;
            font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
            border-radius: 4px; letter-spacing: 0.05em;
            transition: color 0.3s, box-shadow 0.3s; text-decoration: none;
            position: relative; z-index: 0;
        }
        @media (max-width: 480px) { .nav-konfigurator-btn { font-size: 0.6rem; padding: 0.45rem 0.7rem; } }
        .nav-konfigurator-btn:hover { color: #d8b4fe; box-shadow: 0 0 20px rgba(168, 85, 247, 0.4); }
        .mobile-cta { display: none; }

        .nav-hamburger {
            background: none; border: none; padding: 0;
            -webkit-appearance: none; appearance: none;
            display: flex; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001;
        }
        .nav-hamburger span { width: 30px; height: 2px; background: var(--text); transition: all 0.3s ease; }
        .nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .nav-hamburger.active span:nth-child(2) { opacity: 0; }
        .nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
        .nav-links.active {
            display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
            background: rgba(10, 10, 10, 0.98); backdrop-filter: blur(20px);
            flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 999;
        }
        .nav-links.active a { font-size: 1.5rem; padding: 0.75rem 1rem; }
        .nav-links.active .mobile-cta {
            display: block; margin-top: 2rem; padding: 1rem 2.5rem;
            font-family: var(--font-mono); font-size: 0.9rem; letter-spacing: 0.05em;
            text-transform: uppercase; background: linear-gradient(90deg, var(--gold), var(--accent));
            color: var(--bg); font-weight: 600;
        }
        @keyframes borderRotate { 0% { --border-angle: 0deg; } 100% { --border-angle: 360deg; } }
        @property --border-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
        .nav-konfigurator-btn::before {
            content: ''; position: absolute; inset: -2px; border-radius: 6px;
            background: conic-gradient(from var(--border-angle), transparent 0%, transparent 30%, var(--gold) 48%, var(--gold-text) 50%, var(--gold) 52%, transparent 70%, transparent 100%);
            z-index: -2; animation: borderRotate 2.5s linear infinite;
            filter: drop-shadow(0 0 6px #a855f7) drop-shadow(0 0 12px rgba(168, 85, 247, 0.5));
        }
        .nav-konfigurator-btn::after { content: ''; position: absolute; inset: 0; border-radius: 4px; background: #0a0a0a; z-index: -1; }

        .hero, .section, .cta, .footer { padding: 5rem 2rem; }
        .hero { padding-top: 7rem; position: relative; overflow: hidden; }
        .hero-grid {
            position: absolute; inset: 0;
            background-image:
                linear-gradient(var(--gold-glow) 1px, transparent 1px),
                linear-gradient(90deg, var(--gold-glow) 1px, transparent 1px);
            background-size: 50px 50px;
            mask-image: radial-gradient(circle at center, black 0%, transparent 75%);
            opacity: 0.4;
        }
        .hero-content, .section-inner, .cta-inner, .footer-inner {
            position: relative; z-index: 1; max-width: 1280px; margin: 0 auto;
        }
        .hero-label, .section-label {
            font-family: var(--font-mono); color: var(--gold);
            text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; margin-bottom: 1rem;
        }
        .hero-title, .section-title, .cta-title {
            font-size: clamp(2.3rem, 5vw, 4.6rem); line-height: 1.05; margin-bottom: 1.25rem; font-weight: 700;
        }
        .section-title { font-size: clamp(1.2rem, 5vw, 2rem); }
        .hero-title span, .section-title span, .cta-title span {
            background: linear-gradient(90deg, var(--gold), var(--gold-text));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .hero-description, .section-intro {
            color: var(--text-secondary); font-family: var(--font-body);
            font-size: clamp(0.95rem, 1.4vw, 1.15rem); line-height: 1.8; max-width: 720px; margin-bottom: 2rem;
        }
        .section-intro { max-width: 800px; }
        .hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }

        .btn {
            display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 1.8rem;
            font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600;
            border-radius: 4px; letter-spacing: 0.05em; cursor: pointer; transition: all 0.2s; text-decoration: none;
        }
        .btn-primary { background: linear-gradient(90deg, var(--gold), var(--accent)); color: var(--bg); }
        .btn-primary:hover { background: transparent; color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold), 0 0 24px var(--gold-glow); }
        .btn-secondary { border: 1px solid var(--border-hover); color: var(--gold); background: rgba(255, 255, 255, 0.02); }
        .btn-secondary:hover { background: var(--gold-glow); color: var(--gold); }

        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
        .card {
            background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: var(--radius-md); padding: 2rem; transition: border-color 0.3s;
        }
        .card:hover { border-color: rgba(255, 255, 255, 0.14); }
        .card h3 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--gold); }
        .card p, .card li { color: var(--text-secondary); font-family: var(--font-body); font-size: 0.95rem; line-height: 1.6; }
        .card ul { list-style: none; margin-top: 1rem; }
        .card ul li { padding: 0.3rem 0; }
        .card ul li::before { content: '→'; color: var(--gold); margin-right: 0.5rem; }

        .footer { border-top: 1px solid rgba(255, 255, 255, 0.05); }
        .footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
        .footer-logo { font-family: var(--font-mono); font-size: 1.1rem; font-weight: 700; }
        .footer-logo span { color: var(--gold); }
        .footer-links { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
        .footer-links a { color: rgba(255, 255, 255, 0.6); font-size: 0.88rem; transition: color 0.2s; }
        .footer-links a:hover { color: var(--gold); }
        .footer-social { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; margin: 1rem 0 0.25rem; width: 100%; }
        .footer-social-link {
            display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
            border-radius: 10px; color: rgba(255, 255, 255, 0.65); background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1); transition: color 0.2s, background 0.2s, transform 0.2s;
        }
        .footer-social-link:hover { color: var(--gold); background: var(--gold-glow); transform: translateY(-2px); }
        .footer-social-link svg { display: block; }
        .footer-note { width: 100%; font-size: 0.75rem; color: var(--text-tertiary); max-width: 560px; margin: 0 auto; line-height: 1.6; text-align: center; }
        .text-link { text-decoration: underline; text-underline-offset: 2px; }

        .cta { text-align: center; }
        .cta-description { color: var(--text-secondary); font-family: var(--font-body); font-size: 1.05rem; line-height: 1.7; max-width: 640px; margin: 0 auto 2.5rem; }
        .cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

        .faq-list { max-width: 780px; margin: 2rem auto 0; }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-question {
            width: 100%; background: none; border: none; padding: 1.25rem 0;
            display: flex; justify-content: space-between; align-items: center;
            color: var(--text); font-size: 1rem; font-weight: 500; cursor: pointer; text-align: left; font-family: var(--font-main);
        }
        .faq-question span { font-size: 1.2rem; transition: transform 0.25s; color: var(--gold); flex-shrink: 0; margin-left: 1rem; }
        .faq-item.faq-open .faq-question span { transform: rotate(45deg); }
        .faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; }
        .faq-item.faq-open .faq-answer { grid-template-rows: 1fr; }
        .faq-answer-inner { overflow: hidden; color: var(--text-secondary); font-family: var(--font-body); font-size: 0.95rem; line-height: 1.7; padding-bottom: 0; }
        .faq-item.faq-open .faq-answer-inner { padding-bottom: 1.25rem; }
        .faq-answer-inner strong { color: var(--text); }

        /* -- TOC styles -- */
        .page-with-toc { display: flex; gap: 2rem; max-width: calc(1280px + 260px); margin: 0 auto; padding: 0 var(--section-x); }
        .service-toc {
            position: sticky; top: 90px; width: 240px; min-width: 240px;
            max-height: calc(100vh - 120px); overflow-y: auto; padding: 1rem 0; display: none;
        }
        @media (min-width: 1024px) { .service-toc { display: block; } }
        .service-toc ul { list-style: none; padding: 0; margin: 0; }
        .service-toc li { margin: 0; }
        .service-toc a {
            display: block; padding: 0.4rem 0.8rem; font-size: 0.85rem; color: var(--text-tertiary);
            text-decoration: none; border-left: 2px solid transparent; transition: all 0.2s; font-family: var(--font-body); line-height: 1.4;
        }
        .service-toc a:hover { color: var(--text-secondary); border-left-color: var(--border-hover); }
        .service-toc a.active { color: var(--gold); border-left-color: var(--gold); }
        .service-toc a.toc-cta { margin-top: 0.8rem; color: var(--gold); border-left-color: var(--gold); font-weight: 600; }
        .toc-mobile-toggle {
            display: block; width: 100%; padding: 0.75rem 1rem; background: var(--surface); border: 1px solid var(--border);
            border-radius: var(--radius-sm); color: var(--text); font-family: var(--font-mono); font-size: 0.8rem; cursor: pointer; text-align: left; margin-bottom: 1rem;
        }
        @media (min-width: 1024px) { .toc-mobile-toggle { display: none; } }
        .toc-mobile-toggle span { float: right; transition: transform 0.25s; }
        .toc-mobile-toggle.open span { transform: rotate(180deg); }
        @media (max-width: 1023px) {
            .service-toc.mobile-hidden { display: none; }
            .service-toc.mobile-open { display: block; }
            .page-with-toc { flex-direction: column; }
        }
        .main-content-area { flex: 1; min-width: 0; }

        @media (max-width: 768px) {
            .hero, .section, .cta, .footer { padding: 3rem 1.25rem; }
            .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
            .nav { padding: 1rem 1.25rem; }
            .nav-konfigurator-btn { display: none; }
        }
        @media (max-width: 1023px) { .nav-links { display: none; } }
        @media (max-width: 480px) { .card-grid { grid-template-columns: 1fr; } }

        .sticky-cta {
            display: none; position: fixed; bottom: 0; left: 0; right: 0; padding: 0.85rem 1.5rem;
            background: var(--gold); color: #09090b; font-family: var(--font-main); font-size: 1rem; font-weight: 700;
            text-align: center; z-index: 9999; border: none; cursor: pointer; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); letter-spacing: 0.03em; text-decoration: none;
        }
        .sticky-cta:hover { background: var(--gold-text); }
        @media (max-width: 768px) { .sticky-cta { display: flex; align-items: center; justify-content: center; gap: 0.5rem; } body { padding-bottom: 60px; } }

        /* a11y (audit): egységes fókusz-keret */
        *:focus-visible { outline: 2px solid #C9A962; outline-offset: 2px; }

        /* ============================================================
           MODUL-SPECIFIKUS STÍLUSOK (Kisokos sablon)
           ============================================================ */

        /* Breadcrumb */
        .breadcrumb { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--text-tertiary); margin-bottom: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
        .breadcrumb a { color: var(--text-secondary); }
        .breadcrumb a:hover { color: var(--gold); }
        .breadcrumb span { color: var(--text-tertiary); }

        /* Hero meta-sor: CIA-badge + olvasási idő */
        .module-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-bottom: 1.75rem; }
        .cia-badge {
            font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
            padding: 0.35rem 0.7rem; border-radius: var(--radius-full); border: 1px solid var(--gold);
            color: var(--gold); background: var(--gold-glow);
        }
        .reading-time { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-tertiary); }
        .reading-time::before { content: '⏱ '; }

        /* Rétegjelölő címke (1 · laikus / 2 · gyakorlat / 3 · technikai) */
        .layer-tag {
            display: inline-block; font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600;
            letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: var(--radius-sm);
            margin-bottom: 1rem;
        }
        .layer-tag.l1 { color: var(--c-avail); background: rgba(74, 222, 128, 0.1); }
        .layer-tag.l2 { color: var(--gold); background: var(--gold-glow); }
        .layer-tag.l3 { color: var(--accent); background: var(--accent-glow); }

        /* Analógia-doboz */
        .analogy-box {
            background: var(--surface-2); border-left: 3px solid var(--gold);
            padding: 1.5rem 1.75rem; border-radius: var(--radius-sm); margin: 1.75rem 0;
            font-family: var(--font-body); color: var(--text-secondary); line-height: 1.75; font-size: 1rem;
        }
        .analogy-box strong { color: var(--gold-text); }
        .analogy-box .analogy-kicker { display: block; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }

        /* Interaktív CIA-kártyák */
        .cia-explorer { display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 2rem; margin-top: 2.5rem; align-items: start; }
        @media (max-width: 880px) { .cia-explorer { grid-template-columns: 1fr; } }
        .cia-diagram { display: flex; justify-content: center; align-items: center; padding: 1rem; }
        .cia-svg { width: 100%; max-width: 340px; height: auto; }
        .cia-svg .cia-corner { cursor: pointer; transition: opacity 0.2s; }
        .cia-svg .cia-corner:hover { opacity: 0.85; }
        .cia-svg .cia-corner text { font-family: var(--font-mono); font-weight: 700; }
        .cia-cards { display: flex; flex-direction: column; gap: 1rem; }
        .cia-card {
            background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border);
            border-left: 4px solid var(--pillar, var(--gold)); border-radius: var(--radius-md);
            padding: 1.25rem 1.5rem; cursor: pointer; transition: border-color 0.25s, background 0.25s, transform 0.15s; text-align: left; width: 100%; font-family: inherit; color: inherit;
        }
        .cia-card[data-pillar="C"] { --pillar: var(--c-conf); }
        .cia-card[data-pillar="I"] { --pillar: var(--c-int); }
        .cia-card[data-pillar="A"] { --pillar: var(--c-avail); }
        .cia-card:hover { background: rgba(255, 255, 255, 0.04); }
        .cia-card.active { border-color: var(--pillar); background: rgba(255, 255, 255, 0.05); }
        .cia-card-head { display: flex; align-items: baseline; gap: 0.6rem; }
        .cia-card-letter { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: var(--pillar); line-height: 1; }
        .cia-card-title { font-size: 1.05rem; font-weight: 600; color: var(--text); }
        .cia-card-en { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-tertiary); }
        .cia-card-body { font-family: var(--font-body); font-size: 0.92rem; color: var(--text-secondary); line-height: 1.65; margin-top: 0.75rem; }
        .cia-card-detail { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
        .cia-card.active .cia-card-detail { grid-template-rows: 1fr; }
        .cia-card-detail-inner { overflow: hidden; }
        .cia-card-detail-inner dl { margin-top: 0.9rem; font-family: var(--font-body); font-size: 0.88rem; line-height: 1.6; }
        .cia-card-detail-inner dt { color: var(--pillar); font-weight: 600; margin-top: 0.7rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
        .cia-card-detail-inner dd { color: var(--text-secondary); margin: 0.2rem 0 0; }

        /* Operatív panel: Mi ez / Miért kötelező / Hogyan */
        .op-panel { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
        .op-cell { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; }
        .op-cell h3 { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
        .op-cell p { font-family: var(--font-body); font-size: 0.92rem; line-height: 1.65; color: var(--text-secondary); }

        /* Process steps (Hogyan használd) */
        .process-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
        .process-step { display: flex; gap: 1.5rem; align-items: flex-start; }
        .process-step-number { font-family: var(--font-mono); font-size: 1.6rem; font-weight: 700; color: var(--gold); min-width: 2.5rem; line-height: 1; }
        .process-step-content h3 { font-size: 1rem; margin-bottom: 0.4rem; }
        .process-step-content p { color: var(--text-secondary); font-family: var(--font-body); font-size: 0.92rem; line-height: 1.6; }
        @media (max-width: 768px) { .process-step { flex-direction: column; gap: 0.4rem; } }

        /* Technikai mélység: <details> */
        .tech-details { border: 1px solid var(--border); border-radius: var(--radius-md); margin-top: 1rem; background: var(--surface); overflow: hidden; }
        .tech-details + .tech-details { margin-top: 0.75rem; }
        .tech-details summary {
            cursor: pointer; padding: 1rem 1.25rem; font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600;
            color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
        }
        .tech-details summary::-webkit-details-marker { display: none; }
        .tech-details summary::after { content: '+'; color: var(--accent); font-size: 1.2rem; transition: transform 0.2s; }
        .tech-details[open] summary::after { transform: rotate(45deg); }
        .tech-details .tech-body { padding: 0 1.25rem 1.25rem; font-family: var(--font-body); font-size: 0.92rem; line-height: 1.7; color: var(--text-secondary); }
        .tech-details .tech-body strong { color: var(--text); }
        .tech-details .tech-body code { font-family: var(--font-mono); font-size: 0.82rem; background: var(--surface-3); padding: 0.1rem 0.4rem; border-radius: 4px; color: var(--gold-text); }

        /* Glossary tooltip */
        .glossary-term { border-bottom: 1px dotted var(--gold); cursor: help; position: relative; color: var(--gold-text); }
        .glossary-term .glossary-tip {
            display: none; position: absolute; bottom: 140%; left: 50%; transform: translateX(-50%);
            width: max-content; max-width: min(260px, calc(100vw - 32px)); background: var(--surface-3); border: 1px solid var(--border-hover);
            color: var(--text-secondary); font-family: var(--font-body); font-size: 0.82rem; font-weight: 400; line-height: 1.5;
            padding: 0.6rem 0.8rem; border-radius: var(--radius-sm); box-shadow: 0 8px 24px rgba(0,0,0,0.4); z-index: 50; pointer-events: none;
        }
        .glossary-term:hover .glossary-tip, .glossary-term:focus .glossary-tip { display: block; }

        /* "Gyakori tévhit" callout */
        .myth-callout { background: linear-gradient(180deg, rgba(201,169,98,0.08), rgba(201,169,98,0.02)); border: 1px solid var(--gold); border-radius: var(--radius-md); padding: 1.5rem 1.75rem; margin-top: 1.5rem; }
        .myth-callout .myth-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.6rem; }
        .myth-callout .myth-claim { font-weight: 600; color: var(--text); font-family: var(--font-body); }
        .myth-callout .myth-truth { color: var(--text-secondary); font-family: var(--font-body); font-size: 0.92rem; line-height: 1.65; margin-top: 0.5rem; }
        .myth-callout .myth-truth strong { color: var(--gold-text); }

        /* Önteszt (sessionStorage) */
        .selftest { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; margin-top: 2.5rem; }
        .selftest h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
        .selftest-intro { font-family: var(--font-body); font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.5rem; }
        .selftest-progress-track { height: 8px; background: var(--surface-3); border-radius: var(--radius-full); overflow: hidden; margin-bottom: 1.75rem; }
        .selftest-progress-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--accent)); border-radius: var(--radius-full); transition: width 0.4s ease; }
        .selftest-q { border-top: 1px solid var(--border); padding: 1.1rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
        .selftest-q p { font-family: var(--font-body); font-size: 0.95rem; color: var(--text); flex: 1; min-width: 200px; line-height: 1.5; }
        .selftest-opts { display: flex; gap: 0.5rem; flex-shrink: 0; }
        .selftest-opts button {
            font-family: var(--font-mono); font-size: 0.78rem; padding: 0.45rem 0.9rem; border-radius: var(--radius-sm);
            border: 1px solid var(--border-hover); background: transparent; color: var(--text-secondary); cursor: pointer; transition: all 0.18s;
        }
        .selftest-opts button:hover { border-color: var(--gold); color: var(--gold); }
        .selftest-opts button.sel-yes { background: rgba(74,222,128,0.15); border-color: var(--success); color: var(--success); }
        .selftest-opts button.sel-no { background: rgba(248,113,113,0.12); border-color: var(--error); color: var(--error); }
        .selftest-result { margin-top: 1.5rem; padding: 1.25rem 1.5rem; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--border); font-family: var(--font-body); font-size: 0.95rem; line-height: 1.6; color: var(--text-secondary); display: none; }
        .selftest-result.show { display: block; }
        .selftest-result strong { color: var(--gold-text); }

        /* Jogi refrén callout */
        .legal-refrain { display: flex; gap: 1rem; align-items: flex-start; background: var(--surface); border: 1px dashed var(--border-hover); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin-top: 2.5rem; }
        .legal-refrain .legal-icon { font-size: 1.1rem; flex-shrink: 0; }
        .legal-refrain p { font-family: var(--font-body); font-size: 0.85rem; line-height: 1.6; color: var(--text-tertiary); }
        .legal-refrain p strong { color: var(--text-secondary); }

        /* Modul prev/next + kapcsolódó */
        .module-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
        @media (max-width: 600px) { .module-nav { grid-template-columns: 1fr; } }
        .module-nav a { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; transition: border-color 0.2s, background 0.2s; }
        .module-nav a:hover { border-color: var(--gold); background: rgba(255,255,255,0.02); }
        .module-nav .mn-kicker { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary); display: block; margin-bottom: 0.4rem; }
        .module-nav .mn-title { color: var(--gold); font-weight: 600; font-size: 0.98rem; }
        .module-nav a.mn-next { text-align: right; }

        .related-modules { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
        .related-modules a { font-family: var(--font-mono); font-size: 0.78rem; padding: 0.5rem 0.9rem; border: 1px solid var(--border); border-radius: var(--radius-full); color: var(--text-secondary); transition: all 0.2s; }
        .related-modules a:hover { border-color: var(--gold); color: var(--gold); }

        .section-divider { border: none; border-top: 1px solid var(--border); margin: var(--section-y) 0 0; }
    