        /* ===== COMPANY PROFILE PAGE STYLES ===== */

        /* Hero Section */
        .cp-hero {
            background: linear-gradient(to bottom, var(--zinc-50), white);
            padding: 100px 0 40px 0;
        }

        .cp-hero-container {
            max-width: 72rem;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Breadcrumb */
        .cp-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .cp-breadcrumb a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.15s;
        }

        .cp-breadcrumb a:hover {
            color: var(--text-primary);
        }

        .cp-breadcrumb svg {
            width: 14px;
            height: 14px;
            color: var(--zinc-400);
        }

        /* Hero Card */
        .cp-hero-card {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-3xl);
            padding: 32px;
            box-shadow: var(--shadow-sm);
        }

        .cp-hero-top {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 20px;
        }

        .cp-logo {
            width: 176px;
            height: 72px;
            border-radius: var(--radius-2xl);
            border: 1px solid var(--border-light);
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .cp-logo img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            padding: 8px 10px;
        }

        .cp-logo-initials {
            width: 72px;
            height: 72px;
            border-radius: var(--radius-2xl);
            background: var(--zinc-900);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            flex-shrink: 0;
        }

        .cp-hero-info {
            flex: 1;
            min-width: 0;
        }

        .cp-company-name {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.3;
            letter-spacing: -0.025em;
            margin-bottom: 6px;
        }

        .cp-company-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .cp-company-kicker::before {
            content: "";
            width: 28px;
            height: 1px;
            background: var(--border-light);
        }

        .cp-hero-summary {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-secondary);
            max-width: 52rem;
            margin-bottom: 18px;
        }

        .cp-hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
        }

        .cp-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 500;
            border: 1px solid var(--border-light);
            background: white;
            color: var(--zinc-700);
        }

        .cp-badge svg, .cp-badge i {
            width: 14px;
            height: 14px;
            font-size: 12px;
            color: var(--zinc-500);
        }

        .cp-badge-active {
            background: rgba(34, 197, 94, 0.1);
            color: #059669;
            border-color: rgba(34, 197, 94, 0.2);
        }

        .cp-badge-active i {
            color: #059669;
            font-size: 7px;
            width: 7px;
            height: 7px;
            flex-shrink: 0;
            align-self: center;
        }

        /* Stats Row */
        .cp-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 12px;
            margin-bottom: 20px;
        }

        .cp-stat {
            display: flex;
            align-items: center;
            gap: 12px;
            background: white;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-2xl);
            padding: 12px 16px;
            box-shadow: var(--shadow-sm);
        }

        .cp-stat-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: var(--radius-2xl);
            border: 1px solid var(--border-light);
            background: white;
            flex-shrink: 0;
        }

        .cp-stat-icon i {
            font-size: 14px;
            color: var(--zinc-600);
        }

        .cp-stat-text {
            min-width: 0;
        }

        .cp-stat-value {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .cp-stat-label {
            font-size: 0.7rem;
            color: var(--text-secondary);
        }

        /* Hero Actions */
        .cp-hero-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .cp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: var(--radius-2xl);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid transparent;
            white-space: nowrap;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
        }

        .cp-btn-primary {
            background: var(--zinc-900);
            color: white;
            border-color: var(--zinc-900);
        }

        .cp-btn-primary:hover {
            background: var(--zinc-800);
        }

        .cp-btn-outline {
            background: white;
            color: var(--text-primary);
            border-color: var(--border-light);
        }

        .cp-btn-outline:hover {
            background: var(--zinc-50);
        }

        .cp-btn i {
            font-size: 14px;
        }

        .la-company-hero {
            padding-top: 92px;
        }

        .la-company-hero .breadcrumb-section {
            margin-bottom: 18px;
        }

        .la-company-hero .breadcrumb-centered,
        .la-company-hero .breadcrumb-nav {
            justify-content: flex-start;
        }

        .la-company-hero .la-hero-top {
            align-items: stretch;
        }

        .la-company-hero .la-hero-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .la-company-hero .la-hero-sub {
            max-width: 620px;
        }

        .la-company-hero .la-hero-ctas {
            margin-bottom: 14px;
        }

        .la-company-hero .la-hero-trust-label {
            min-width: 150px;
        }

        .la-company-hero .la-hero-trust-item {
            min-width: 0;
        }

        .la-company-hero .la-hero-trust-text {
            min-width: 0;
            white-space: normal;
            overflow-wrap: anywhere;
        }

        .company-hero-panel {
            height: 100%;
            background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 24px;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .company-hero-panel-logo-shell {
            width: 100%;
            min-height: 92px;
            border-radius: 20px;
            border: 1px solid var(--border-light);
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .company-hero-panel-logo {
            display: block;
            width: 100%;
            max-height: 92px;
            object-fit: contain;
            padding: 14px 18px;
        }

        .company-hero-panel-initials {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            background: var(--zinc-900);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: 0.04em;
        }

        .company-hero-panel-kicker {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .company-hero-panel-name {
            font-size: 1.35rem;
            line-height: 1.2;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .company-hero-panel-copy {
            font-size: 0.9rem;
            line-height: 1.65;
            color: var(--text-secondary);
        }

        .company-hero-panel-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .company-hero-panel-tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 10px;
            border-radius: var(--radius-full);
            border: 1px solid var(--border-light);
            background: white;
            font-size: 0.75rem;
            color: var(--text-secondary);
        }

        .company-hero-panel-rows {
            display: grid;
            gap: 10px;
            margin-top: auto;
        }

        .company-hero-panel-row {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 12px 14px;
        }

        .company-hero-panel-row-label {
            display: block;
            font-size: 0.68rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .company-hero-panel-row-value {
            display: block;
            font-size: 0.88rem;
            line-height: 1.45;
            color: var(--text-primary);
        }

        /* Main Content Area */
        .cp-main {
            padding-top: 32px;
            padding-bottom: 60px;
        }

        .cp-grid {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 32px;
            align-items: start;
        }

        .cp-content {
            min-width: 0;
        }

        .cp-inline-note {
            font-size: 0.85rem;
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 18px;
        }

        .cp-sidebar-col {
            position: sticky;
            top: 100px;
        }

        /* Section Cards */
        .cp-section {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-3xl);
            padding: 28px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-sm);
        }

        .cp-section-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .cp-section-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: var(--radius-2xl);
            border: 1px solid var(--border-light);
            background: white;
            flex-shrink: 0;
        }

        .cp-section-icon i {
            font-size: 14px;
            color: var(--zinc-600);
        }

        .cp-section-title {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .cp-section-count {
            margin-left: auto;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-secondary);
            background: var(--zinc-100);
            padding: 2px 10px;
            border-radius: var(--radius-full);
        }

        /* About/Description */
        .cp-description {
            font-size: 0.9375rem;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .cp-description p {
            margin-bottom: 12px;
        }

        .cp-description p:last-child {
            margin-bottom: 0;
        }

        .cp-snapshot-grid,
        .cp-faq-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .cp-snapshot-card,
        .cp-faq-item {
            border: 1px solid var(--border-light);
            border-radius: var(--radius-2xl);
            padding: 18px;
            background: var(--bg-secondary);
        }

        .cp-snapshot-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .cp-snapshot-value {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-primary);
        }

        .cp-chip-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .cp-chip,
        .cp-chip-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            border-radius: var(--radius-full);
            border: 1px solid var(--border-light);
            background: white;
            color: var(--text-primary);
            font-size: 0.8125rem;
            line-height: 1.2;
        }

        .cp-chip-link:hover {
            border-color: var(--zinc-400);
            background: var(--zinc-50);
        }

        .cp-chip-count {
            color: var(--text-muted);
            font-size: 0.75rem;
        }

        .cp-faq-question {
            font-size: 0.96rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .cp-faq-answer {
            font-size: 0.9rem;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        /* Info Grid inside sections */
        .cp-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .cp-info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px;
            background: var(--zinc-50);
            border-radius: var(--radius-2xl);
            border: 1px solid var(--border-lighter);
        }

        .cp-info-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: var(--radius-lg);
            background: white;
            border: 1px solid var(--border-light);
            flex-shrink: 0;
        }

        .cp-info-icon i {
            font-size: 13px;
            color: var(--zinc-500);
        }

        .cp-info-label {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 2px;
        }

        .cp-info-value {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        .cp-info-value a {
            color: var(--text-primary);
            text-decoration: none;
        }

        .cp-info-value a:hover {
            color: var(--zinc-600);
        }

        /* Sidebar Cards */
        .cp-sidebar-card {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-3xl);
            padding: 24px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
        }

        .cp-sidebar-title {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .cp-quick-stats {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .cp-quick-stat {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            background: var(--zinc-50);
            border-radius: var(--radius-2xl);
            border: 1px solid var(--border-lighter);
        }

        .cp-quick-stat-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cp-quick-stat-left i {
            font-size: 14px;
            color: var(--zinc-500);
            width: 16px;
            text-align: center;
        }

        .cp-quick-stat-label {
            font-size: 0.8125rem;
            color: var(--text-secondary);
        }

        .cp-quick-stat-value {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* CTA Card */
        .cp-cta-card {
            background: var(--zinc-900);
            border-radius: var(--radius-3xl);
            padding: 24px;
            margin-bottom: 20px;
            color: white;
        }

        .cp-cta-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .cp-cta-text {
            font-size: 0.8125rem;
            color: var(--zinc-400);
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .cp-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: white;
            color: var(--zinc-900);
            border-radius: var(--radius-2xl);
            font-size: 0.8125rem;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.15s;
        }

        .cp-cta-btn:hover {
            background: var(--zinc-100);
        }

        .cp-pro-workflow {
            border-color: rgba(17, 24, 39, 0.12);
            background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
        }

        .cp-pro-workflow-eyebrow {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .cp-pro-workflow-title {
            font-size: 1rem;
            line-height: 1.35;
            font-weight: 650;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .cp-pro-workflow-body {
            font-size: 0.82rem;
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 14px;
        }

        .cp-pro-workflow-actions {
            display: grid;
            gap: 8px;
        }

        .cp-pro-workflow-actions .cp-btn {
            width: 100%;
        }

        .cp-pro-workflow-save-status {
            margin-top: 10px;
            font-size: 0.76rem;
            line-height: 1.45;
            color: var(--text-secondary);
        }

        .cp-pro-workflow-save-status.is-success {
            color: var(--success);
            font-weight: 600;
        }

        .cp-pro-workflow-save-status.is-error {
            color: #b91c1c;
            font-weight: 600;
        }

        .cp-pro-workflow-boundary {
            margin-top: 12px;
            font-size: 0.72rem;
            line-height: 1.5;
            color: var(--text-muted);
        }

        .cp-pro-workflow-boundary summary {
            cursor: pointer;
            font-weight: 650;
            color: var(--text-secondary);
        }

        .cp-pro-workflow-boundary div {
            margin-top: 6px;
        }

        /* Empty State */
        .cp-empty {
            text-align: center;
            padding: 48px 24px;
        }

        .cp-empty-icon {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-2xl);
            background: var(--zinc-100);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .cp-empty-icon i {
            font-size: 24px;
            color: var(--zinc-400);
        }

        .cp-empty h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .cp-empty p {
            font-size: 0.8125rem;
            color: var(--text-secondary);
            max-width: 320px;
            margin: 0 auto 20px;
            line-height: 1.5;
        }

        /* Jobs Section Title */
        .cp-jobs-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .cp-grid {
                grid-template-columns: 1fr;
            }

            .cp-sidebar-col {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .cp-sidebar-card {
                margin-bottom: 0;
            }
        }

        @media (max-width: 768px) {
            .company-hero-panel {
                padding: 20px;
            }

            .company-hero-panel-name {
                font-size: 1.2rem;
            }

            .cp-hero {
                padding: 90px 0 32px 0;
            }

            .cp-hero-card {
                padding: 20px;
                border-radius: var(--radius-2xl);
            }

            .cp-hero-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .cp-company-name {
                font-size: 1.375rem;
            }

            .cp-logo {
                width: 152px;
                height: 64px;
            }

            .cp-stats {
                grid-template-columns: 1fr 1fr;
            }

            .cp-main {
                padding-top: 20px;
                padding-bottom: 40px;
            }

            .cp-info-grid {
                grid-template-columns: 1fr;
            }

            .cp-snapshot-grid,
            .cp-faq-list {
                grid-template-columns: 1fr;
            }

            .cp-section {
                padding: 20px;
                border-radius: var(--radius-2xl);
            }

            .cp-sidebar-col {
                grid-template-columns: 1fr;
            }

            .cp-hero-actions {
                flex-direction: column;
            }

            .cp-btn {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .cp-stats {
                grid-template-columns: 1fr;
            }

            .la-company-hero .breadcrumb-section {
                display: none;
            }

            .cp-breadcrumb {
                display: none;
            }
        }
    
