.brand-page-hero {
    padding: 40px 0 24px;
    background: linear-gradient(180deg, #f7f7f7 0%, #fff 100%);
}

.brand-page-hero__grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 28px;
    align-items: center;
}

.brand-page-hero__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.brand-page-hero__logo img {
    max-height: 56px;
    width: auto;
}

.brand-page-hero__title {
    margin: 0 0 12px;
}

.brand-page-hero__lead {
    margin: 0;
    max-width: 820px;
    line-height: 1.6;
    color: #444;
}

.brand-page-prices {
    padding: 24px 0 48px;
}

.brand-page-prices__note {
    margin: 0 0 20px;
    color: #666;
    font-size: 15px;
}

.brand-models-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.brand-models-table th,
.brand-models-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.brand-models-table th {
    background: #ffcb2e;
    color: #111;
    font-weight: 600;
}

.brand-models-table tr:last-child td {
    border-bottom: none;
}

.brand-models-table tbody tr:hover {
    background: #fffef5;
}

.brand-models-table__price {
    font-weight: 700;
    color: #111;
    white-space: nowrap;
}

.brand-models-table__price span {
    color: #111;
    background: #ffcb2e;
    padding: 2px 8px;
    border-radius: 4px;
}

.brand-page-cta {
    margin-top: 32px;
    padding: 28px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: center;
    justify-content: space-between;
}

.brand-page-cta__text {
    margin: 0;
    max-width: 640px;
    line-height: 1.5;
}

.brand-page-cta .md-main-color-btn {
    flex-shrink: 0;
}

.brand-page-info {
    padding: 32px 0 8px;
}

.brand-page-info__list {
    margin: 16px 0;
    padding-left: 1.2em;
    line-height: 1.7;
    color: #333;
}

.brand-page-info__list li {
    margin-bottom: 8px;
}

.brand-page-info__text {
    margin: 0;
    max-width: 820px;
    line-height: 1.6;
    color: #444;
}

.brand-list-intro {
    margin-bottom: 24px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .brand-page-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-page-hero__logo {
        margin: 0 auto;
        max-width: 180px;
    }

    .brand-models-table th,
    .brand-models-table td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .brand-page-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}
