:root {
            --primary: #d9a404;
            --primary-dark: #b8890a;
            --primary-light: #fdf3d7;
            --dark: #131a30;
            --dark-soft: #1b2440;
            --gray-900: #111827;
            --gray-700: #374151;
            --gray-600: #4b5563;
            --gray-400: #9ca3af;
            --gray-200: #e5e7eb;
            --gray-100: #f3f4f6;
            --gray-50: #f9fafb;
            --white: #ffffff;
            --radius: 12px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--gray-700);
            line-height: 1.7;
            background: var(--white);
        }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        nav {
            position: fixed; top: 0; left: 0; right: 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--gray-200);
        }
        nav .container { display: flex; justify-content: space-between; align-items: center; height: 72px; }
        .logo { font-size: 1.25rem; font-weight: 800; color: var(--dark); text-decoration: none; }
        .logo span { color: var(--primary); }
        .nav-links { display: flex; gap: 20px; list-style: none; align-items: center; }
        .nav-links a {
            text-decoration: none; color: var(--gray-600); font-size: 0.9rem;
            font-weight: 500; transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--primary); }
        .nav-cta {
            background: var(--primary); color: var(--white) !important;
            padding: 10px 24px; border-radius: 8px; font-weight: 600 !important;
        }
        .nav-cta:hover { background: var(--primary-dark) !important; }
        .page-header {
            padding: 120px 0 40px;
            background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-light) 100%);
        }
        .page-header h1 { font-size: 2rem; font-weight: 800; color: var(--dark); max-width: 800px; }
        .breadcrumb { margin-top: 12px; font-size: 0.85rem; color: var(--gray-600); }
        .breadcrumb a { color: var(--primary); text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .article { padding: 48px 0 80px; }
        .article-inner { max-width: 800px; }
        .article-inner h1 { font-size: 2rem; font-weight: 800; color: var(--dark); margin-top: 48px; margin-bottom: 20px; }
        .article-inner h2 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-top: 40px; margin-bottom: 16px; }
        .article-inner h3 { font-size: 1.15rem; font-weight: 600; color: var(--dark-soft); margin-top: 32px; margin-bottom: 12px; }
        .article-inner h4 { font-size: 1rem; font-weight: 600; color: var(--dark-soft); margin-top: 24px; margin-bottom: 10px; }
        .article-inner p { margin-bottom: 16px; font-size: 0.95rem; }
        .article-inner ul, .article-inner ol { margin: 0 0 16px 24px; font-size: 0.95rem; }
        .article-inner li { margin-bottom: 6px; }
        .article-inner a { color: var(--primary); text-decoration: none; }
        .article-inner a:hover { text-decoration: underline; }
        .article-inner hr { border: none; border-top: 1px solid var(--gray-200); margin: 32px 0; }
        .article-inner strong { color: var(--dark-soft); }
        .table-wrapper { overflow-x: auto; margin: 20px 0; }
        .article-inner table {
            width: 100%; border-collapse: collapse; font-size: 0.9rem;
        }
        .article-inner th {
            background: var(--dark); color: var(--white); padding: 12px 16px;
            text-align: left; font-weight: 600; white-space: nowrap;
        }
        .article-inner td { padding: 10px 16px; border-bottom: 1px solid var(--gray-200); }
        .article-inner tr:hover td { background: var(--gray-50); }
        .hero-image {
            width: 100%; max-height: 420px; object-fit: cover;
            border-radius: var(--radius); margin-bottom: 32px;
        }
        .toc {
            background: var(--gray-50); border: 1px solid var(--gray-200);
            border-radius: var(--radius); padding: 24px 28px; margin-bottom: 36px;
        }
        .toc-title {
            font-weight: 700; color: var(--dark); font-size: 1rem; margin-bottom: 12px;
        }
        .toc ol {
            list-style: none; margin: 0; padding: 0; counter-reset: toc-counter;
        }
        .toc li {
            counter-increment: toc-counter; margin-bottom: 6px;
        }
        .toc li::before {
            content: counter(toc-counter) ". "; color: var(--gray-400); font-weight: 500;
        }
        .toc li.toc-h3 {
            padding-left: 20px; font-size: 0.9rem;
        }
        .toc li.toc-h3::before {
            content: ""; counter-increment: toc-counter -1;
        }
        .toc a {
            color: var(--gray-700); text-decoration: none; font-size: 0.93rem;
            transition: color 0.2s;
        }
        .toc a:hover { color: var(--primary); }
        .cta-box {
            background: linear-gradient(135deg, var(--primary-light), #dbeafe);
            border-radius: var(--radius); padding: 32px; margin: 40px 0; text-align: center;
        }
        .cta-box h3 { color: var(--dark); margin-bottom: 12px; }
        .cta-box p { margin-bottom: 16px; }
        .cta-box a {
            display: inline-block; background: var(--primary); color: var(--white);
            padding: 12px 32px; border-radius: 8px; font-weight: 600;
            text-decoration: none; transition: background 0.2s;
        }
        .cta-box a:hover { background: var(--primary-dark); }
        footer { background: var(--dark); color: var(--gray-400); padding: 24px 0; }
        .footer-bottom {
            display: flex; justify-content: space-between; font-size: 0.8rem;
            flex-wrap: wrap; gap: 12px;
        }
        .footer-bottom a { color: var(--gray-400); text-decoration: none; }
        .footer-bottom a:hover { color: var(--white); }
        @media (max-width: 768px) {
            .page-header h1 { font-size: 1.4rem; }
            .article-inner h1 { font-size: 1.5rem; }
            .article-inner h2 { font-size: 1.2rem; }
            .nav-links { display: none; }
        }

/* --- dodane 27.08.2026 przez _seo/build.cjs --- */
.article-hero { margin: 0 0 2rem; }
.article-hero img { width: 100%; height: auto; border-radius: var(--radius); display: block; }
.related { margin-top: 3rem; padding: 1.75rem; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); }
.related h2 { margin-top: 0; }
.related ul { margin: 0; padding-left: 1.25rem; }
.related li { margin: .5rem 0; }
.related a { color: var(--primary-dark); text-decoration: none; font-weight: 600; }
.related a:hover { text-decoration: underline; }
.cta-phone { display: inline-block; margin-top: .75rem; padding: .85rem 1.6rem; background: var(--primary); color: var(--white); font-weight: 700; font-size: 1.1rem; border-radius: var(--radius); text-decoration: none; }
.cta-phone:hover { background: var(--primary-dark); }

/* --- listing bloga (przeniesione z blog/index.html) --- */
.blog-grid {
            padding: 48px 0 80px;
        }
.blog-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 24px;
        }
.blog-card {
            display: block;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius);
            overflow: hidden;
            text-decoration: none;
            transition: all 0.2s;
        }
.blog-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
.blog-card-body {
            padding: 24px 28px 28px;
        }
.blog-card:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
            transform: translateY(-2px);
        }
.blog-card h2 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
            line-height: 1.4;
        }
.blog-card p {
            font-size: 0.88rem;
            color: var(--gray-600);
            margin-bottom: 14px;
            line-height: 1.6;
        }
.read-more {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
        }
.blog-cards { grid-template-columns: 1fr; }
