
        /* === ZÁKLADNÉ PREMENNÉ A RESET === */
        :root {
            --bg-dark: #0a0a0a;
            --text-light: #ffffff;
            --text-dark: #111111;
            --text-muted: #666666;
            --bg-light: #ffffff;
            --bg-gray: #f9f9f9;
            --border-color: #eaeaea;
            --primary-btn-bg: #ffffff;
            --primary-btn-text: #000000;
            --secondary-btn-bg: transparent;
            --secondary-btn-border: #333333;
            --container-width: 1200px;
            --header-height: 76px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Urbanist', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-height);
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        ul {
            list-style: none;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            padding: 100px 0;
        }

        /* === ZMENŠENIE SYMBOLOV (€, %, ikony) === */
        .sym {
            font-size: 0.75em;
            font-weight: normal; 
        }

        /* === ANIMÁCIE PRI SCROLLOVANÍ === */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-100 { transition-delay: 100ms; }
        .delay-200 { transition-delay: 200ms; }
        .delay-300 { transition-delay: 300ms; }
        .delay-400 { transition-delay: 400ms; }

        /* === TYPOGRAFIA === */
        h1 {
            font-size: 4.5rem;
            line-height: 1.1;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 24px;
        }

        h1 span {
            color: #a0a0a0;
            font-style: italic;
            font-weight: 400;
        }

        h2 {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

        h2 span {
            color: #a0a0a0;
            font-style: italic;
            font-weight: 400;
        }

        .section-subtitle {
            text-transform: uppercase;
            font-size: 0.75rem;
            font-weight: 700; 
            letter-spacing: 0.1em;
            color: var(--text-muted);
            margin-bottom: 24px;
            display: block;
        }

        /* === TLAČIDLÁ === */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px; 
            padding: 14px 24px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary-btn-bg);
            color: var(--primary-btn-text);
            border: 1px solid var(--primary-btn-bg);
        }

        .btn-primary:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
        }

        .btn-dark {
            background-color: #000;
            color: #fff;
            border: 1px solid #000;
        }

        .btn-outline-light {
            background-color: transparent;
            color: var(--text-light);
            border: 1px solid var(--secondary-btn-border);
        }

        .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.05); 
            border-color: rgba(255, 255, 255, 0.5); 
            transform: translateY(-2px);
        }
        
        .btn-outline-dark {
            background-color: transparent;
            color: var(--text-dark);
            border: 1px solid var(--border-color);
        }

        .btn-outline-dark:hover {
            background-color: #f5f5f5;
            border-color: #ccc;
            transform: translateY(-2px);
        }

        /* === HEADER === */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0; 
            color: var(--text-light);
            background-color: #000; 
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: background-color 0.3s ease, border-color 0.3s ease;
        }

        header.scrolled {
            background-color: #000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
            position: relative; /* Pre mobilné menu */
        }

        .logo {
            font-size: 1.35rem; 
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            z-index: 1001; /* Aby logo bolo nad mobilným menu */
        }

        /* Navigačný obal pre lepšiu prácu s mobilom */
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex: 1;
            margin-left: 40px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #a0a0a0;
        }

        .nav-links a { transition: color 0.2s; }
        .nav-links a:hover { color: var(--text-light); }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 24px;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .login-link {
            position: relative;
            color: var(--text-light);
            transition: color 0.3s ease;
        }

        .login-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -4px;
            left: 0;
            background-color: var(--text-light);
            transition: width 0.3s ease;
        }

        .login-link:hover::after {
            width: 100%;
        }

        /* Hamburger Tlačidlo (Skryté na desktope) */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            z-index: 1001;
            padding: 8px;
        }

        /* === HERO SEKCIA === */
        .hero {
            color: var(--text-light);
            padding: 160px 0 120px; 
            position: relative;
            overflow: hidden;
            background-image: 
                linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), 
                url('https://images.unsplash.com/photo-1460472178825-e5240623afd5?q=80&w=2069&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-desc {
            font-size: 1.2rem;
            font-weight: 400;
            color: #a0a0a0;
            margin-bottom: 40px;
            max-width: 90%;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
        }

        .hero-rating {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #888;
        }

        .avatars { display: flex; }
        .avatar {
            width: 30px; height: 30px;
            border-radius: 50%;
            background: #333;
            border: 2px solid #0a0a0a;
            margin-left: -10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.6rem; color: #fff;
        }
        .avatar:first-child { margin-left: 0; }

        .hero-image-wrapper {
            width: 100%;
            max-width: 400px;
            margin-left: auto;
            border-radius: 8px;
            box-shadow: 0 24px 48px rgba(0,0,0,0.5);
        }

        .hero-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }

        /* === ŠTATISTIKY === */
        .stats-section {
            padding: 60px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            text-align: center;
            gap: 24px;
        }
        .stat-item { border-right: 1px solid var(--border-color); }
        .stat-item:last-child { border-right: none; }
        .stat-number { font-size: 3rem; font-weight: 600; margin-bottom: 4px; }
        .stat-label { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }

        /* === AKO TO FUNGUJE === */
        .how-it-works-section {
            background-color: #000;
            color: #fff;
        }
        .how-it-works-section .section-subtitle {
            color: #888;
        }
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 60px;
        }
        .step-card {
            border-right: 1px solid #333;
            padding-right: 24px;
        }
        .step-card:last-child { border-right: none; padding-right: 0; }
        
        .step-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 24px;
            color: #888;
            font-size: 0.9rem;
            font-weight: 600;
        }
        .step-icon {
            width: 36px; height: 36px;
            border: 1px solid #333;
            display: flex; align-items: center; justify-content: center;
            border-radius: 4px;
            color: #fff;
        }
        .step-icon svg { width: 18px; height: 18px; }
        .step-title { font-weight: 700; margin-bottom: 12px; font-size: 1.2rem;}
        .step-desc { color: #888; font-size: 0.95rem; }

        .supported-portals {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 60px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .portal-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .portal-tag {
            padding: 6px 12px;
            border: 1px solid #333;
            border-radius: 4px;
            color: #fff;
            transition: border-color 0.2s;
            text-transform: none;
            font-weight: 500;
        }
        .portal-tag:hover { border-color: #555; }

        /* === DEMO / VALUE PROP === */
        .demo-section { background-color: var(--bg-gray); }
        .demo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .demo-desc { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 32px; }
        .check-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            color: var(--text-dark);
            font-weight: 500;
        }
        .check-icon {
            width: 20px; height: 20px;
            border: 1px solid #111;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
        }

        .browser-mockup {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .browser-mockup:hover { transform: translateY(-5px); }
        
        .browser-header {
            background: #f1f1f1;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .browser-dots { display: flex; gap: 6px; }
        .browser-dots span { width: 10px; height: 10px; background: #ddd; border-radius: 50%; }
        .browser-url { background: #fff; padding: 4px 12px; border-radius: 12px; font-size: 0.75rem; color: #888; flex: 1; text-align: center; font-weight: 500;}
        
        .browser-body { padding: 24px; background: #fdfdfd; }
        .mock-listing { border: 1px solid #eee; padding: 16px; border-radius: 4px; display: flex; gap: 16px; margin-bottom: 16px; background: #fff; position: relative;}
        .mock-img { width: 100px; height: 100px; background: #f5f5f5; border-radius: 4px;}
        .mock-lines { flex: 1; display: flex; flex-direction: column; gap: 12px; padding-top: 8px;}
        .line { height: 12px; background: #f0f0f0; border-radius: 4px; }
        .line.w-full { width: 100%; }
        .line.w-3-4 { width: 75%; }
        .line.w-1-2 { width: 50%; }
        
        .mock-score-badge {
            position: absolute;
            right: 16px; top: 16px;
            background: #000; color: #fff;
            padding: 6px 12px; border-radius: 4px;
            font-size: 0.8rem; font-weight: 700;
        }
        .mock-score-badge.light { background: #eee; color: #888; }

        /* === FUNKCIE === */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border-top: 1px solid var(--border-color);
            border-left: 1px solid var(--border-color);
            margin-top: 60px;
        }
        .feature-card {
            padding: 40px;
            border-right: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            transition: background-color 0.3s;
        }
        .feature-card:hover { background-color: #fafafa; }
        .feature-icon {
            width: 44px; height: 44px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 24px;
            color: var(--text-dark);
        }
        .feature-icon svg { width: 22px; height: 22px; }
        .feature-icon.dark { background: #000; color: #fff; border-color: #000; }
        .feature-title { font-weight: 700; margin-bottom: 12px; font-size: 1.2rem; }
        .feature-desc { color: var(--text-muted); font-size: 0.95rem; }

        /* === REFERENCIE === */
        .testimonials-section { 
            background-color: var(--bg-gray); 
        } 
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 60px;
        }
        .testimo-card {
            border: 1px solid var(--border-color);
            padding: 32px;
            border-radius: 4px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            display: flex; flex-direction: column; justify-content: space-between;
            background-color: #fff; 
        }
        .stars { color: #000; margin-bottom: 16px; letter-spacing: 2px; font-size: 1.25rem; } 
        .testimo-text { font-size: 1rem; color: var(--text-muted); margin-bottom: 32px; font-style: italic; }
        .testimo-author { display: flex; align-items: center; gap: 12px; }
        .author-avatar { width: 40px; height: 40px; background: #000; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; border-radius: 4px; }
        .author-name { font-weight: 700; font-size: 1rem; margin-bottom: 2px;}
        .author-role { font-size: 0.85rem; color: #888; font-weight: 500; }

        /* === CENNÍK === */
        .pricing-section { text-align: center; }
        .pricing-subtitle { color: var(--text-muted); margin-bottom: 30px; font-size: 1.1rem;}
        
        /* === TOGGLE SWITCH === */
        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin: 0 0 40px 0;
        }
        .toggle-label {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        .toggle-switch {
            position: relative;
            width: 56px;
            height: 32px;
            background: #e2e8f0;
            border-radius: 32px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .toggle-switch.active {
            background: #111; /* Black instead of blue */
        }
        .toggle-circle {
            position: absolute;
            top: 4px;
            left: 4px;
            width: 24px;
            height: 24px;
            background: #fff;
            border-radius: 50%;
            transition: transform 0.3s;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .toggle-switch.active .toggle-circle {
            transform: translateX(24px);
        }
        .discount-badge {
            background: #111; /* Black badge */
            color: #fff;
            font-size: 0.75rem;
            padding: 4px 8px;
            border-radius: 6px;
            font-weight: 700;
        }
        .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; align-items: center; max-width: 1000px; margin: 0 auto; }
        .price-card { padding: 40px; text-align: left; transition: transform 0.3s ease;}
        .price-card:hover { transform: translateY(-10px); }
        .price-card.dark { background: #000; color: #fff; padding: 60px 40px; border-radius: 8px; position: relative; z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.15);}
        
        .plan-name { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #888; margin-bottom: 24px; display: block; }
        .price-amount { font-size: 4.5rem; font-weight: 700; line-height: 1; margin-bottom: 8px; }
        .price-period { font-size: 0.95rem; font-weight: 500; color: #888; margin-bottom: 32px; display: block; }
        
        .price-features { margin-bottom: 40px; }
        .price-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
        .price-card.dark .price-features li { color: #ccc; }
        .price-check { color: #888; }
        .price-card.dark .price-check { color: #fff; }

        .price-card .btn { width: 100%; }
        .popular-badge { position: absolute; top: 24px; right: 24px; background: #fff; color: #000; font-size: 0.7rem; font-weight: 800; padding: 4px 8px; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 2px; }

        /* === BOTTOM CTA === */
        .bottom-cta { 
            color: #fff; 
            text-align: center; 
            padding: 120px 0; 
            border-bottom: 1px solid #222;
            background-image: 
                linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), 
                url('https://images.unsplash.com/photo-1460472178825-e5240623afd5?q=80&w=2069&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; 
        }
        .bottom-cta h2 { font-size: 4.5rem; margin-bottom: 24px; }
        .bottom-cta p { color: #888; margin-bottom: 40px; font-size: 1.2rem; }
        .bottom-rating { margin-left: 16px; font-size: 0.95rem; font-weight: 500; color: #666; }

        /* === FOOTER === */
        footer { background: #0a0a0a; color: #fff; padding: 80px 0 40px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 40px; margin-bottom: 60px; }
        .footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .footer-desc { color: #888; font-size: 0.95rem; margin: 24px 0; max-width: 250px; }
        .footer-col-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #555; margin-bottom: 24px; }
        .footer-links li { margin-bottom: 16px; font-size: 0.95rem; font-weight: 500; color: #aaa; }
        .footer-links a:hover { color: #fff; }
        .footer-bottom { border-top: 1px solid #222; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; color: #666; font-size: 0.9rem; font-weight: 500; }
        
        .social-links { display: flex; gap: 20px; align-items: center; }
        .social-links a { color: #888; transition: color 0.3s ease, transform 0.3s ease; display: flex; }
        .social-links a:hover { color: #fff; transform: translateY(-3px); }

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

        /* === VIDEO SEKCIA === */
        .video-section {
            background: var(--bg-gray);
            padding: 80px 0;
        }
        .video-wrapper {
            max-width: 800px;
            margin: 48px auto 0;
        }
        .video-embed {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
            background: #000;
        }
        .video-embed iframe {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            border: none;
        }
        .video-placeholder {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #111 0%, #1a1a2e 50%, #16213e 100%);
            cursor: pointer;
            transition: opacity 0.3s ease;
            z-index: 2;
        }
        .video-placeholder.hidden { opacity: 0; pointer-events: none; }
        .video-play-btn {
            width: 80px; height: 80px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .video-placeholder:hover .video-play-btn {
            transform: scale(1.1);
            background: rgba(255,255,255,0.25);
        }
        .video-placeholder p {
            color: #888;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* === 3-STEP GRID === */
        .steps-grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        /* === PRO BENEFITS === */
        .pro-benefits-section {
            background: #0a0a0a;
            color: #fff;
        }
        .pro-benefits-subtitle {
            color: #888;
            font-size: 1.1rem;
            margin-bottom: 60px;
        }
        .pro-benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .pro-benefit-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 32px;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        .pro-benefit-card:hover {
            background: rgba(255,255,255,0.08);
            transform: translateY(-4px);
        }
        .pro-benefit-icon {
            width: 48px; height: 48px;
            background: rgba(255,255,255,0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #fff;
        }
        .pro-benefit-icon svg { width: 24px; height: 24px; }
        .pro-benefit-title { font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; }
        .pro-benefit-desc { color: #888; font-size: 0.9rem; line-height: 1.5; }

        /* === PRICING 2-column === */
        .pricing-grid-2 {
            grid-template-columns: 1fr 1fr;
            max-width: 800px;
        }
        .price-feature-disabled { opacity: 0.45; }
        .price-x { color: #ccc; }
        .pricing-note {
            text-align: center;
            margin-top: 32px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .pricing-note a {
            color: var(--text-dark);
            font-weight: 600;
            text-decoration: underline;
        }

        /* === COMING SOON / PRIPRAVUJEME === */
        .coming-soon-section {
            background: var(--bg-gray);
        }
        .coming-soon-subtitle {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 60px;
        }
        .coming-soon-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .coming-soon-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 32px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .coming-soon-card:hover { transform: translateY(-4px); }
        .coming-soon-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 60%, rgba(0,0,0,0.02) 100%);
            pointer-events: none;
        }
        .coming-soon-badge {
            display: inline-block;
            background: #f0f0f0;
            color: #888;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 4px 10px;
            border-radius: 4px;
            margin-bottom: 20px;
        }
        .coming-soon-icon {
            width: 48px; height: 48px;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #aaa;
        }
        .coming-soon-icon svg { width: 24px; height: 24px; }
        .coming-soon-title { font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; }
        .coming-soon-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

        /* === FIXED BOTTOM BANNER === */
        .fixed-upgrade-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(12px);
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 22px 24px;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .fixed-upgrade-banner.visible {
            transform: translateY(0);
        }

        .fixed-upgrade-banner.shifted {
            transform: translateY(-84px) !important;
        }

        .fixed-upgrade-banner.visible.shifted {
            transform: translateY(-84px) !important;
        }

        .banner-content {
            max-width: var(--container-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .banner-status {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
        }

        /* Triedy pre odznačik plánu (Free/Trial/Pro) a zostávajúci počet analýz */
        .banner-plan-badge {
            background: rgba(255,255,255,0.1);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #ccc;
        }

        .banner-plan-badge.trial {
            background: rgba(59, 130, 246, 0.2);
            color: #60a5fa;
        }

        .banner-plan-badge.pro {
            background: rgba(34, 197, 94, 0.2);
            color: #4ade80;
        }

        .banner-remaining {
            font-size: 0.85rem;
            font-weight: 500;
            color: #aaa;
        }

        /* Úprava tlačidla ("Prejsť na PRO") vo vnútri bannera */
        .banner-cta {
            padding: 8px 20px !important;
            font-size: 0.85rem !important;
        }

        /* Skrytie pri veľmi malých zariadeniach (<630px) */
        @media (max-width: 630px) {
            .fixed-upgrade-banner { 
                display: none !important; 
            }
        }

        /* === SCROLL PROMO BANNER === */
        .scroll-promo-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #000;
            color: #fff;
            z-index: 998; /* Pod fixed-upgrade-banner */
            padding: 16px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            justify-content: center;
        }

        .scroll-promo-banner.visible {
            transform: translateY(0);
        }

        .scroll-promo-banner .banner-content-container {
            max-width: calc(var(--container-width) + 60px);
            width: 100%;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .scroll-promo-banner .banner-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .scroll-promo-banner .banner-subtitle {
            font-size: 0.9rem;
            color: #888;
        }

        .scroll-promo-banner .btn-apple-white {
            background: #fff;
            color: #000;
            padding: 8px 20px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: transform 0.2s, background 0.2s;
            white-space: nowrap;
            width: max-content;
            flex-shrink: 0;
            text-align: center;
        }

        .scroll-promo-banner .btn-apple-white:hover {
            background: #f0f0f0;
            transform: scale(1.02);
        }


        /* === PROMO POPUP (Apple TV Style) === */
        .promo-popup {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(16px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            padding: 24px;
        }

        .promo-popup.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .promo-popup-content.apple-style {
            background: #0a0a0a;
            border-radius: 20px;
            max-width: 860px;
            width: 100%;
            position: relative;
            transform: translateY(0) scale(1.02);
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            color: #fff;
            box-shadow: 0 40px 100px rgba(0,0,0,0.9);
            padding: 90px 48px 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
            outline: 1px solid rgba(255,255,255,0.08);
            overflow: hidden;
        }

        /* Ambient Glow Effect */
        .promo-popup-content.apple-style::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(0, 122, 255, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
            pointer-events: none;
            z-index: 0;
            animation: pulse-glow 8s infinite alternate ease-in-out;
        }

        @keyframes pulse-glow {
            from { opacity: 0.5; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1.05); }
        }

        .promo-popup.hidden .promo-popup-content.apple-style {
            transform: translateY(40px) scale(0.95);
        }

        .promo-popup-close.apple-close {
            position: absolute;
            top: 24px;
            left: 24px;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid transparent;
            color: #ccc;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .promo-popup-close.apple-close:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        
        .promo-popup-close.apple-close:focus {
            border-color: #007aff;
            outline: none;
        }

        .top-logo {
            position: absolute;
            top: 24px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            color: #888;
            letter-spacing: 0.05em;
            z-index: 10;
            text-decoration: none;
            transition: color 0.2s;
        }

        .top-logo:hover {
            color: #fff;
        }

        .promo-large-heading {
            font-size: 4rem;
            line-height: 1.05;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 48px;
            margin-top: 16px;
            text-align: center;
        }

        .promo-large-heading span {
            color: #666;
            font-style: italic;
            font-weight: 400;
        }

        .promo-apple-cards {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            width: 100%;
        }

        .promo-apple-card {
            background: #1c1c1e;
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s ease;
        }

        .promo-card-header {
            margin-bottom: 24px;
            display: flex;
            align-items: center;
        }

        .promo-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.04em;
            display: flex;
            align-items: center;
        }
        
        .promo-logo.pro {
            gap: 12px;
        }

        .promo-logo.pro::after {
            content: 'PRO';
            background: linear-gradient(135deg, #facc15, #f59e0b);
            color: #000;
            font-size: 0.75rem;
            font-weight: 800;
            padding: 2px 6px;
            border-radius: 4px;
            letter-spacing: 0;
            display: inline-block;
        }

        .promo-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .promo-badge {
            display: inline-flex;
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 12px;
            margin-bottom: 20px;
            align-self: flex-start;
        }

        .promo-badge.dim {
            background: rgba(255, 255, 255, 0.08);
            color: #bbb;
        }

        .promo-features {
            list-style: none;
            padding: 0;
            margin: 0 0 24px 0;
            flex: 1;
        }

        .promo-features li {
            font-size: 0.95rem;
            color: #e0e0e0;
            margin-bottom: 12px;
            line-height: 1.4;
            font-weight: 500;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        
        .promo-features li::before {
            content: "•";
            color: #888;
        }

        .promo-small-text {
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .btn-apple-white {
            background-color: #ffffff;
            color: #000000;
            border: none;
            border-radius: 12px;
            padding: 16px 24px;
            font-size: 1.1rem;
            font-weight: 700;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            width: 100%;
            display: block;
            box-shadow: 0 4px 12px rgba(255,255,255,0.1);
        }

        .btn-apple-white:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255,255,255,0.2);
        }

        .btn-apple-white:active {
            transform: scale(0.98);
        }

        /* ==========================================================================
           === RESPONSIVE DIZAJN (MEDIA QUERIES) ===
           ========================================================================== */

        /* Tablet (stredné obrazovky) */
        @media (max-width: 992px) {
            h1 { font-size: 3.5rem; }
            h2 { font-size: 2.5rem; }
            
            .hero-grid, .demo-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero-image-wrapper { max-width: 500px; margin: 0 auto; }
            
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
            .stat-item { border-right: none; }
            
            .steps-grid, .steps-grid-3 { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
            .step-card { border-right: none; padding-right: 0; }
            
            .features-grid { grid-template-columns: 1fr 1fr; border-left: none; border-top: none; gap: 24px; }
            .feature-card { border: 1px solid var(--border-color); border-radius: 8px; padding: 32px; }
            
            .testimonials-grid { grid-template-columns: 1fr; }
            
            .pricing-grid, .pricing-grid-2 { grid-template-columns: 1fr; gap: 32px; max-width: 500px; }
            .price-card:hover { transform: none; }
            .price-card.dark { transform: none; }

            .pro-benefits-grid { grid-template-columns: 1fr 1fr; }
            .coming-soon-grid { grid-template-columns: 1fr; }
            
            .footer-grid { grid-template-columns: 1fr; gap: 60px; }
            .footer-links-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
        }

        /* Mobile (malé obrazovky) */
        @media (max-width: 768px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            section { padding: 60px 0; }
            
            /* Vypnutie parallaxu na mobile kvôli bugom v iOS Safari */
            .hero, .bottom-cta { background-attachment: scroll; }
            
            .hero { padding: 120px 0 60px; }
            .hero-cta { flex-direction: column; width: 100%; }
            .hero-cta .btn { width: 100%; }
            .hero-rating { flex-direction: column; align-items: flex-start; gap: 12px; }

            .stats-grid { grid-template-columns: 1fr; gap: 32px; }
            .stat-number { font-size: 2.5rem; }

            .steps-grid, .steps-grid-3 { grid-template-columns: 1fr; gap: 32px; }
            .step-card { border-bottom: 1px solid var(--border-color); padding-bottom: 32px; }
            .step-card:last-child { border-bottom: none; padding-bottom: 0; }
            
            .features-grid { grid-template-columns: 1fr; }

            .pro-benefits-grid { grid-template-columns: 1fr; }

            .bottom-cta h2 { font-size: 3rem; }
            .bottom-cta { padding: 80px 0; }
            .bottom-cta > div > div { flex-direction: column; gap: 24px; width: 100%; }
            .bottom-cta .btn { width: 100%; }
            .bottom-rating { margin-left: 0; }

            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            .footer-links-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
            .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
            
            .mock-listing { flex-direction: column; }
            .mock-img { width: 100%; height: 160px; }

            .banner-content { flex-direction: column; gap: 8px; text-align: center; }
            .banner-cta { width: 100%; }

            /* Mobile Navigácia */
            .mobile-menu-btn { display: block; }
            .nav-wrapper {
                display: none; /* Skryté v základe */
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(10px);
                padding: 32px 24px;
                flex-direction: column;
                align-items: center;
                gap: 32px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                margin-left: 0;
            }

            .nav-wrapper.active {
                display: flex; /* Zobrazené po kliknutí */
            }

            .nav-links {
                flex-direction: column;
                align-items: center;
                gap: 24px;
            }

            .nav-actions {
                flex-direction: column;
                width: 100%;
                gap: 16px;
            }
            
            .nav-actions .btn { width: 100%; }

            /* Promo popup mobile */
            .promo-popup { 
                align-items: flex-start; /* Start from top to prevent cutting off the close button */
                overflow-y: auto; 
                padding: 20px;
            }
            .promo-apple-cards { grid-template-columns: 1fr; }
            .promo-popup-content.apple-style { 
                padding: 72px 24px 32px; 
                margin-top: 20px; /* Space from top */
                margin-bottom: 20px; /* Space from bottom */
                transform: none !important; /* Avoid scale/translate issues on mobile */
            }
            .top-logo { top: 20px; }
            .promo-popup-close.apple-close { top: 16px; left: 16px; width: 32px; height: 32px; z-index: 20; }
            .promo-large-heading { font-size: 2.5rem; margin-top: 24px; margin-bottom: 32px; }
        }

        /* Skrytie bannerov na veľmi malých displejoch (<= 630px) */
        @media (max-width: 630px) {
            .scroll-promo-banner, 
            .fixed-upgrade-banner { 
                display: none !important; 
            }
        }

