        /* ═══════════════════════════════════════════════════════════
           DESIGN TOKENS
        ═══════════════════════════════════════════════════════════ */
        :root {
            --bg-base:       #0a0e17;
            --bg-deep:       #060912;
            --bg-card:       rgba(255, 255, 255, 0.025);
            --bg-elevated:   rgba(255, 255, 255, 0.04);

            --glass-bg:      rgba(255, 255, 255, 0.03);
            --glass-border:  rgba(255, 255, 255, 0.08);
            --glass-blur:    blur(20px);

            --text:          #eef2f8;
            --text-soft:     #b8c2d4;
            --text-muted:    #8a96aa;
            --text-dim:      #5a6478;

            --accent:        #4f98a3;
            --accent-light:  #6dd5e0;
            --accent-soft:   #88c0e0;
            --accent-glow:   rgba(109, 213, 224, 0.35);
            --accent-bg:     rgba(79, 152, 163, 0.08);
            --accent-border: rgba(109, 213, 224, 0.25);

            --warn:          #f0b86a;
            --danger:        #e87070;

            --border:        rgba(255, 255, 255, 0.08);
            --border-soft:   rgba(255, 255, 255, 0.04);
            --border-strong: rgba(255, 255, 255, 0.14);

            --font-body:     'Lexend', system-ui, -apple-system, sans-serif;

            --max-w:         1280px;
            --gutter:        clamp(1.25rem, 5vw, 4rem);
            --section-py:    clamp(5rem, 10vw, 9rem);

            --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: var(--font-body);
            background: var(--bg-base);
            color: var(--text);
            line-height: 1.65;
            font-weight: 300;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: relative;
        }

        ::selection { background: var(--accent-light); color: var(--bg-base); }

        /* ═══════════════════════════════════════════════════════════
           BACKGROUND AMBIENT
        ═══════════════════════════════════════════════════════════ */
        .bg-glow {
            position: fixed; inset: 0; z-index: -3; pointer-events: none;
            background:
                radial-gradient(ellipse 80% 60% at 12% 8%,  rgba(79, 152, 163, 0.12), transparent 60%),
                radial-gradient(ellipse 60% 50% at 88% 95%, rgba(109, 213, 224, 0.08), transparent 60%),
                radial-gradient(circle at 50% 50%,          rgba(136, 192, 224, 0.04), transparent 60%);
        }
        .bg-grid {
            position: fixed; inset: 0; z-index: -2; pointer-events: none;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, #000 30%, transparent 90%);
            -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, #000 30%, transparent 90%);
        }
        .bg-noise {
            position: fixed; inset: 0; z-index: -1; pointer-events: none;
            opacity: 0.025;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }

        /* ═══════════════════════════════════════════════════════════
           TYPOGRAPHY
        ═══════════════════════════════════════════════════════════ */
        h1, h2, h3, h4 {
            font-family: var(--font-body);
            letter-spacing: -0.025em;
            line-height: 1.05;
            color: var(--text);
        }
        h1 { font-size: clamp(3rem, 9vw, 8.5rem); font-weight: 900; line-height: 0.92; letter-spacing: -0.045em; }
        h2 { font-size: clamp(2.1rem, 6.4vw, 5.6rem); font-weight: 900; line-height: 0.95; letter-spacing: -0.04em; }
        h3 { font-size: clamp(1.4rem, 2vw, 1.65rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
        h4 { font-size: 1.1rem; font-weight: 600; }

        .display-thin {
            font-weight: 200;
            font-style: italic;
            letter-spacing: -0.01em;
            color: var(--text-muted);
        }

        .section-index {
            font-family: var(--font-body);
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 200;
            font-style: italic;
            line-height: 1;
            letter-spacing: -0.02em;
            color: var(--text-dim);
            white-space: nowrap;
        }
        .section-index .num {
            font-weight: 900;
            font-style: normal;
            color: var(--accent-light);
        }

        p { font-size: 1rem; color: var(--text-soft); font-weight: 300; }

        a { color: var(--accent-light); text-decoration: none; transition: color 0.2s; }
        a:hover { color: var(--accent-soft); }

        .grad-text {
            background: linear-gradient(135deg, #6dd5e0 0%, #4f98a3 45%, #88c0e0 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradShift 8s ease-in-out infinite;
        }
        @keyframes gradShift {
            0%, 100% { background-position: 0% 50%; }
            50%      { background-position: 100% 50%; }
        }

        /* ═══════════════════════════════════════════════════════════
           LAYOUT UTILS
        ═══════════════════════════════════════════════════════════ */
        .container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
        .section { padding: var(--section-py) 0; position: relative; }

        .eyebrow {
            display: inline-flex; align-items: center; gap: 0.6rem;
            font-size: 0.78rem; font-weight: 800;
            letter-spacing: 0.12em; text-transform: uppercase;
            color: var(--accent-light);
            padding: 0.5rem 1rem;
            background: var(--accent-bg);
            border: 1px solid var(--accent-border);
            border-radius: 100px;
            margin-bottom: 1.5rem;
        }
        .eyebrow::before {
            content: ''; width: 6px; height: 6px; border-radius: 50%;
            background: var(--accent-light);
            box-shadow: 0 0 8px var(--accent-glow);
        }

        /* ═══════════════════════════════════════════════════════════
           BUTTONS
        ═══════════════════════════════════════════════════════════ */
        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
            font-family: var(--font-body);
            font-size: 0.95rem; font-weight: 600;
            letter-spacing: 0.005em;
            padding: 0.95rem 2rem;
            border-radius: 100px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.25s var(--ease-out);
            white-space: nowrap;
            min-height: 48px;
        }
        .btn-primary {
            background: linear-gradient(135deg, #4f98a3 0%, #6dd5e0 100%);
            color: #0a1418;
            box-shadow: 0 4px 24px rgba(109, 213, 224, 0.25), inset 0 1px 0 rgba(255,255,255,0.25);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(109, 213, 224, 0.45), inset 0 1px 0 rgba(255,255,255,0.35);
            color: #0a1418;
        }
        .btn-secondary {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text);
            border: 1px solid var(--border-strong);
            backdrop-filter: blur(8px);
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent-border);
            color: var(--accent-light);
            transform: translateY(-2px);
        }
        .btn-ghost {
            background: transparent;
            color: var(--text-soft);
            padding: 0.95rem 0.5rem;
        }
        .btn-ghost:hover { color: var(--accent-light); transform: translateX(2px); }
        .btn-arrow { transition: transform 0.2s; }
        .btn:hover .btn-arrow { transform: translateX(3px); }

        /* ═══════════════════════════════════════════════════════════
           NAV
        ═══════════════════════════════════════════════════════════ */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            height: 78px;
            background: rgba(10, 14, 23, 0.7);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s;
        }
        .nav.scrolled {
            background: rgba(10, 14, 23, 0.92);
            border-bottom-color: var(--border-strong);
        }
        .nav-inner {
            max-width: var(--max-w); margin: 0 auto;
            padding: 0 0 0 var(--gutter);
            height: 100%; display: flex; align-items: center; justify-content: space-between;
        }
        .nav-logo {
            display: flex; align-items: center; gap: 0.7rem;
            color: var(--text); text-decoration: none;
            font-weight: 800; font-size: 1.15rem;
            transition: opacity 0.2s;
            letter-spacing: -0.02em;
        }
        .nav-logo:hover { opacity: 0.85; color: var(--text); }
        .nav-logo-mark {
            width: 36px; height: 36px;
            display: flex; align-items: center; justify-content: center;
            background: linear-gradient(135deg, #4f98a3, #6dd5e0);
            border-radius: 8px;
            box-shadow: 0 2px 14px rgba(109, 213, 224, 0.35);
            flex-shrink: 0;
        }
        .nav-logo-mark svg {
            width: 21px; height: 21px;
            fill: #0a0e17;
            display: block;
        }
        .nav-logo-text .dot { color: var(--accent-light); }

        .nav-center {
            height: 100%;
            display: flex;
            align-items: stretch;
            flex: 1;
            justify-content: center;
            margin: 0 1.5rem;
        }
        .nav-links {
            display: flex;
            height: 100%;
            align-items: stretch;
            border-left: 1px solid var(--border);
        }
        .nav-links a {
            color: var(--text);
            font-size: 0.88rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0 1.6rem;
            height: 100%;
            display: flex; align-items: center;
            border-right: 1px solid var(--border);
            transition: all 0.22s var(--ease-out);
            box-shadow: inset 0 0 0 0 var(--accent-light);
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-light);
            background: rgba(109, 213, 224, 0.08);
            box-shadow: inset 0 -3px 0 var(--accent-light);
        }

        .nav-cta-wrap {
            height: 100%;
            display: flex; align-items: center;
            padding-right: var(--gutter);
            padding-left: 1.5rem;
        }
        .nav-cta { padding: 0.65rem 1.5rem; font-size: 0.85rem; min-height: 42px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 800; }

        .nav-hamburger {
            display: none;
            flex-direction: column; justify-content: center; align-items: center; gap: 5px;
            background: rgba(255,255,255,0.04); border: 1px solid var(--border);
            border-radius: 10px;
            width: 44px; height: 44px;
            cursor: pointer;
            transition: all 0.2s;
            margin-right: 0;
        }
        .nav-hamburger:hover { background: rgba(255,255,255,0.08); }
        .nav-hamburger span {
            display: block; width: 18px; height: 1.5px; background: var(--text);
            transition: all 0.3s var(--ease-out);
        }
        .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
        .nav-hamburger.open span:nth-child(2) { opacity: 0; }
        .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

        .mobile-menu {
            position: fixed; top: 78px; left: 0; right: 0;
            background: rgba(10, 14, 23, 0.96);
            backdrop-filter: var(--glass-blur);
            border-bottom: 1px solid var(--border);
            padding: 1.5rem var(--gutter) 2rem;
            transform: translateY(-110%); opacity: 0; pointer-events: none;
            transition: all 0.35s var(--ease-out);
            z-index: 99;
            display: flex; flex-direction: column; gap: 0;
        }
        .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
        .mobile-menu a {
            color: var(--text-soft);
            font-size: 1rem; font-weight: 500;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-soft);
            transition: color 0.2s;
        }
        .mobile-menu a:hover,
        .mobile-menu a.active { color: var(--accent-light); }
        .mobile-menu .btn { margin-top: 1.5rem; align-self: flex-start; }

        @media (max-width: 1024px) {
            .nav-center { display: none; }
            .nav-cta-wrap { display: none; }
            .nav-hamburger { display: flex; }
            .nav-inner { padding: 0 var(--gutter); }
        }

        /* ═══════════════════════════════════════════════════════════
           HERO
        ═══════════════════════════════════════════════════════════ */
        .hero {
            position: relative;
            padding-top: calc(78px + clamp(3.5rem, 9vw, 7rem));
            padding-bottom: clamp(4rem, 9vw, 7rem);
            overflow: hidden;
        }
        .hero-glow {
            position: absolute; top: 10%; left: -15%; width: 60%; height: 80%;
            background: radial-gradient(ellipse at center, rgba(79, 152, 163, 0.18), transparent 60%);
            pointer-events: none; z-index: 0;
            filter: blur(60px);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: clamp(3rem, 6vw, 6rem);
            align-items: center;
        }

        .hero h1 {
            margin-bottom: 1.75rem;
            display: block;
        }
        /* Prelude — tenký podtitulek nad hlavním titulkem */
        .hero h1 .h1-prelude .mask-inner {
            display: block;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 200;
            font-style: italic;
            color: var(--text-muted);
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 0.4rem;
        }
        /* Hlavní brutal titulek */
        .hero h1 .h1-main .mask-inner {
            display: block;
            font-size: clamp(2.3rem, 7vw, 6.7rem);
            font-weight: 900;
            line-height: 0.92;
            letter-spacing: -0.045em;
            color: var(--text);
        }

        /* mask reveal */
        .mask-line {
            display: block; overflow: hidden;
            padding-bottom: 0.08em; margin-bottom: -0.08em;
        }
        .mask-inner {
            display: block;
            transform: translateY(110%);
            opacity: 0;
            animation: maskReveal 1.1s var(--ease-out) forwards;
        }
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        @keyframes maskReveal {
            0%   { transform: translateY(110%); opacity: 0; }
            100% { transform: translateY(0);    opacity: 1; }
        }

        .fade-in { opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s var(--ease-out) forwards; }
        .delay-4 { animation-delay: 0.85s; }
        .delay-5 { animation-delay: 1.05s; }
        .delay-6 { animation-delay: 1.25s; }
        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-sub {
            font-size: clamp(1.05rem, 1.4vw, 1.2rem);
            color: var(--text-soft);
            font-weight: 300;
            line-height: 1.65;
            max-width: 54ch;
            margin-bottom: 2.5rem;
        }
        .hero-actions {
            display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem;
        }
        .hero-microcopy {
            font-size: 0.85rem;
            color: var(--text-dim);
            font-weight: 400;
            letter-spacing: 0.01em;
            display: flex; align-items: center; gap: 0.6rem;
        }
        .hero-microcopy::before {
            content: ''; width: 18px; height: 1px; background: var(--text-dim);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            margin-top: 3.5rem;
            padding-top: 2.5rem;
            border-top: 1px solid var(--border);
        }
        .stat-item {
            padding-right: 1.5rem;
        }
        .stat-item + .stat-item { padding-left: 1.5rem; border-left: 1px solid var(--border-soft); }
        .stat-num {
            font-size: clamp(2.5rem, 4.5vw, 3.5rem);
            font-weight: 900;
            line-height: 0.9;
            letter-spacing: -0.045em;
            display: block;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #6dd5e0 0%, #4f98a3 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-label {
            font-size: 0.78rem;
            color: var(--text-muted);
            font-weight: 400;
            letter-spacing: 0.02em;
            line-height: 1.4;
            display: block;
            font-style: italic;
        }

        /* Hero visual: glass card s process timeline */
        .hero-visual {
            position: relative;
            opacity: 0;
            animation: fadeUp 1s var(--ease-out) 0.7s forwards;
        }
        .hero-visual-glow {
            position: absolute; inset: -20px;
            background: radial-gradient(ellipse at center, rgba(109, 213, 224, 0.15), transparent 60%);
            filter: blur(40px); z-index: 0; pointer-events: none;
        }
        .process-card {
            position: relative; z-index: 1;
            background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border-strong);
            border-radius: 20px;
            padding: clamp(1.5rem, 3vw, 2.25rem);
            box-shadow:
                0 30px 60px -20px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255,255,255,0.08);
        }
        .process-card::before {
            content: ''; position: absolute; top: -1px; left: 10%; right: 10%; height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
            opacity: 0.7;
        }
        .pc-header {
            display: flex; justify-content: space-between; align-items: center;
            padding-bottom: 1.25rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-soft);
        }
        .pc-label {
            font-size: 0.7rem; font-weight: 600;
            letter-spacing: 0.14em; text-transform: uppercase;
            color: var(--text-muted);
            display: flex; align-items: center; gap: 0.5rem;
        }
        .pc-label::before {
            content: ''; width: 6px; height: 6px; border-radius: 50%;
            background: var(--accent-light);
            box-shadow: 0 0 8px var(--accent-glow);
            animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50%      { opacity: 0.5; transform: scale(0.85); }
        }
        .pc-badge {
            display: inline-flex; align-items: center; gap: 0.4rem;
            font-size: 0.8rem; font-weight: 700;
            color: var(--accent-light);
            background: var(--accent-bg);
            border: 1px solid var(--accent-border);
            padding: 0.3rem 0.8rem;
            border-radius: 100px;
        }
        .pc-step {
            display: grid;
            grid-template-columns: 4.8rem 1fr auto;
            gap: 0.45rem 0.85rem;
            align-items: center;
            padding: 0.85rem 0;
        }
        .pc-step + .pc-step { border-top: 1px solid var(--border-soft); }
        .pc-step-days {
            font-size: 0.72rem; font-weight: 700;
            color: var(--text-dim);
            letter-spacing: 0.06em; text-transform: uppercase;
        }
        .pc-step-name {
            font-size: 0.92rem; font-weight: 500;
            color: var(--text);
        }
        .pc-step-progress {
            grid-column: 1 / -1;
            height: 3px;
            background: rgba(255,255,255,0.05);
            border-radius: 2px;
            overflow: hidden;
            position: relative;
            margin-top: 0.5rem;
        }
        .pc-step-progress span {
            display: block; height: 100%;
            background: linear-gradient(90deg, #4f98a3, #6dd5e0);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--accent-glow);
        }
        .pc-step.ongoing .pc-step-progress span {
            background: repeating-linear-gradient(
                90deg,
                #6dd5e0 0, #6dd5e0 4px,
                transparent 4px, transparent 8px
            );
            opacity: 0.6;
            animation: slideStripes 1.5s linear infinite;
        }
        @keyframes slideStripes {
            from { background-position: 0 0; }
            to   { background-position: 8px 0; }
        }
        .pc-step-status {
            display: inline-flex; align-items: center; gap: 0.35rem;
            font-size: 0.7rem; font-weight: 700;
            letter-spacing: 0.06em; text-transform: uppercase;
            padding: 0.25rem 0.6rem;
            border-radius: 100px;
            white-space: nowrap;
        }
        .pc-step-status.done {
            color: var(--accent-light);
            background: var(--accent-bg);
            border: 1px solid var(--accent-border);
        }
        .pc-step-status.done::before {
            content: '';
            display: block;
            width: 12px; height: 12px;
            background: linear-gradient(135deg, #4f98a3, #6dd5e0);
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>");
            -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>");
            mask-size: contain;
            -webkit-mask-size: contain;
            mask-repeat: no-repeat;
            -webkit-mask-repeat: no-repeat;
        }
        .pc-step-status.running {
            color: var(--warn);
            background: rgba(240, 184, 106, 0.08);
            border: 1px solid rgba(240, 184, 106, 0.3);
        }
        .pc-step-status.running::before {
            content: '';
            display: block;
            width: 7px; height: 7px;
            border-radius: 50%;
            background: var(--warn);
            box-shadow: 0 0 8px rgba(240, 184, 106, 0.6);
            animation: pulse 1.4s ease-in-out infinite;
        }
        .pc-step-status.live {
            color: #6dd5e0;
            background: rgba(109, 213, 224, 0.08);
            border: 1px solid var(--accent-border);
        }
        .pc-step-status.live::before {
            content: '';
            display: block;
            width: 7px; height: 7px;
            border-radius: 50%;
            background: var(--accent-light);
            box-shadow: 0 0 10px var(--accent-glow);
            animation: pulse 2s ease-in-out infinite;
        }
        .pc-footer {
            display: flex; justify-content: space-between; align-items: center;
            margin-top: 1.5rem; padding-top: 1.25rem;
            border-top: 1px solid var(--border-soft);
        }
        .pc-footer-note {
            font-size: 0.78rem; color: var(--text-muted);
        }
        .pc-footer-launch {
            font-size: 0.78rem; font-weight: 700;
            color: var(--accent-light);
            display: inline-flex; align-items: center; gap: 0.4rem;
        }
        .pc-footer-launch::before {
            content: '↗';
            font-size: 1rem;
        }

        @media (max-width: 900px) {
            .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
            .hero-visual { max-width: 540px; order: 2; }
            .hero-stats { margin-top: 2.5rem; padding-top: 2rem; }
        }
        @media (max-width: 520px) {
            .hero-stats { grid-template-columns: 1fr; gap: 1.5rem; }
            .stat-item, .stat-item + .stat-item { padding: 0; border: none; }
        }

        /* ═══════════════════════════════════════════════════════════
           SECTION HEADERS (shared)
        ═══════════════════════════════════════════════════════════ */
        .section-head {
            margin-bottom: clamp(3rem, 5vw, 4.5rem);
            max-width: 880px;
        }
        .section-head h2 { margin-bottom: 1.5rem; }
        .section-head p {
            font-size: clamp(1.05rem, 1.3vw, 1.2rem);
            color: var(--text-soft);
            font-weight: 300;
            line-height: 1.6;
            max-width: 60ch;
        }
        .section-head-row {
            display: flex; align-items: baseline; gap: 1.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        .section-head-num {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: var(--accent-light);
            font-variant-numeric: tabular-nums;
        }

        /* ═══════════════════════════════════════════════════════════
           PROČ JINAK — rozdíl mezi odborníkem a začátečníkem
        ═══════════════════════════════════════════════════════════ */
        .proc-jinak-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
            margin-top: clamp(2rem, 4vw, 3rem);
        }
        .proc-jinak-card {
            position: relative;
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: clamp(1.75rem, 3vw, 2.5rem);
            transition: all 0.35s var(--ease-out);
            display: flex; flex-direction: column;
            overflow: hidden;
        }
        .proc-jinak-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s var(--ease-out);
        }
        .proc-jinak-card:hover {
            border-color: var(--accent-border);
            background: rgba(255, 255, 255, 0.035);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -20px rgba(109, 213, 224, 0.25);
        }
        .proc-jinak-card:hover::before { transform: scaleX(1); }
        .proc-jinak-num {
            font-size: clamp(2.75rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 0.85;
            letter-spacing: -0.05em;
            margin-bottom: 1.25rem;
            background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 60%, var(--accent-soft) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.85;
        }
        .proc-jinak-card h3 {
            font-size: clamp(1.15rem, 1.8vw, 1.35rem);
            font-weight: 900;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            color: var(--text);
        }
        .proc-jinak-card p {
            font-size: 0.98rem;
            line-height: 1.55;
            color: var(--text-soft);
            margin: 0;
        }
        .proc-jinak-card p strong {
            color: var(--accent-light);
            font-weight: 700;
        }
        .proc-jinak-cta {
            margin-top: clamp(2rem, 4vw, 3rem);
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-soft);
        }
        .proc-jinak-cta-note {
            font-size: 0.95rem;
            color: var(--text-soft);
            margin-bottom: 1.25rem;
        }
        @media (max-width: 880px) {
            .proc-jinak-grid { grid-template-columns: 1fr; }
        }

        /* ═══════════════════════════════════════════════════════════
           FIT (Pro koho)
        ═══════════════════════════════════════════════════════════ */
        .fit-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        /* Light variant — kontrastní karty na krémovém pozadí */
        .light-section .fit-card {
            background: #fff;
            border: 1.5px solid rgba(10, 14, 23, 0.12);
            border-radius: 20px;
            padding: clamp(2rem, 3.5vw, 3rem);
            position: relative;
        }
        .light-section .fit-card.yes {
            background: #0a0e17;
            border-color: #0a0e17;
            color: #f2ebdf;
        }
        .light-section .fit-card.yes h3 { color: #f2ebdf; }
        .light-section .fit-card.yes .fit-list li { color: rgba(242, 235, 223, 0.8); }
        .light-section .fit-card.no h3 { color: #0a0e17; }
        .light-section .fit-card.no .fit-list li { color: rgba(10, 14, 23, 0.62); }
        .light-section .fit-card.no .fit-list li a { color: #0a0e17; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

        .fit-card-icon {
            width: 48px; height: 48px;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.75rem;
        }
        .light-section .fit-card.yes .fit-card-icon {
            background: linear-gradient(135deg, #4f98a3, #6dd5e0);
            color: #0a1418;
            box-shadow: 0 4px 16px rgba(109, 213, 224, 0.45);
        }
        .light-section .fit-card.no .fit-card-icon {
            background: rgba(10, 14, 23, 0.06);
            color: #0a0e17;
            border: 1.5px solid rgba(10, 14, 23, 0.12);
        }
        .fit-card h3 {
            font-size: clamp(1.3rem, 2.2vw, 1.6rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }
        .fit-list {
            list-style: none;
            display: flex; flex-direction: column; gap: 1rem;
        }
        .fit-list li {
            font-size: 0.98rem;
            font-weight: 400;
            line-height: 1.55;
            display: flex; gap: 0.7rem; align-items: flex-start;
        }
        .fit-list li svg { flex-shrink: 0; margin-top: 0.3rem; }

        @media (max-width: 720px) {
            .fit-grid { grid-template-columns: 1fr; }
        }

        /* ═══════════════════════════════════════════════════════════
           COMPARE (Problém vs řešení)
        ═══════════════════════════════════════════════════════════ */
        .compare-wrap {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            overflow: hidden;
            position: relative;
        }
        .compare-wrap::before {
            content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px;
            background: var(--border);
        }
        .compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }
        .compare-col {
            padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
            position: relative;
        }
        .compare-col.solution {
            background: linear-gradient(180deg, rgba(79, 152, 163, 0.05) 0%, rgba(79, 152, 163, 0.02) 100%);
        }
        .compare-head {
            display: flex; align-items: center; gap: 0.85rem;
            margin-bottom: 2rem;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid var(--border-soft);
        }
        .compare-head-dot {
            width: 10px; height: 10px; border-radius: 50%;
        }
        .compare-col.problem .compare-head-dot { background: var(--danger); box-shadow: 0 0 12px rgba(232, 112, 112, 0.4); }
        .compare-col.solution .compare-head-dot { background: var(--accent-light); box-shadow: 0 0 12px var(--accent-glow); }
        .compare-head-label {
            font-size: 0.92rem; font-weight: 900;
            letter-spacing: 0.12em; text-transform: uppercase;
        }
        .compare-col.problem .compare-head-label { color: var(--danger); }
        .compare-col.solution .compare-head-label { color: var(--accent-light); }
        .compare-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
        .compare-list li {
            font-size: 1.02rem;
            font-weight: 500;
            line-height: 1.5;
            color: var(--text);
            display: flex; gap: 0.85rem; align-items: flex-start;
        }
        .compare-list li svg { flex-shrink: 0; margin-top: 0.3rem; }
        .compare-col.problem .compare-list li { color: var(--text-soft); }
        .compare-col.problem .compare-list li svg { color: var(--danger); }
        .compare-col.solution .compare-list li svg { color: var(--accent-light); }

        @media (max-width: 720px) {
            .compare-wrap::before { left: 0; right: 0; top: 50%; bottom: auto; height: 1px; width: auto; }
            .compare-grid { grid-template-columns: 1fr; }
        }

        /* ═══════════════════════════════════════════════════════════
           SERVICES (3 karty s velkými čísly)
        ═══════════════════════════════════════════════════════════ */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        /* Light variant — brutalism cards (1. & 3. white, 2. black) */
        .light-section .service-card {
            position: relative;
            background: #fff;
            border: 1.5px solid rgba(10, 14, 23, 0.12);
            border-radius: 24px;
            padding: clamp(2rem, 3.5vw, 3rem);
            transition: all 0.35s var(--ease-out);
            display: flex; flex-direction: column;
            overflow: hidden;
            color: #0a0e17;
        }
        .light-section .service-card.dark {
            background: #0a0e17;
            border-color: #0a0e17;
            color: #f2ebdf;
        }
        .light-section .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 60px -25px rgba(10, 14, 23, 0.25);
        }
        .light-section .service-card.dark:hover {
            box-shadow: 0 30px 60px -20px rgba(109, 213, 224, 0.35);
        }

        .service-num {
            font-size: clamp(4rem, 8vw, 7rem);
            font-weight: 900;
            line-height: 0.85;
            letter-spacing: -0.05em;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #2a7986 0%, #4f98a3 50%, #1a5a6a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .light-section .service-card.dark .service-num {
            background: linear-gradient(135deg, #6dd5e0 0%, #4f98a3 60%, #88c0e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .light-section .service-card h3 {
            font-size: clamp(1.4rem, 2.5vw, 1.9rem);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -0.025em;
            margin-bottom: 1.25rem;
            color: inherit;
        }
        .light-section .service-card p {
            font-size: 1rem;
            color: rgba(10, 14, 23, 0.65);
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 2rem;
            flex-grow: 1;
        }
        .light-section .service-card.dark p { color: rgba(242, 235, 223, 0.7); }

        .service-price {
            padding-top: 1.5rem;
            border-top: 1.5px solid rgba(10, 14, 23, 0.12);
            display: flex; align-items: baseline; justify-content: space-between;
        }
        .light-section .service-card.dark .service-price { border-top-color: rgba(242, 235, 223, 0.15); }
        .service-price-from {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            opacity: 0.55;
        }
        .service-price-amount {
            font-size: clamp(1.3rem, 1.8vw, 1.55rem);
            font-weight: 900;
            letter-spacing: -0.02em;
        }
        .service-price-amount .unit {
            font-size: 0.85rem;
            font-weight: 400;
            opacity: 0.6;
        }

        @media (max-width: 920px) {
            .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
        }

        /* ═══════════════════════════════════════════════════════════
           EU AI ACT (prominent banner)
        ═══════════════════════════════════════════════════════════ */
        .aiact-section {
            position: relative;
            padding: clamp(4rem, 8vw, 7rem) 0;
            overflow: hidden;
        }
        .aiact-glow {
            position: absolute; top: 30%; right: -10%; width: 50%; height: 60%;
            background: radial-gradient(ellipse at center, rgba(240, 184, 106, 0.12), transparent 60%);
            filter: blur(60px); pointer-events: none; z-index: 0;
        }
        .aiact-card {
            position: relative; z-index: 1;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(79, 152, 163, 0.04) 100%);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border-strong);
            border-radius: 28px;
            padding: clamp(2.5rem, 5vw, 4rem);
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: clamp(2.5rem, 5vw, 5rem);
            align-items: center;
            overflow: hidden;
        }
        .aiact-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, var(--warn), var(--accent-light), transparent);
            opacity: 0.6;
        }
        .aiact-eyebrow {
            display: inline-flex; align-items: center; gap: 0.6rem;
            font-size: 0.75rem; font-weight: 700;
            letter-spacing: 0.14em; text-transform: uppercase;
            color: var(--warn);
            background: rgba(240, 184, 106, 0.08);
            border: 1px solid rgba(240, 184, 106, 0.25);
            padding: 0.4rem 0.9rem;
            border-radius: 100px;
            margin-bottom: 1.5rem;
        }
        .aiact-eyebrow::before {
            content: ''; width: 6px; height: 6px; border-radius: 50%;
            background: var(--warn);
            box-shadow: 0 0 8px rgba(240, 184, 106, 0.5);
            animation: pulse 2s ease-in-out infinite;
        }
        .aiact-card h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 1.25rem;
            line-height: 1.1;
        }
        .aiact-body {
            font-size: 1rem;
            color: var(--text-soft);
            font-weight: 300;
            line-height: 1.65;
            margin-bottom: 2rem;
        }
        .aiact-pills {
            display: flex; flex-direction: column; gap: 0.85rem;
            margin-bottom: 1.75rem;
        }
        .aiact-pill {
            display: flex; gap: 1rem; align-items: flex-start;
        }
        .aiact-pill-tag {
            min-width: 7rem;
            font-size: 0.7rem; font-weight: 700;
            letter-spacing: 0.1em; text-transform: uppercase;
            color: var(--accent-light);
            padding: 0.35rem 0.7rem;
            background: var(--accent-bg);
            border: 1px solid var(--accent-border);
            border-radius: 100px;
            text-align: center;
        }
        .aiact-pill-text {
            font-size: 0.95rem;
            color: var(--text-soft);
            font-weight: 300;
            line-height: 1.5;
            padding-top: 0.2rem;
        }
        .aiact-note {
            font-size: 0.85rem; color: var(--text-muted); font-weight: 300; line-height: 1.5;
        }
        .aiact-note a {
            color: var(--accent-light);
            font-weight: 500;
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-thickness: 1px;
        }

        /* Countdown widget */
        .countdown {
            background: rgba(0, 0, 0, 0.25);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: clamp(1.75rem, 3vw, 2.5rem);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .countdown::before {
            content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
            background: linear-gradient(90deg, transparent, var(--warn), transparent);
            opacity: 0.6;
        }
        .countdown-label {
            font-size: 0.7rem; font-weight: 700;
            letter-spacing: 0.14em; text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }
        .countdown-date {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, var(--warn) 0%, #ff9970 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        .countdown-sub {
            font-size: 0.85rem; color: var(--text-muted);
            font-weight: 400;
        }
        .countdown-stats {
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
            margin-top: 1.5rem; padding-top: 1.5rem;
            border-top: 1px solid var(--border-soft);
        }
        .countdown-stat-num {
            font-size: 1.3rem; font-weight: 700;
            color: var(--text);
            letter-spacing: -0.02em;
            display: block;
        }
        .countdown-stat-label {
            font-size: 0.7rem; color: var(--text-muted);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-weight: 500;
        }

        @media (max-width: 820px) {
            .aiact-card { grid-template-columns: 1fr; }
        }

        /* ═══════════════════════════════════════════════════════════
           PORTFOLIO
        ═══════════════════════════════════════════════════════════ */
        /* ═══════════════════════════════════════════════════════════
           LIGHT SECTIONS — shared (Pro koho, Služby, Portfolio)
        ═══════════════════════════════════════════════════════════ */
        .light-section {
            background: #f2ebdf;
            color: #0a0e17;
            position: relative;
            padding: clamp(5rem, 10vw, 9rem) 0;
            overflow: hidden;
            isolation: isolate;
        }
        .light-section::before {
            content: ''; position: absolute; inset: 0; z-index: 0;
            background:
                radial-gradient(circle at 90% 10%, rgba(79, 152, 163, 0.10), transparent 50%),
                radial-gradient(circle at 5% 90%, rgba(10, 14, 23, 0.04), transparent 50%);
            pointer-events: none;
        }
        .light-section > .container { position: relative; z-index: 1; }
        .light-section .eyebrow {
            color: #0a0e17;
            background: rgba(10, 14, 23, 0.05);
            border-color: rgba(10, 14, 23, 0.15);
        }
        .light-section .eyebrow::before {
            background: #0a0e17;
            box-shadow: 0 0 8px rgba(10, 14, 23, 0.3);
        }
        .light-section h2 {
            color: #0a0e17;
            font-size: clamp(2.25rem, 7.1vw, 6.4rem);
            font-weight: 900;
            line-height: 0.93;
            letter-spacing: -0.045em;
        }
        .light-section h2 .grad-text,
        .light-section .grad-text {
            background: linear-gradient(135deg, #2a7986 0%, #4f98a3 50%, #1a5a6a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .light-section .section-head p {
            color: rgba(10, 14, 23, 0.62);
            font-size: clamp(1.05rem, 1.3vw, 1.2rem);
            font-weight: 400;
        }
        .light-section .section-index {
            color: rgba(10, 14, 23, 0.4);
        }
        .light-section .section-index .num {
            color: #0a0e17;
        }

        /* PORTFOLIO — uses .light-section base */
        .portfolio-section {
            background: #f2ebdf;
            color: #0a0e17;
            position: relative;
            padding: clamp(5rem, 10vw, 9rem) 0;
            overflow: hidden;
            isolation: isolate;
        }
        .portfolio-section::before {
            content: ''; position: absolute; inset: 0; z-index: 0;
            background:
                radial-gradient(circle at 90% 10%, rgba(79, 152, 163, 0.10), transparent 50%),
                radial-gradient(circle at 5% 90%, rgba(10, 14, 23, 0.04), transparent 50%);
            pointer-events: none;
        }
        .portfolio-section > .container { position: relative; z-index: 1; }
        .portfolio-section .eyebrow {
            color: #0a0e17;
            background: rgba(10, 14, 23, 0.05);
            border-color: rgba(10, 14, 23, 0.12);
        }
        .portfolio-section .eyebrow::before {
            background: #0a0e17;
            box-shadow: 0 0 8px rgba(10, 14, 23, 0.3);
        }
        .portfolio-section h2 {
            color: #0a0e17;
            font-size: clamp(2.25rem, 7.1vw, 6.4rem);
            font-weight: 900;
            line-height: 0.93;
            letter-spacing: -0.045em;
            margin-bottom: 1.5rem;
        }
        .portfolio-section h2 .grad-text {
            background: linear-gradient(135deg, #2a7986 0%, #4f98a3 50%, #1a5a6a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .portfolio-section .section-head p {
            color: rgba(10, 14, 23, 0.62);
            font-size: 1.15rem;
            font-weight: 400;
        }

        .portfolio-list {
            list-style: none;
            border-top: 2px solid #0a0e17;
            margin-top: 1rem;
        }
        /* List items se táhnou full-bleed pro hover effect */
        .portfolio-list { position: relative; }
        .portfolio-item {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 2rem;
            align-items: center;
            padding: clamp(1.5rem, 3vw, 2.5rem) 0;
            border-bottom: 1px solid rgba(10, 14, 23, 0.14);
            transition: color 0.3s var(--ease-out);
            position: relative;
            text-decoration: none;
            color: inherit;
        }
        /* Pseudo-element extends full-width přes celý viewport (mimo container) */
        .portfolio-item::after {
            content: '';
            position: absolute;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            width: 100vw;
            bottom: -1px;
            height: 0;
            background: #0a0e17;
            transition: height 0.3s var(--ease-out);
            z-index: 0;
        }
        .portfolio-item-inner {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
            gap: clamp(2rem, 6vw, 5rem);
            align-items: baseline;
            position: relative;
            z-index: 1;
            transition: color 0.3s;
        }
        .portfolio-name {
            font-size: clamp(1.6rem, 4.2vw, 3.4rem);
            font-weight: 900;
            color: #0a0e17;
            letter-spacing: -0.035em;
            line-height: 0.95;
            transition: color 0.3s;
            word-break: break-word;
        }
        .portfolio-name .domain {
            color: rgba(10, 14, 23, 0.35);
            font-weight: 500;
            transition: color 0.3s;
        }
        .portfolio-desc {
            font-size: 0.98rem;
            color: rgba(10, 14, 23, 0.65);
            font-weight: 400;
            line-height: 1.55;
            padding-top: 0.5rem;
            transition: color 0.3s;
        }
        .portfolio-arrow {
            width: 56px; height: 56px;
            border-radius: 50%;
            background: transparent;
            border: 1.5px solid #0a0e17;
            display: flex; align-items: center; justify-content: center;
            color: #0a0e17;
            flex-shrink: 0;
            transition: all 0.35s var(--ease-out);
            position: relative; z-index: 1;
        }
        .portfolio-arrow svg { width: 20px; height: 20px; transition: transform 0.3s var(--ease-out); }

        .portfolio-item:hover { color: inherit; }
        .portfolio-item:hover::after { height: 100%; bottom: 0; }
        .portfolio-item:hover .portfolio-name,
        .portfolio-item:hover .portfolio-name .domain,
        .portfolio-item:hover .portfolio-desc { color: #f2ebdf; }
        .portfolio-item:hover .portfolio-arrow {
            background: linear-gradient(135deg, #4f98a3, #6dd5e0);
            border-color: transparent;
            color: #0a0e17;
            transform: rotate(-45deg);
            box-shadow: 0 8px 28px rgba(109, 213, 224, 0.45);
        }

        .portfolio-note {
            margin-top: clamp(2.5rem, 5vw, 4rem);
            font-family: var(--font-body);
            font-size: clamp(1.2rem, 2.2vw, 1.75rem);
            color: #0a0e17;
            font-weight: 500;
            font-style: italic;
            line-height: 1.35;
            letter-spacing: -0.015em;
            max-width: 32ch;
        }
        .portfolio-note strong {
            font-weight: 900;
            font-style: normal;
            background: linear-gradient(135deg, #2a7986 0%, #4f98a3 50%, #1a5a6a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @media (max-width: 960px) {
            .portfolio-item-inner {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
            .portfolio-item { grid-template-columns: 1fr auto; }
            .portfolio-arrow { width: 44px; height: 44px; }
        }

        /* ═══════════════════════════════════════════════════════════
           PROCESS TIMELINE
        ═══════════════════════════════════════════════════════════ */
        .process-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            position: relative;
        }
        .process-timeline::before {
            content: ''; position: absolute;
            top: 1.5rem;
            left: 6%; right: 6%;
            height: 1px;
            background: linear-gradient(90deg, var(--accent-light) 0%, var(--accent) 50%, var(--text-dim) 100%);
            opacity: 0.4;
            z-index: 0;
        }
        .pt-step {
            position: relative;
            z-index: 1;
            display: flex; flex-direction: column;
        }
        .pt-dot {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: var(--bg-base);
            border: 1.5px solid var(--border-strong);
            margin-bottom: 1.5rem;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.85rem; font-weight: 700;
            color: var(--text-muted);
            transition: all 0.3s var(--ease-out);
            position: relative;
        }
        .pt-step:nth-child(1) .pt-dot,
        .pt-step:nth-child(2) .pt-dot,
        .pt-step:nth-child(3) .pt-dot {
            background: linear-gradient(135deg, #4f98a3, #6dd5e0);
            color: #0a1418;
            border-color: transparent;
            box-shadow: 0 0 0 4px rgba(109, 213, 224, 0.12), 0 4px 16px rgba(109, 213, 224, 0.3);
        }
        .pt-step:nth-child(4) .pt-dot {
            background: var(--bg-base);
            border: 1.5px dashed var(--accent-border);
            color: var(--accent-light);
        }
        .pt-day {
            font-size: 0.72rem; font-weight: 700;
            letter-spacing: 0.1em; text-transform: uppercase;
            color: var(--accent-light);
            margin-bottom: 0.5rem;
        }
        .pt-name {
            font-size: 1.1rem; font-weight: 700;
            color: var(--text);
            margin-bottom: 0.7rem;
            letter-spacing: -0.015em;
        }
        .pt-desc {
            font-size: 0.92rem;
            color: var(--text-soft);
            font-weight: 300;
            line-height: 1.55;
        }
        .process-footnote {
            margin-top: 3rem;
            padding: 1.5rem 2rem;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            font-size: 0.95rem;
            color: var(--text-soft);
            font-weight: 400;
            display: flex; align-items: center; gap: 1rem;
        }
        .process-footnote-icon {
            width: 36px; height: 36px; border-radius: 10px;
            background: var(--accent-bg);
            border: 1px solid var(--accent-border);
            display: flex; align-items: center; justify-content: center;
            color: var(--accent-light);
            flex-shrink: 0;
        }

        @media (max-width: 820px) {
            .process-timeline {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .process-timeline::before {
                top: 1.5rem; bottom: 1.5rem;
                left: 17px; right: auto;
                width: 1px; height: auto;
                background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 50%, var(--text-dim) 100%);
            }
            .pt-step { padding-left: 60px; position: relative; }
            .pt-dot { position: absolute; left: 0; top: 0; margin-bottom: 0; }
        }

        /* ═══════════════════════════════════════════════════════════
           KONZULTACE — kontakt tiles (volat / WhatsApp / LinkedIn)
        ═══════════════════════════════════════════════════════════ */
        .contact-tiles {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        .light-section .contact-tile {
            position: relative;
            display: flex; flex-direction: column;
            justify-content: space-between;
            gap: 2.5rem;
            min-height: clamp(280px, 28vw, 360px);
            padding: clamp(1.75rem, 3vw, 2.5rem);
            background: #fff;
            border: 1.5px solid rgba(10, 14, 23, 0.12);
            border-radius: 24px;
            text-decoration: none;
            color: var(--light-fg);
            overflow: hidden;
            transition: all 0.35s var(--ease-out);
        }
        .light-section .contact-tile.dark {
            background: #0a0e17;
            border-color: #0a0e17;
            color: #f2ebdf;
        }
        .light-section .contact-tile:hover {
            transform: translateY(-6px);
            color: var(--light-fg);
            box-shadow: 0 30px 60px -25px rgba(10, 14, 23, 0.3);
        }
        .light-section .contact-tile.dark:hover {
            color: #f2ebdf;
            box-shadow: 0 30px 60px -20px rgba(79, 152, 163, 0.45);
        }

        .contact-tile-top {
            display: flex; align-items: flex-start; justify-content: space-between;
            gap: 1rem;
        }
        .contact-tile-icon {
            width: clamp(56px, 7vw, 72px);
            height: clamp(56px, 7vw, 72px);
            border-radius: 18px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .light-section .contact-tile:not(.dark) .contact-tile-icon {
            background: var(--light-fg);
            color: #f2ebdf;
        }
        .light-section .contact-tile.dark .contact-tile-icon {
            background: linear-gradient(135deg, #4f98a3, #6dd5e0);
            color: #0a1418;
        }
        .contact-tile-icon svg {
            width: 60%; height: 60%;
            fill: currentColor;
        }
        .contact-tile-arrow {
            width: 36px; height: 36px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s var(--ease-out);
        }
        .light-section .contact-tile:not(.dark) .contact-tile-arrow {
            background: transparent;
            border: 1.5px solid rgba(10, 14, 23, 0.18);
            color: var(--light-fg);
        }
        .light-section .contact-tile.dark .contact-tile-arrow {
            background: rgba(255, 255, 255, 0.06);
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            color: #f2ebdf;
        }
        .light-section .contact-tile:hover .contact-tile-arrow {
            background: linear-gradient(135deg, #4f98a3, #6dd5e0);
            border-color: transparent;
            color: #0a1418;
            transform: rotate(-45deg);
        }

        .contact-tile-body { display: flex; flex-direction: column; gap: 0.4rem; }
        .contact-tile-label {
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            opacity: 0.55;
        }
        .contact-tile-value {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 900;
            letter-spacing: -0.035em;
            line-height: 1;
            padding-bottom: 0.05em;
        }
        .contact-tile-value .grad {
            background: linear-gradient(135deg, #4f98a3 0%, #6dd5e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .contact-tile-hint {
            font-size: 0.85rem;
            font-weight: 500;
            opacity: 0.6;
            line-height: 1.4;
        }

        @media (max-width: 920px) {
            .contact-tiles { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
        }

        .konzultace-note {
            margin-top: 2.5rem;
            font-size: 1rem;
            color: rgba(10, 14, 23, 0.55);
            font-style: italic;
            text-align: center;
            max-width: 60ch;
            margin-left: auto; margin-right: auto;
        }
        .konzultace-note strong { color: var(--light-fg); font-weight: 700; font-style: normal; }

        /* ═══════════════════════════════════════════════════════════
           CONTACT FORM
        ═══════════════════════════════════════════════════════════ */
        .contact-card {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(79, 152, 163, 0.03) 100%);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border-strong);
            border-radius: 28px;
            padding: clamp(2rem, 5vw, 4rem);
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: clamp(2.5rem, 5vw, 5rem);
            position: relative;
            overflow: hidden;
        }
        .contact-card::before {
            content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
            opacity: 0.6;
        }

        .contact-info h2 { margin-bottom: 1.5rem; }
        .contact-info > p {
            font-size: 1.05rem;
            color: var(--text-soft);
            font-weight: 300;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        /* Personal block — foto + jméno */
        .contact-person {
            display: flex; gap: 1.25rem;
            align-items: center;
            padding: 1.5rem 0;
            margin-bottom: 1.5rem;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .contact-photo {
            width: 76px; height: 76px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent-border);
            box-shadow: 0 4px 20px rgba(109, 213, 224, 0.2);
            flex-shrink: 0;
        }
        .contact-person-info {
            display: flex; flex-direction: column;
            gap: 0.2rem;
        }
        .contact-person-name {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.015em;
            line-height: 1.2;
        }
        .contact-person-role {
            font-size: 0.85rem;
            color: var(--accent-light);
            font-weight: 500;
            font-style: italic;
        }

        /* Contact details list */
        .contact-details {
            display: flex; flex-direction: column;
            gap: 0.85rem;
        }
        .contact-detail-item {
            display: flex; gap: 0.85rem;
            align-items: flex-start;
            font-size: 0.92rem;
            font-weight: 400;
            line-height: 1.45;
            color: var(--text-soft);
        }
        .contact-detail-item svg {
            flex-shrink: 0;
            margin-top: 0.15rem;
            color: var(--accent-light);
        }
        .contact-detail-item a {
            color: var(--text);
            font-weight: 600;
            transition: color 0.2s;
        }
        .contact-detail-item a:hover { color: var(--accent-light); }
        .contact-detail-item .label {
            display: block;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-dim);
            margin-bottom: 0.15rem;
        }

        .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
        .form-field { display: flex; flex-direction: column; gap: 0.5rem; }
        .form-field label {
            font-size: 0.8rem; font-weight: 600;
            color: var(--text-soft);
            letter-spacing: 0.02em;
        }
        .form-input, .form-textarea {
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--text);
            font-weight: 400;
            background: rgba(0, 0, 0, 0.25);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 0.85rem 1.1rem;
            width: 100%;
            outline: none;
            transition: all 0.2s;
            min-height: 48px;
        }
        .form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); font-weight: 300; }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--accent-border);
            background: rgba(0, 0, 0, 0.35);
            box-shadow: 0 0 0 4px rgba(109, 213, 224, 0.08);
        }
        .form-textarea { resize: vertical; min-height: 140px; line-height: 1.55; }

        .form-message {
            display: none;
            padding: 1rem 1.25rem;
            border-radius: 12px;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        .form-message.show { display: flex; align-items: flex-start; gap: 0.75rem; }
        .form-message.success {
            background: rgba(79, 152, 163, 0.08);
            border: 1px solid var(--accent-border);
            color: var(--accent-light);
        }
        .form-message.error {
            background: rgba(232, 112, 112, 0.08);
            border: 1px solid rgba(232, 112, 112, 0.3);
            color: var(--danger);
        }
        .form-submit { align-self: flex-start; margin-top: 0.5rem; }
        .form-trust {
            font-size: 0.8rem;
            color: var(--text-dim);
            margin-top: 0.5rem;
            display: flex; align-items: center; gap: 0.5rem;
        }

        @media (max-width: 820px) {
            .contact-card { grid-template-columns: 1fr; }
        }

        /* ═══════════════════════════════════════════════════════════
           FOOTER
        ═══════════════════════════════════════════════════════════ */
        footer {
            padding: 3.5rem 0 2.5rem;
            border-top: 1px solid var(--border);
            position: relative;
        }
        footer::before {
            content: ''; position: absolute; top: -1px; left: 25%; right: 25%; height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
            opacity: 0.4;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 3rem;
            align-items: center;
        }
        .footer-brand {
            display: flex; align-items: center; gap: 0.8rem;
        }
        .footer-brand-text {
            font-size: 0.92rem;
            color: var(--text-muted);
            font-weight: 400;
            line-height: 1.5;
        }
        .footer-brand-text strong { color: var(--text); font-weight: 600; }
        .footer-projects-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-dim);
            margin-bottom: 0.6rem;
        }
        .footer-projects {
            display: flex; flex-wrap: wrap; gap: 0.5rem;
        }
        .footer-projects a {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
            padding: 0.3rem 0.8rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-soft);
            border-radius: 100px;
            transition: all 0.2s;
        }
        .footer-projects a:hover {
            color: var(--accent-light);
            border-color: var(--accent-border);
            background: var(--accent-bg);
        }

        @media (max-width: 720px) {
            .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
        }

        /* ── Footer bottom bar ── */
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid var(--border-soft);
            font-size: 0.78rem;
            color: var(--text-dim);
        }
        .footer-cookie-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 0.78rem;
            color: var(--text-dim);
            font-family: var(--font-body);
            padding: 0;
            transition: color 0.2s;
            text-decoration: none;
        }
        .footer-cookie-btn:hover { color: var(--accent-light); }

        /* ── Cookie banner ── */
        .cookie-banner {
            position: fixed;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%) translateY(130%);
            z-index: 9999;
            width: min(580px, calc(100vw - 2rem));
            background: rgba(6, 9, 18, 0.93);
            border: 1px solid var(--accent-border);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            padding: 1.1rem 1.4rem;
            display: flex;
            align-items: center;
            gap: 1.25rem;
            flex-wrap: wrap;
            transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 12px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(109,213,224,0.06);
        }
        .cookie-banner::before {
            content: '';
            position: absolute;
            top: 0; left: 15%; right: 15%; height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
            opacity: 0.35;
        }
        .cookie-banner.show { transform: translateX(-50%) translateY(0); }
        .cookie-text {
            font-size: 0.855rem;
            color: var(--text-soft);
            line-height: 1.55;
            flex: 1;
            min-width: 180px;
        }
        .cookie-text a { color: var(--accent-light); }
        .cookie-text a:hover { text-decoration: underline; }
        .cookie-actions {
            display: flex;
            gap: 0.55rem;
            flex-shrink: 0;
        }
        .cookie-btn {
            padding: 0.45rem 1rem;
            font-size: 0.78rem;
            font-weight: 600;
            font-family: var(--font-body);
            cursor: pointer;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: all 0.18s;
            border: 1px solid transparent;
            border-radius: 3px;
        }
        .cookie-btn.reject {
            background: transparent;
            color: var(--text-muted);
            border-color: var(--border);
        }
        .cookie-btn.reject:hover { border-color: var(--border-strong); color: var(--text); }
        .cookie-btn.accept {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }
        .cookie-btn.accept:hover { background: var(--accent-light); border-color: var(--accent-light); }

        /* ═══════════════════════════════════════════════════════════
           FAQ
        ═══════════════════════════════════════════════════════════ */
        .faq-list {
            max-width: 860px;
            margin-top: clamp(2rem, 4vw, 3rem);
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
        }
        .faq-item[open] {
            border-color: var(--accent-border);
            background: var(--bg-elevated);
        }
        .faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1.3rem, 2.5vw, 1.85rem);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            font-size: clamp(1.02rem, 1.6vw, 1.18rem);
            font-weight: 700;
            color: var(--text);
            letter-spacing: -0.01em;
            transition: color 0.2s;
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary:hover { color: var(--accent-light); }
        .faq-item summary .faq-icon {
            flex-shrink: 0;
            width: 22px; height: 22px;
            color: var(--accent-light);
            transition: transform 0.3s var(--ease-out);
        }
        .faq-item[open] summary .faq-icon { transform: rotate(45deg); }
        .faq-answer {
            padding: 0 clamp(1.3rem, 2.5vw, 1.85rem) clamp(1.2rem, 2.2vw, 1.6rem);
            font-size: 1rem;
            line-height: 1.62;
            color: var(--text-soft);
        }
        .faq-answer a { color: var(--accent-light); font-weight: 600; }
        .faq-answer a:hover { color: var(--accent-soft); }

        /* ═══════════════════════════════════════════════════════════
           BACK TO TOP
        ═══════════════════════════════════════════════════════════ */
        .back-to-top {
            position: fixed;
            bottom: 1.75rem;
            right: 1.75rem;
            width: 50px; height: 50px;
            border-radius: 50%;
            background: rgba(10, 14, 23, 0.78);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border: 1px solid var(--accent-border);
            color: var(--accent-light);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
            z-index: 99;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
            padding: 0;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .back-to-top:hover {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent-light);
            box-shadow: 0 8px 28px var(--accent-glow);
            transform: translateY(-3px);
        }
        .back-to-top svg { display: block; }

        /* ═══════════════════════════════════════════════════════════
           QUICK CONTACT (sloupec ikon nad back-to-top)
        ═══════════════════════════════════════════════════════════ */
        .quick-contact {
            position: fixed;
            bottom: calc(1.75rem + 50px + 0.75rem);
            right: 1.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        }
        .quick-contact.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .quick-contact a {
            width: 50px; height: 50px;
            border-radius: 50%;
            background: rgba(10, 14, 23, 0.78);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border: 1px solid var(--accent-border);
            color: var(--accent-light);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.25s ease;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
        }
        .quick-contact a:hover {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent-light);
            box-shadow: 0 8px 28px var(--accent-glow);
            transform: translateY(-3px);
        }
        .quick-contact a.wa:hover {
            background: #25d366;
            border-color: #25d366;
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
        }
        .quick-contact svg { display: block; }

        /* ═══════════════════════════════════════════════════════════
           ČLÁNKY — typografie a layout (přidáno pro /clanky/)
        ═══════════════════════════════════════════════════════════ */
        .article-hero {
            padding: calc(78px + clamp(2.5rem, 6vw, 5rem)) 0 clamp(2rem, 4vw, 3rem);
            position: relative;
            overflow: hidden;
        }
        .article-hero::before {
            content: '';
            position: absolute;
            top: -20%; left: 50%;
            width: 900px; height: 900px;
            background: radial-gradient(circle, var(--accent-bg) 0%, transparent 60%);
            transform: translateX(-50%);
            pointer-events: none;
        }
        .article-hero .container { position: relative; z-index: 1; }
        .article-breadcrumb {
            display: flex; align-items: center; gap: 0.5rem;
            font-size: 0.85rem; font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }
        .article-breadcrumb a { color: var(--accent-light); }
        .article-breadcrumb span { opacity: 0.5; }
        .article-eyebrow {
            display: inline-flex; align-items: center; gap: 0.6rem;
            font-size: 0.78rem; font-weight: 800;
            letter-spacing: 0.18em; text-transform: uppercase;
            color: var(--accent-light);
            padding: 0.45rem 1rem;
            background: var(--accent-bg);
            border: 1px solid var(--accent-border);
            border-radius: 100px;
            margin-bottom: 1.5rem;
        }
        h1.article-title {
            font-size: clamp(2rem, 4.5vw, 3.4rem);
            font-weight: 900;
            line-height: 1.08;
            letter-spacing: -0.025em;
            max-width: 18ch;
            margin-bottom: 1.25rem;
        }
        .article-lead {
            font-size: clamp(1.1rem, 1.6vw, 1.3rem);
            color: var(--text-soft);
            line-height: 1.55;
            max-width: 60ch;
        }
        .article-body {
            max-width: 760px;
            margin: 0 auto;
            padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 5rem);
        }
        .prose > * + * { margin-top: 1.35rem; }
        .prose h2 {
            font-size: clamp(1.5rem, 2.6vw, 2rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-top: 2.75rem;
            color: var(--text);
        }
        .prose h2 + * { margin-top: 1rem; }
        .prose h3 {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            font-weight: 700;
            line-height: 1.25;
            margin-top: 2rem;
            color: var(--text);
        }
        .prose p, .prose li {
            font-size: 1.06rem;
            line-height: 1.7;
            color: var(--text-soft);
        }
        .prose strong { color: var(--text); font-weight: 700; }
        .prose a { color: var(--accent-light); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--accent-border); }
        .prose a:hover { color: var(--accent-soft); }
        .prose ul, .prose ol { padding-left: 1.4rem; display: flex; flex-direction: column; gap: 0.7rem; }
        .prose li { padding-left: 0.3rem; }
        .prose ul li::marker { color: var(--accent-light); }
        .prose ol li::marker { color: var(--accent-light); font-weight: 700; }
        .prose blockquote {
            border-left: 3px solid var(--accent);
            background: var(--bg-card);
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            color: var(--text);
            font-size: 1.08rem;
        }
        .prose blockquote p { color: var(--text); }
        /* Box pro „případ z praxe" / zvýraznění */
        .prose .callout {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: clamp(1.25rem, 2.5vw, 1.75rem);
            margin-top: 1.5rem;
        }
        .prose .callout > * + * { margin-top: 0.85rem; }
        .prose .callout strong { color: var(--accent-light); }

        /* CTA blok na konci článku */
        .article-cta {
            margin-top: clamp(2.5rem, 5vw, 3.5rem);
            padding: clamp(1.75rem, 3.5vw, 2.5rem);
            background: linear-gradient(135deg, var(--accent-bg), transparent);
            border: 1px solid var(--accent-border);
            border-radius: 20px;
            text-align: center;
        }
        .article-cta h3 {
            font-size: clamp(1.3rem, 2.2vw, 1.7rem);
            font-weight: 800;
            margin-bottom: 0.75rem;
            margin-top: 0;
            color: var(--text);
        }
        .article-cta p { color: var(--text-soft); margin-bottom: 1.5rem; max-width: 48ch; margin-left: auto; margin-right: auto; }
        /* Tlačítko uvnitř .prose nesmí dědit teal barvu odkazů — tmavý text na světlém gradientu */
        .prose a.btn { text-decoration: none; }
        .article-cta a.btn-primary,
        .article-cta a.btn-primary:hover,
        .prose a.btn-primary,
        .prose a.btn-primary:hover { color: #0a1418; }

        /* Rozcestník článků */
        .clanky-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
            gap: 1.5rem;
            margin-top: clamp(2rem, 4vw, 3rem);
        }
        .clanek-card {
            display: flex; flex-direction: column;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: clamp(1.5rem, 2.5vw, 2rem);
            text-decoration: none;
            transition: all 0.3s var(--ease-out);
            position: relative;
            overflow: hidden;
        }
        .clanek-card::before {
            content: '';
            position: absolute; top: 0; left: 0;
            width: 100%; height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            transform: scaleX(0); transform-origin: left;
            transition: transform 0.4s var(--ease-out);
        }
        .clanek-card:hover {
            border-color: var(--accent-border);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -20px rgba(109, 213, 224, 0.25);
        }
        .clanek-card:hover::before { transform: scaleX(1); }
        .clanek-card .clanek-tag {
            font-size: 0.72rem; font-weight: 800;
            letter-spacing: 0.14em; text-transform: uppercase;
            color: var(--accent-light);
            margin-bottom: 0.9rem;
        }
        .clanek-card h2 {
            font-size: 1.25rem; font-weight: 800;
            line-height: 1.25; letter-spacing: -0.01em;
            color: var(--text);
            margin-bottom: 0.7rem;
        }
        .clanek-card p {
            font-size: 0.96rem; line-height: 1.55;
            color: var(--text-muted);
            flex-grow: 1;
        }
        .clanek-card .clanek-more {
            margin-top: 1.25rem;
            font-size: 0.88rem; font-weight: 700;
            color: var(--accent-light);
            display: inline-flex; align-items: center; gap: 0.4rem;
        }
        .clanek-card:hover .clanek-more { gap: 0.7rem; }

        /* ── Meta řádek pod H1 (autor · datum · doba čtení) ── */
        .article-meta {
            display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
            margin-top: 1.5rem;
            font-size: 0.92rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .article-meta-author { color: var(--accent-light); font-weight: 700; }
        .article-meta-sep { opacity: 0.4; }

        /* ── „Co si odnesete" — shrnutí nahoře ── */
        .takeaways {
            margin: clamp(2rem, 4vw, 2.75rem) 0;
            padding: clamp(1.4rem, 2.5vw, 1.85rem) clamp(1.5rem, 2.8vw, 2rem);
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-left: 3px solid var(--accent);
            border-radius: 0 16px 16px 0;
        }
        .takeaways-label {
            font-size: 0.74rem; font-weight: 800;
            letter-spacing: 0.14em; text-transform: uppercase;
            color: var(--accent-light);
            margin-bottom: 0.9rem;
        }
        .takeaways ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; margin: 0; }
        .takeaways li {
            display: flex; gap: 0.7rem; align-items: flex-start;
            font-size: 1.02rem; line-height: 1.5; color: var(--text-soft);
        }
        .takeaways li svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--accent-light); margin-top: 0.2rem; }

        /* ── Autor box (E-E-A-T) ── */
        .article-foot { padding-top: 0; padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
        .author-box {
            display: flex; gap: clamp(1rem, 2.5vw, 1.75rem); align-items: flex-start;
            margin-top: clamp(2.5rem, 5vw, 3.5rem);
            padding: clamp(1.5rem, 3vw, 2rem);
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
        }
        .author-photo {
            width: 84px; height: 84px; flex-shrink: 0;
            border-radius: 50%; object-fit: cover;
            border: 2px solid var(--accent-border);
        }
        .author-label {
            font-size: 0.72rem; font-weight: 800;
            letter-spacing: 0.14em; text-transform: uppercase;
            color: var(--text-dim);
            display: block; margin-bottom: 0.3rem;
        }
        .author-name { font-size: 1.15rem; color: var(--text); display: block; margin-bottom: 0.5rem; }
        .author-text p { font-size: 0.98rem; line-height: 1.6; color: var(--text-soft); margin: 0 0 1rem; }
        .author-text p a { color: var(--accent-light); font-weight: 600; }
        .author-links { display: flex; align-items: center; gap: 1rem; }
        .author-btn { padding: 0.6rem 1.4rem; min-height: 0; font-size: 0.85rem; }
        .author-social {
            width: 42px; height: 42px; border-radius: 50%;
            display: inline-flex; align-items: center; justify-content: center;
            border: 1px solid var(--border); color: var(--text-muted);
            transition: all 0.2s;
        }
        .author-social:hover { color: var(--accent-light); border-color: var(--accent-border); }
        @media (max-width: 560px) {
            .author-box { flex-direction: column; }
        }

        /* ── Související návody ── */
        .related-articles {
            max-width: 1100px; margin: 0 auto;
            padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) clamp(3rem, 6vw, 5rem);
            border-top: 1px solid var(--border-soft);
        }
        .related-title {
            font-size: clamp(1.4rem, 2.4vw, 1.9rem);
            font-weight: 800; letter-spacing: -0.02em;
            margin-bottom: clamp(1.5rem, 3vw, 2rem);
            color: var(--text);
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
            gap: 1.25rem;
        }
        .related-grid .clanek-card h3 {
            font-size: 1.12rem; font-weight: 800;
            line-height: 1.25; letter-spacing: -0.01em;
            color: var(--text); margin-bottom: 0.5rem;
        }

        /* ── Datum + doba čtení na kartách rozcestníku ── */
        .clanek-card .clanek-card-meta {
            display: flex; align-items: center; gap: 0.5rem;
            margin-top: 1rem; padding-top: 0.9rem;
            border-top: 1px solid var(--border-soft);
            font-size: 0.8rem; color: var(--text-dim); font-weight: 500;
        }
        .clanek-card .clanek-card-meta .sep { opacity: 0.4; }
