.logo {
    width: 36px;
    height: 42px;
    border-radius: 9px;
    background: linear-gradient(145deg, #0e7cff, #4db8ff);
    position: relative;
    box-shadow: inset 0 -5px 10px rgba(255, 255, 255, 0.22), 0 8px 16px rgba(18, 104, 238, 0.22);
}

.logo::before {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 7px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.logo::after {
    content: "";
    position: absolute;
    left: 7px;
    bottom: 7px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.brand-title {
    display: block;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.brand-sub {
    display: block;
    margin-top: -2px;
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap;
}

.service {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.service-icon {
    width: 28px;
    height: 28px;
    border: 2px solid #17243a;
    border-radius: 50%;
    position: relative;
}

.service-icon::before,
.service-icon::after {
    content: "";
    position: absolute;
    background: #17243a;
}

.service-icon::before {
    width: 4px;
    height: 10px;
    border-radius: 4px;
    left: -3px;
    top: 10px;
    box-shadow: 28px 0 0 #17243a;
}

.service-icon::after {
    width: 10px;
    height: 2px;
    right: 0;
    bottom: 3px;
    transform: rotate(-20deg);
}

.service-title {
    font-size: 14px;
    font-weight: 700;
}

.service-sub {
    font-size: 11px;
    color: var(--muted);
}
