.brand-logo {
    align-items: center;
    color: #fff;
    display: inline-flex;
    gap: 10px;
    min-width: 0;
    text-decoration: none;
}

.brand-logo:hover {
    color: #fff;
    text-decoration: none;
}

.brand-logo__mark {
    align-items: center;
    background:
        linear-gradient(135deg, var(--brand-accent, #ff7a1a), var(--brand-accent-2, #ffd45a));
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    color: #10151f;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1;
    width: 38px;
}

.brand-logo__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-logo__name {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.05;
    white-space: nowrap;
}

.brand-logo__tagline {
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    line-height: 1.2;
    margin-top: 3px;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header__logo.brand-logo {
    max-width: calc(100vw - 78px);
}

.sidebar__logo.brand-logo {
    padding: 0 20px;
}

.seo-hidden {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

.seo-keyword-panel {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 0;
    padding: 12px 14px;
}

.seo-keyword-title {
    color: rgba(255, 255, 255, 0.7);
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    margin-right: 2px;
    text-transform: uppercase;
}

.seo-keyword-chip {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.84);
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.15;
    padding: 7px 9px;
    text-decoration: none;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.seo-keyword-chip:hover,
.seo-keyword-chip:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-accent, #ff7a1a);
    color: #fff;
    text-decoration: none;
}

.brand-surface {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.promo-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.promo-panel {
    padding: 18px;
}

.promo-panel h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 10px;
}

.promo-panel p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.55;
    margin: 0 0 12px;
}

.promo-number {
    color: var(--brand-accent-2, #ffd45a) !important;
    font-size: 22px;
    font-weight: 900;
}

.dashbox {
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.dashbox__title h3 svg,
.sidebar__nav-link svg,
.sidebar__nav-link i {
    color: var(--brand-accent, #ff7a1a);
}

.lnk__btn,
.auth-btn,
.btn-outline-warning {
    border-radius: 8px !important;
}

@media (max-width: 575px) {
    .brand-logo__tagline {
        display: none;
    }

    .brand-logo__name {
        font-size: 16px;
    }

    .brand-logo__mark {
        height: 34px;
        width: 34px;
    }

    .seo-keyword-panel {
        gap: 7px;
        padding: 11px;
    }

    .seo-keyword-title {
        flex: 1 0 100%;
    }

    .seo-keyword-chip {
        font-size: 12px;
        padding: 7px 8px;
    }
}
