        .container-xl { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
        .breadcrumbs-block { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
        .company-start-info { max-width: 1220px; margin: 0 auto; }
        .content-section { padding: 0; }
        .about-author-section, .fq-section { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

        .sticky-company-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 6000;
            background: #fff;
            box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
            border-top: 1px solid #e8e8e8;
            transform: translateY(100%);
            visibility: hidden;
            pointer-events: none;
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
            padding: 10px 0;
        }

        .sticky-company-bar.is-visible {
            transform: translateY(0);
            visibility: visible;
            pointer-events: auto;
        }

        .sticky-bar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .sticky-bar-info {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

        .sticky-bar-logo {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sticky-bar-logo img {
            width: 100%;
            height: 100%;
            border: 1px solid var(--border);
            border-radius: 10px;
            object-fit: contain;
        }

        .sticky-bar-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-color, #002937);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .sticky-bar-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--new-secondary-color, #f5c518);
            color: var(--primary-color, #002937);
            font-weight: 600;
            font-size: 15px;
            padding: 10px 24px;
            border-radius: 8px;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.2s ease, transform 0.15s ease;
            flex-shrink: 0;
        }

        .sticky-bar-cta:hover {
            background: var(--new-secondary-dark-color, #e0b400);
            color: var(--primary-color, #002937);
            transform: translateY(-1px);
            text-decoration: none;
        }

        .sticky-bar-cta svg {
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .sticky-bar-logo {
                width: 50px;
                height: 50px;
                border-radius: 10px;
                overflow: hidden;
                flex-shrink: 0;
                background: #f5f5f5;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .sticky-bar-cta {
                min-height: 44px;
                display: inline-flex;
                align-items: center;
            }
        }

        @media (max-width: 640px) {
            .sticky-bar-name {
                font-size: 14px;
                max-width: calc(100vw - 160px);
            }

            .sticky-bar-cta {
                font-size: 13px;
                padding: 8px 16px;
                min-height: 44px;
            }

            .sticky-bar-logo {
                width: 36px;
                height: 36px;
                border-radius: 8px;
            }
        }
