.companies-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.companies-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.companies-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    opacity: 0.95;
}

.companies-section {
    padding: 60px 0;
    background: #f8f9fb;
}

.companies-table-wrap {
    background: #fff;
    border: 1px solid rgba(41, 25, 61, 0.1);
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(41, 25, 61, 0.08);
    overflow: hidden;
}

.companies-table {
    width: 100%;
    border-collapse: collapse;
}

.companies-table th,
.companies-table td {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(41, 25, 61, 0.08);
    text-align: left;
}

.companies-table th {
    background: #29193d;
    color: #fff;
    font-weight: 700;
}

.companies-table th:first-child,
.companies-table td:first-child {
    width: 150px;
    text-align: center;
}

.companies-table tr:last-child td {
    border-bottom: 0;
}

.companies-table tbody tr:hover {
    background: #fff7ef;
}

.company-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff8000;
    font-weight: 700;
    text-decoration: none;
}

.company-link:hover {
    color: #d86b00;
}

.companies-empty-state {
    background: #fff;
    border-radius: 8px;
    padding: 48px 24px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(41, 25, 61, 0.08);
}

.companies-empty-state h3 {
    color: #29193d;
    font-weight: 700;
    margin-bottom: 8px;
}

.companies-empty-state p {
    color: #5b6470;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .companies-hero {
        padding: 56px 0;
    }

    .companies-hero h1 {
        font-size: 2rem;
    }

    .companies-table th,
    .companies-table td {
        padding: 14px 12px;
    }

    .companies-table th:first-child,
    .companies-table td:first-child {
        width: 92px;
    }
}
