/* ===== ПОСАДОЧНАЯ СТРАНИЦА БРЕНДА ===== */
.brand-hero {
    background: linear-gradient(135deg, #f0f4fa 0%, #e6edf5 100%);
    border-radius: 24px;
    padding: 40px 32px;
    margin-bottom: 40px;
    text-align: center;
}

.brand-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f2b3d;
    margin-bottom: 16px;
}

.brand-hero p {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 24px auto;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.benefit-item {
    flex: 1 1 180px;
    max-width: 220px;
    background: white;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2f8;
}

.benefit-item i {
    font-size: 2rem;
    color: #2c7da0;
    margin-bottom: 12px;
}

.benefit-item div {
    font-size: 0.9rem;
    color: #1e293b;
    line-height: 1.4;
}

/* Сетка товаров бренда */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin: 20px 0 40px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2f8;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
    border-color: #cbdde9;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 16px;
}

.product-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 16px 8px;
    color: #1e293b;
}

.product-card .brand {
    font-size: 0.8rem;
    color: #2c7da0;
    margin: 0 16px 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .specs {
    font-size: 0.8rem;
    color: #5b6e8c;
    margin: 0 16px 8px;
    line-height: 1.4;
}

.product-card .price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1f5e3a;
    margin: 8px 16px 12px;
}

.btn {
    display: block;
    margin: 0 16px 16px;
    padding: 10px;
    text-align: center;
    background: #1e4a6e;
    color: white;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.btn:hover {
    background: #0f3a56;
}

/* ===== АДАПТАЦИЯ ПОСАДОЧНОЙ СТРАНИЦЫ (≤768px) ===== */
@media (max-width: 768px) {
    .brand-hero {
        padding: 28px 16px;
    }

    .brand-hero h1 {
        font-size: 1.8rem;
    }

    .benefits {
        flex-direction: column;
        align-items: center;
    }

    .benefit-item {
        max-width: 100%;
        flex: 1 1 auto;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}