        /* --- ZÁKLADNÍ NASTAVENÍ --- */
        :root {
            --primary: #9D00FF; 
            --primary-glow: #6200ea; 
            --bg-main: #121212;
            --bg-secondary: #1a1a1a;
            --text-light: #ffffff;
            --text-muted: #b0b0b0;
            --success: #00e676; 
            --danger: #ff3d00; 
            --border-tech: 1px solid rgba(157, 0, 255, 0.2);
            --motion-standard: cubic-bezier(0.22, 1, 0.36, 1);
            --motion-emphasized: cubic-bezier(0.16, 1, 0.3, 1);
            --surface-glow: rgba(157, 0, 255, 0.16);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--bg-main);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            width: 100%;
        }

        /* --- CUSTOM SCROLLBAR --- */
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: #0f0f0f; }
        ::-webkit-scrollbar-thumb { background: #444; border-radius: 5px; border: 2px solid #0f0f0f; }
        ::-webkit-scrollbar-thumb:hover { background: var(--primary); }

        /* --- SCROLL REVEAL ANIMACE --- */
        .motion-enabled .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition:
                opacity var(--reveal-duration, 0.82s) var(--motion-standard),
                transform var(--reveal-duration, 0.82s) var(--motion-standard);
            transition-delay: var(--reveal-delay, 0ms);
            will-change: opacity, transform;
        }
        .motion-enabled .reveal.active {
            opacity: 1;
            transform: translateY(0); 
            will-change: auto;
        }

        /* --- DATOVÉ POZADÍ A AMBIENTNÍ GLOW --- */
        @keyframes float {
            0% { 
                transform: translate(-50%, -50%) scale(1); 
                opacity: 0.52;
            }
            50% { 
                transform: translate(-53%, -47%) scale(1.18);
                opacity: 0.78;
            } 
            100% { 
                transform: translate(-50%, -50%) scale(1); 
                opacity: 0.52;
            }
        }

        @keyframes grid-drift {
            from { transform: perspective(650px) rotateX(62deg) translateY(0); }
            to { transform: perspective(650px) rotateX(62deg) translateY(38px); }
        }

        @keyframes status-pulse {
            0%, 100% { opacity: 0.55; box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
            50% { opacity: 1; box-shadow: 0 0 0 5px rgba(0, 230, 118, 0.08); }
        }

        @keyframes cta-breathe {
            0%, 100% { box-shadow: 0 4px 15px rgba(0,0,0,0.2), 0 0 0 0 rgba(255,255,255,0); }
            50% { box-shadow: 0 10px 28px rgba(0,0,0,0.25), 0 0 0 6px rgba(255,255,255,0.07); }
        }

        @keyframes cta-sheen {
            from { transform: translateX(-165%) skewX(-18deg); }
            to { transform: translateX(260%) skewX(-18deg); }
        }

        @keyframes result-enter {
            from { opacity: 0; transform: translateY(8px); background-color: rgba(157, 0, 255, 0.12); }
            to { opacity: 1; transform: translateY(0); background-color: transparent; }
        }

        .hero-glow-effect {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 800px; 
            height: 800px;
            /* Používáme screen mode a sytější barvu, aby to bylo vidět i na černé */
            background: radial-gradient(circle, rgba(160, 60, 255, 0.6) 0%, rgba(0,0,0,0) 65%);
            mix-blend-mode: screen; 
            z-index: 1; 
            pointer-events: none;
            animation: float 6s infinite ease-in-out; 
        }

        .hero-data-grid {
            position: absolute;
            left: -10%;
            right: -10%;
            bottom: -48%;
            height: 78%;
            z-index: 1;
            pointer-events: none;
            opacity: 0.24;
            transform-origin: center bottom;
            background-image:
                linear-gradient(rgba(255,255,255,0.11) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.11) 1px, transparent 1px);
            background-size: 38px 38px;
            -webkit-mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 72%, transparent);
            mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 72%, transparent);
            animation: grid-drift 10s linear infinite;
        }

        /* --- UI PRVKY --- */
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--text-light);
            color: var(--primary-glow);
            text-decoration: none;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 4px;
            transition:
                transform 0.3s var(--motion-standard),
                box-shadow 0.3s ease,
                background-color 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            text-align: center;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        .btn::after {
            content: '';
            position: absolute;
            inset: -40% auto -40% -40%;
            width: 34%;
            z-index: 0;
            pointer-events: none;
            background: linear-gradient(90deg, transparent, rgba(157,0,255,0.16), transparent);
            transform: translateX(-165%) skewX(-18deg);
        }
        body:not(.has-interacted) #hero .btn {
            animation: cta-breathe 3.2s ease-in-out 1.2s infinite;
        }
        body:not(.has-interacted) #hero .btn::after {
            animation: cta-sheen 3.8s ease-in-out 1.6s infinite;
        }
        .btn:hover { 
            transform: translateY(-2px); 
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }
        
        .contact-btn {
            background: var(--primary);
            color: white;
            min-width: 300px; 
            font-size: 1.1rem;
            border: none;
        }
        
        .social-buttons-container {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap; 
        }

        .btn-social {
            display: inline-block;
            padding: 12px 25px;
            border: 1px solid rgba(255, 255, 255, 0.2); 
            color: var(--text-muted); 
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            border-radius: 4px;
            transition:
                color 0.3s ease,
                border-color 0.3s ease,
                background-color 0.3s ease,
                transform 0.3s var(--motion-standard);
            min-width: 140px; 
            text-align: center;
        }

        .btn-social:hover {
            border-color: var(--text-light);
            color: var(--text-light);
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid rgba(255,255,255,0.3);
            color: var(--text-light);
            padding: 13px 38px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            transition: border-color 0.3s ease, background-color 0.3s ease;
            text-align: center;
        }
        .btn-outline:hover { 
            border-color: var(--text-light);
            background: rgba(255,255,255,0.1);
        }

        /* --- ŠIPKA NAHORU --- */
        #scrollTopBtn {
            display: none; 
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            border: none;
            outline: none;
            background-color: var(--primary);
            color: white;
            cursor: pointer;
            width: 50px;
            height: 50px;
            padding: 0; 
            justify-content: center;
            align-items: center;
            border-radius: 50%; 
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
            transition: background-color 0.3s ease, transform 0.3s var(--motion-standard), box-shadow 0.3s ease;
        }

        #scrollTopBtn:hover {
            background-color: var(--primary-glow);
            transform: translateY(-5px);
        }
        
        #scrollTopBtn svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        /* --- NAVIGACE --- */
        nav {
            position: fixed; top: 0; width: 100%;
            background: rgba(18, 18, 18, 0.95);
            padding: 10px 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .container {
            width: 90%; 
            max-width: 1200px; 
            margin: 0 auto;
            display: flex; 
            justify-content: space-between; 
            align-items: flex-start;
            flex-wrap: wrap;
        }

        /* --- LOGO --- */
        .logo-placeholder {
            height: 60px;
            width: 200px;
            display: flex;
            align-items: center;
            text-decoration: none;
            overflow: hidden;
            position: relative; 
            z-index: 1001; 
        }

        .logo-img {
            height: 100%;
            width: auto;
            transform: scale(2); 
            transform-origin: left center;
        }

        /* --- PC MENU --- */
        .nav-links { display: flex; gap: 30px; align-items: center; height: 60px; }
        .nav-links a {
            color: rgba(255,255,255,0.9); text-decoration: none;
            font-weight: 600; font-size: 0.9rem; text-transform: uppercase;
            transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s var(--motion-standard);
            position: relative;
        }
        .nav-links a:not(.nav-telegram)::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -8px;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--primary), #d38bff);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.3s var(--motion-standard);
        }
        .nav-links a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
        .nav-links a.is-active:not(.nav-telegram) { color: #fff; }
        .nav-links a.is-active:not(.nav-telegram)::after { transform: scaleX(1); }
        .nav-links a.nav-telegram { background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 5px; box-shadow: 0 0 18px rgba(157, 0, 255, 0.25); }
        .nav-links a.nav-telegram:hover { background: var(--primary-glow); transform: translateY(-2px); }

        /* Hamburger ikona */
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1001;
            margin-top: 15px; 
            padding: 0;
            border: 0;
            background: transparent;
            color: inherit;
        }
        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
            background-color: white;
        }

        /* --- SEKCE (ZDE JE OPRAVA PRO SCROLL) --- */
        section { 
            padding: 100px 0; 
            scroll-margin-top: 100px; /* TOTO ZAJISTÍ ODSAZENÍ PŘI ROLOVÁNÍ */
        }
        section:nth-child(odd) { background-color: var(--bg-secondary); }
        
        .section-header { 
            text-align: left;
            margin-bottom: 0;
            flex: 1; 
            min-width: 300px;
            padding-right: 40px;
        }

        h2 {
            font-size: 3.5rem; 
            font-weight: 900; 
            text-transform: uppercase;
            line-height: 1.1;
            display: block;
        }
        
        h2 span { color: var(--primary); display: block; }

        .section-header h2::after {
            content: '';
            display: block;
            width: min(190px, 58%);
            height: 3px;
            margin-top: 18px;
            border-radius: 999px;
            background: linear-gradient(90deg, #d38bff 0%, var(--primary) 58%, rgba(157,0,255,0.08) 100%);
            box-shadow: 0 0 16px rgba(157,0,255,0.42);
            opacity: 0.2;
            transform: scaleX(0);
            transform-origin: left center;
            transition:
                transform 1s var(--motion-emphasized),
                opacity 0.35s ease;
        }

        .section-header.accent-visible h2::after {
            opacity: 1;
            transform: scaleX(1);
        }
        
        .section-content-wrapper {
            flex: 1.5;
            min-width: 300px;
        }

        /* --- HERO SEKCE --- */
        #hero {
            background: radial-gradient(circle at 50% 0%, #7c3aed 0%, #4c1d95 40%, #121212 90%);
            min-height: 100vh;
            display: flex; 
            align-items: center; 
            justify-content: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        #hero .container {
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2; 
        }

        .hero-content { 
            z-index: 2; 
            max-width: 900px; 
            display: flex;
            flex-direction: column;
            align-items: center; 
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 22px;
            padding: 7px 13px;
            color: rgba(255,255,255,0.86);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 999px;
            background: rgba(18,18,18,0.28);
            backdrop-filter: blur(8px);
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .hero-kicker-dot,
        .data-status-dot {
            flex: 0 0 auto;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--success);
            box-shadow: 0 0 10px rgba(0,230,118,0.55);
        }

        .hero-kicker-dot {
            animation: status-pulse 2.2s ease-in-out infinite;
        }

        .hero-content h1 { 
            font-size: 4.5rem; margin-bottom: 20px; line-height: 1.1; 
            font-weight: 900; color: #fff;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            text-transform: none;
        }

        .hero-content h1 span.highlight { font-size: 1.1em; text-transform: uppercase; }
        .hero-content p { font-size: 1.3rem; color: rgba(255,255,255,0.9); margin-bottom: 40px; max-width: 700px; }
        .hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

        /* --- IKONKA MYŠI (SCROLL DOWN) --- */
        .scroll-down-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0.7;
            z-index: 2;
            pointer-events: none; /* Aby se přes ni dalo případně klikat */
        }

        /* Skrytí myši na malých mobilech, kde zabírá místo */
        @media (max-height: 600px) {
            .scroll-down-indicator {
                display: none;
            }
        }

        /* --- OSTATNÍ STYLY --- */
        .comparison-grid { display: grid; grid-template-columns: 1fr; gap: 30px; text-align: left; }
        .comparison-grid.reveal,
        #vysledky .section-content-wrapper.reveal {
            --reveal-duration: 1s;
            --reveal-delay: 110ms;
        }
        .compare-box { padding: 30px; border-radius: 8px; }
        .compare-box.bad { background: rgba(255, 61, 0, 0.05); border: 1px solid rgba(255, 61, 0, 0.2); }
        .compare-box.good { background: rgba(0, 230, 118, 0.05); border: 1px solid rgba(0, 230, 118, 0.2); }
        .compare-title { font-size: 1.5rem; font-weight: 900; margin-bottom: 20px; text-transform: uppercase; }
        .bad .compare-title { color: var(--danger); }
        .good .compare-title { color: var(--success); }
        
        .compare-list li { list-style: none; margin-bottom: 15px; padding-left: 25px; position: relative; color: var(--text-muted); }
        .compare-list li::before { content: '✖'; position: absolute; left: 0; color: var(--danger); font-weight: bold; }
        .good .compare-list li::before { content: '✔'; color: var(--success); }
        .good .compare-list li { color: var(--text-light); font-weight: 500; }

        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
        .tech-card { background: var(--bg-main); padding: 30px; border: var(--border-tech); border-radius: 8px; }
        .tech-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: #fff; }
        .tech-card p { color: var(--text-muted); font-size: 0.95rem; }

        .content-lead { color: var(--text-muted); font-size: 1.08rem; line-height: 1.8; margin-bottom: 30px; }
        .content-lead strong { color: var(--text-light); }
        .method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
        .method-card { background: var(--bg-main); padding: 25px; border: var(--border-tech); border-radius: 8px; text-align: left; }
        .method-number { color: var(--primary); font-size: 0.85rem; font-weight: 900; letter-spacing: 0.12em; margin-bottom: 12px; }
        .method-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
        .method-card p { color: var(--text-muted); font-size: 0.94rem; margin: 0; }
        .formula-box { margin-top: 24px; padding: 22px; background: rgba(157, 0, 255, 0.08); border-left: 3px solid var(--primary); border-radius: 0 8px 8px 0; color: var(--text-muted); }
        .formula-box strong { color: #fff; }
        .formula { display: block; margin: 10px 0; color: var(--primary); font-size: 1.15rem; font-weight: 900; }

        .stats-intro { color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
        #vysledky .container { display: grid; grid-template-columns: minmax(0, 460px) minmax(0, 1fr); column-gap: 32px; }
        #vysledky .section-header { min-width: 0; padding-right: 0; }
        #vysledky .section-content-wrapper { min-width: 0; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-bottom: 24px; }
        .stat-card { background: var(--bg-main); border: var(--border-tech); border-radius: 8px; padding: 22px 16px; text-align: center; }
        .method-card,
        .tech-card,
        .stat-card,
        .term-box,
        .faq-item {
            position: relative;
            transition:
                transform 0.35s var(--motion-standard),
                border-color 0.35s ease,
                box-shadow 0.35s ease,
                background-color 0.35s ease;
        }
        .method-card::before,
        .tech-card::before,
        .stat-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 16%;
            right: 16%;
            height: 1px;
            opacity: 0;
            background: linear-gradient(90deg, transparent, #d38bff, transparent);
            transition: opacity 0.35s ease, left 0.35s var(--motion-standard), right 0.35s var(--motion-standard);
        }
        .method-card:hover,
        .tech-card:hover,
        .stat-card:hover,
        .term-box:hover,
        .faq-item:hover {
            transform: translateY(-4px);
            border-color: rgba(157,0,255,0.5);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2), 0 0 26px var(--surface-glow);
        }
        .method-card:hover::before,
        .tech-card:hover::before,
        .stat-card:hover::before {
            left: 5%;
            right: 5%;
            opacity: 1;
        }
        .stat-value { display: block; color: #fff; font-size: 1.8rem; font-weight: 900; }
        .stat-value.is-counting { text-shadow: 0 0 22px rgba(157,0,255,0.52); }
        .stat-value.positive { color: var(--success); }
        .stat-value.negative { color: var(--danger); }
        .stat-value.is-loading, .skeleton-line {
            color: transparent;
            border-radius: 5px;
            background: linear-gradient(90deg, rgba(255,255,255,0.06) 25%, rgba(255,255,255,0.16) 50%, rgba(255,255,255,0.06) 75%);
            background-size: 200% 100%;
            animation: skeleton-pulse 1.4s ease-in-out infinite;
        }
        .stat-value.is-loading { width: 72px; min-height: 34px; margin: 0 auto; }
        .skeleton-line { display: block; height: 14px; min-width: 70px; }
        .skeleton-line.wide { min-width: 170px; }
        @keyframes skeleton-pulse { from { background-position: 200% 0; } to { background-position: -200% 0; } }
        .stat-label { display: block; color: var(--text-muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 7px; }
        .results-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; color: var(--text-muted); font-size: 0.82rem; margin-bottom: 10px; }
        .results-meta > strong, .data-status { white-space: nowrap; }
        .data-status { display: inline-flex; align-items: flex-start; justify-content: flex-end; gap: 10px; text-align: right; }
        .data-status-dot { width: 6px; height: 6px; margin-top: 0.55em; background: #8c96a3; box-shadow: none; }
        .data-status.is-loading .data-status-dot { background: var(--primary); animation: status-pulse 1.4s ease-in-out infinite; }
        .data-status.is-fresh .data-status-dot { background: var(--success); animation: status-pulse 2.2s ease-in-out 3; }
        .data-status.is-error .data-status-dot { background: var(--danger); }
        .results-table-wrap { overflow-x: auto; border: var(--border-tech); border-radius: 8px; }
        .results-table { width: 100%; border-collapse: collapse; min-width: 0; text-align: left; }
        .results-table th, .results-table td { padding: 14px; border-bottom: 1px solid rgba(255,255,255,0.07); vertical-align: top; }
        .results-table th { color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; background: rgba(255,255,255,0.03); }
        .results-table td { color: #fff; font-size: 0.9rem; }
        .results-table tbody tr:last-child td { border-bottom: 0; }
        .results-table tbody tr { transition: background-color 0.25s ease; }
        .results-table tbody tr:hover { background: rgba(157,0,255,0.06); }
        .results-table tbody tr.result-row-enter {
            opacity: 0;
        }
        #vysledky.results-visible .results-table tbody tr.result-row-enter {
            animation: result-enter 0.55s var(--motion-standard) forwards;
            animation-delay: var(--row-delay, 0ms);
        }
        .results-table th:last-child, .results-table td:last-child { width: 1%; white-space: nowrap; }
        .result-status { display: inline-flex; min-width: 42px; justify-content: center; padding: 4px 8px; border-radius: 999px; font-weight: 900; font-size: 0.76rem; }
        .result-status.ok { color: #062b17; background: var(--success); }
        .result-status.ko { color: #fff; background: var(--danger); }
        .result-status.void { color: #16202b; background: #aab4c0; }
        .ticket-link { display: inline-flex; align-items: center; gap: 5px; color: #fff; font-weight: 700; text-decoration: none; white-space: nowrap; }
        .ticket-link:hover { color: var(--primary); text-decoration: underline; }
        .results-empty { color: var(--text-muted); text-align: center; padding: 30px !important; }
        .results-note { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; margin-top: 14px; }

        .timeline-steps { position: relative; text-align: left; }
        .timeline-step {
            position: relative;
            padding-left: 60px;
            margin-bottom: 40px;
        }
        .timeline-step:not(:last-child)::before,
        .timeline-step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 19px;
            top: 52px;
            bottom: -28px;
            width: 2px;
            border-radius: 999px;
            pointer-events: none;
            z-index: 0;
        }
        .timeline-step:not(:last-child)::before {
            background: rgba(157, 0, 255, 0.2);
        }
        .timeline-step:not(:last-child)::after {
            background: linear-gradient(to bottom, #d38bff, var(--primary), rgba(157,0,255,0.15));
            box-shadow: 0 0 14px rgba(157,0,255,0.4);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.8s var(--motion-emphasized);
            transition-delay: calc(var(--reveal-delay, 0ms) + 140ms);
        }
        .timeline-steps.is-visible .timeline-step:not(:last-child)::after { transform: scaleY(1); }
        .step-marker {
            position: absolute;
            left: 0;
            top: 0;
            width: 40px;
            height: 40px;
            background: var(--bg-main);
            border: 2px solid var(--primary);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            z-index: 2;
            border-radius: 50%;
            box-shadow: 0 0 0 4px var(--bg-secondary);
            transition: color 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
        }
        .timeline-step.active .step-marker {
            color: #fff;
            background: var(--primary);
            box-shadow: 0 0 0 4px var(--bg-secondary), 0 0 22px rgba(157,0,255,0.38);
        }
        .step-content { position: relative; z-index: 1; }
        .step-content h3 { font-size: 1.15rem; color: #fff; margin-bottom: 7px; }
        .step-example { margin-top: 8px; padding: 12px 14px; color: var(--text-muted); background: rgba(255,255,255,0.03); border-radius: 6px; font-size: 0.9rem; }
        
        .glossary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; text-align: left; }
        .term-box { background: rgba(255,255,255,0.03); padding: 20px; border-left: 3px solid var(--primary); border-radius: 0 8px 8px 0; }
        .term-box strong { color: var(--primary); display: block; margin-bottom: 5px; font-size: 1.1rem; }
        .term-box p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
        .faq-list { display: grid; gap: 12px; }
        .faq-item { background: var(--bg-main); border: var(--border-tech); border-radius: 8px; text-align: left; }
        .faq-item.faq-enhanced { overflow: hidden; }
        .faq-item summary {
            cursor: pointer;
            color: #fff;
            font-weight: 700;
            padding: 20px 52px 20px 20px;
            position: relative;
            list-style: none;
            transition: color 0.3s ease, background-color 0.3s ease;
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 15px;
            color: var(--primary);
            font-size: 1.7rem;
            line-height: 1;
            transform-origin: center;
            transition: transform 0.32s var(--motion-standard), color 0.3s ease;
        }
        .faq-item:not(.faq-enhanced)[open] summary::after,
        .faq-item.faq-enhanced.is-expanded summary::after { transform: rotate(45deg); }
        .faq-item.faq-enhanced.is-expanded summary { color: #fff; background: rgba(157,0,255,0.045); }
        .faq-item.faq-enhanced .faq-answer {
            display: grid;
            grid-template-rows: 0fr;
            opacity: 0;
            transform: translateY(-5px);
            transition:
                grid-template-rows 0.36s var(--motion-emphasized),
                opacity 0.24s ease,
                transform 0.32s var(--motion-standard);
        }
        .faq-item.faq-enhanced.is-expanded .faq-answer {
            grid-template-rows: 1fr;
            opacity: 1;
            transform: translateY(0);
        }
        .faq-answer-inner { min-height: 0; overflow: hidden; }
        .faq-item p { color: var(--text-muted); line-height: 1.7; padding: 0 20px 20px; margin: 0; }
        .owner::after {content: "Filip Havlíček";}
        .ico::after {content: "099 54 686";}
        .address::after {content: "Uralská 689/7, 160 00 Praha 6";}

        .contact-content { text-align: center; width: 100%; }
        
        footer { background: #000; padding: 40px 0; text-align: center; color: #666; font-size: 0.8rem; border-top: var(--border-tech); }
        .cookie-settings-link { border: 0; padding: 0; background: transparent; color: #fff; font: inherit; cursor: pointer; }
        .cookie-settings-link:hover { text-decoration: underline; }
        .cookie-consent {
            position: fixed;
            left: 18px;
            right: 18px;
            bottom: 18px;
            z-index: 10000;
            max-width: 920px;
            margin: 0 auto;
            padding: 18px;
            color: #fff;
            background: #171717;
            border: 1px solid rgba(157, 0, 255, 0.55);
            border-radius: 10px;
            box-shadow: 0 16px 50px rgba(0,0,0,0.65);
        }
        .cookie-consent[hidden] { display: none; }
        .cookie-consent-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
        .cookie-consent-copy { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; }
        .cookie-consent-copy strong { display: block; margin-bottom: 4px; color: #fff; font-size: 1rem; }
        .cookie-consent-copy a { color: #fff; }
        .cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 0 0 360px; }
        .cookie-choice { min-height: 44px; border: 1px solid var(--primary); border-radius: 5px; background: rgba(157,0,255,0.12); color: #fff; font-weight: 800; cursor: pointer; }
        .cookie-choice:hover { background: rgba(157,0,255,0.28); }

        /* --- MOBILNÍ OPTIMALIZACE (RESPONZIVITA) --- */
        @media (max-width: 1100px) {
            #vysledky .container { grid-template-columns: minmax(0, 1fr); row-gap: 30px; }
            #vysledky .section-header { width: 100%; text-align: center; margin-bottom: 0; }
        }

        @media (max-width: 900px) {
            
            .container {
                flex-direction: column; 
                align-items: stretch; 
            }

            nav .container {
                flex-direction: row; 
                justify-content: space-between;
                align-items: center;
            }

            .hamburger { display: block; }
            
            .nav-links {
                position: fixed; left: -100%; top: 70px; 
                gap: 0; flex-direction: column; height: auto;
                background-color: #0f0f0f; width: 100%; 
                text-align: center;
                visibility: hidden;
                pointer-events: none;
                transition: left 0.3s var(--motion-standard), visibility 0s linear 0.3s;
                border-bottom: 1px solid var(--primary); 
                padding-bottom: 20px; box-shadow: 0 10px 10px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                left: 0;
                visibility: visible;
                pointer-events: auto;
                transition-delay: 0s;
            }
            .nav-links a { margin: 16px 0; display: block; font-size: 1.2rem; }

            section { padding: 50px 0; } 

            .section-header {
                width: 100%;
                text-align: center; 
                margin-bottom: 30px;
                padding-right: 0;
            }

            h2 { font-size: 2.5rem; }
            h2 span { display: inline; } 
            .section-header h2::after {
                margin-left: auto;
                margin-right: auto;
                transform-origin: center;
            }

            .section-content-wrapper {
                width: 100%;
            }

            .hero-content h1 { font-size: 2.8rem; }
            .hero-content p { font-size: 1.1rem; }
            
            .hero-buttons { flex-direction: column; width: 100%; }
            .btn, .btn-outline { width: 100%; display: block; margin-bottom: 10px; }
            .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .results-meta { flex-direction: column; gap: 4px; }
            .data-status { white-space: normal; }
            .cookie-consent-inner { align-items: stretch; flex-direction: column; }
            .cookie-consent-actions { width: 100%; flex-basis: auto; }

            .contact-btn {
                width: 100%;
                padding: 25px;
                font-size: 1.2rem;
            }
            
            .social-buttons-container {
                gap: 10px;
            }
            .btn-social {
                flex: 1; 
                padding: 15px 10px;
            }
        }

        @media (max-width: 520px) {
            .stats-grid { grid-template-columns: 1fr; }
            .stat-card { padding: 18px 14px; }
        }

        /* Utility classes replacing former inline presentation attributes. */
        .scroll-cue-icon { fill: none; stroke: rgba(255,255,255,0.5); stroke-width: 2; }
        .muted-copy { color: var(--text-muted); }
        .contact-content { text-align: center; }
        .contact-lead { margin-bottom: 30px; color: var(--text-muted); }
        .site-footer { text-align: center; font-size: 0.8rem; color: #b0b0b0; padding: 20px; border-top: 1px solid #333; margin-top: 40px; }
        .footer-link { color: #fff; text-decoration: none; }
        .footer-warning { font-size: 0.7rem; color: #666; margin-top: 10px; }
        #scrollTopBtn.is-visible { display: flex; }

        /* Keep the consent choice reachable without obscuring the main mobile CTA. */
        @media (max-width: 900px) {
            .cookie-consent {
                top: max(72px, env(safe-area-inset-top));
                bottom: auto;
                left: 8px;
                right: 8px;
                max-height: calc(100dvh - 88px);
                padding: 12px;
                overflow-y: auto;
            }
            .cookie-consent-inner { gap: 10px; }
            .cookie-consent-copy { font-size: 0.78rem; line-height: 1.35; }
            .cookie-consent-copy strong { margin-bottom: 2px; font-size: 0.9rem; }
            .cookie-consent-actions { gap: 8px; }
            .cookie-choice { min-height: 40px; padding: 8px; }
        }

        :focus-visible {
            outline: 3px solid rgba(211,139,255,0.9);
            outline-offset: 4px;
        }

        @media (max-width: 760px) {
            .hero-data-grid {
                bottom: -40%;
                opacity: 0.14;
                animation: none;
            }
            .hero-glow-effect {
                width: 620px;
                height: 620px;
                opacity: 0.58;
            }
            .hero-kicker {
                margin-bottom: 18px;
                font-size: 0.68rem;
                letter-spacing: 0.06em;
            }
            .data-status {
                justify-content: flex-start;
                text-align: left;
            }
            .results-table-wrap {
                overflow: visible;
                border: 0;
                border-radius: 0;
            }
            .results-table {
                display: block;
                width: 100%;
                min-width: 0;
            }
            .results-table thead {
                position: absolute;
                width: 1px;
                height: 1px;
                padding: 0;
                margin: -1px;
                overflow: hidden;
                clip: rect(0, 0, 0, 0);
                clip-path: inset(50%);
                white-space: nowrap;
                border: 0;
            }
            .results-table tbody {
                display: grid;
                gap: 12px;
            }
            .results-table tbody tr {
                display: block;
                overflow: hidden;
                border: var(--border-tech);
                border-radius: 8px;
                background: rgba(255,255,255,0.018);
            }
            .results-table td,
            .results-table tbody tr:last-child td:not(:last-child) {
                display: grid;
                grid-template-columns: minmax(72px, 26%) minmax(0, 1fr);
                gap: 12px;
                width: auto;
                padding: 11px 13px;
                border-bottom: 1px solid rgba(255,255,255,0.07);
                font-size: 0.86rem;
                line-height: 1.45;
                overflow-wrap: anywhere;
            }
            .results-table td::before {
                align-self: start;
                color: var(--text-muted);
                font-size: 0.68rem;
                font-weight: 800;
                letter-spacing: 0.06em;
                line-height: 1.7;
                text-transform: uppercase;
            }
            .results-table td:nth-child(1)::before { content: "Datum"; }
            .results-table td:nth-child(2)::before { content: "Událost"; }
            .results-table td:nth-child(3)::before { content: "Tip"; }
            .results-table td:nth-child(4)::before { content: "Kurz"; }
            .results-table td:nth-child(5)::before { content: "Výsledek"; }
            .results-table td:nth-child(6)::before { content: "Tiket"; }
            .results-table td:last-child {
                width: auto;
                border-bottom: 0;
                white-space: normal;
            }
            .results-table .results-empty {
                display: block;
                padding: 24px 16px !important;
                border-bottom: 0;
            }
            .results-table .results-empty::before { content: none; }
            .results-table td .result-status { justify-self: start; }
            .results-table .ticket-link { white-space: normal; }
        }

        @media (hover: none) {
            .method-card:hover,
            .tech-card:hover,
            .stat-card:hover,
            .term-box:hover,
            .faq-item:hover {
                transform: none;
                box-shadow: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
                transition-delay: 0ms !important;
            }
            .motion-enabled .reveal {
                opacity: 1;
                transform: none;
                will-change: auto;
            }
            .timeline-step:not(:last-child)::after { transform: scaleY(1); }
            .scroll-down-indicator { display: none; }
            .results-table tbody tr.result-row-enter { opacity: 1; }
        }
