.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* логотип */
.brand-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
}

/* текст */
.brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: white;
}

/* hover эффект */
.brand:hover .brand-logo {
    transform: scale(1.05);
}

.brand:hover .brand-text {
    opacity: 0.9;
}

.brand-logo,
.brand-text {
    transition: 0.3s;
}

.brand:hover .brand-text span {
    text-shadow: 0 0 10px rgba(181,23,255,0.6);
}