.catalog-hero {
    background: linear-gradient(135deg, #eef5f0 0%, #ffffff 100%);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.catalog-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: #0b2b21;
}

.catalog-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 40px 0 80px;
}

.company-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.company-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.company-card-link:hover .company-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 28, 11, 0.15);
}

/* Широкий аватар на всю ширину карточки */
.company-avatar {
    width: 100%;
    background: #f5faf7;
    border-bottom: 1px solid #e8ede8;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-avatar img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 200px;
}

.company-desc {
    padding: 24px;
    flex-grow: 1;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

.company-desc p {
    margin-bottom: 12px;
}

.card-footer {
    padding: 20px 24px 28px;
    border-top: 1px solid #e8ede8;
    text-align: center;
}

.card-footer .btn-primary {
    pointer-events: none;
}

.brand-page {
    padding: 60px 0;
    text-align: center;
}

.brand-page h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #0b2b21;
}

.brand-page p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}