/* header — шапка главной (Figma 130:30416) */
.header {
    width: 100%;
}

.header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 40px;
    background: var(--bg-layout);
    backdrop-filter: blur(var(--blur-header));
    -webkit-backdrop-filter: blur(var(--blur-header));
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.header__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 4px;
    text-decoration: none;
}

.header__label {
    font-weight: var(--fw-medium);
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary);
}

.header__phone {
    font-weight: var(--fw-bold);
    font-size: 16px;
    line-height: 24px;
    color: var(--text-primary);
}

.header__support {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 4px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-family);
}

.header__support-label {
    font-weight: var(--fw-medium);
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary);
}

.header__support-link {
    font-weight: var(--fw-medium);
    font-size: 16px;
    line-height: 24px;
    color: var(--text-primary);
    text-decoration: underline;
}

@media (max-width: 800px) {
    .header__bar {
        padding: 16px 12px;
        gap: 16px;
    }

    .header__label,
    .header__phone,
    .header__support-label,
    .header__support-link {
        font-size: 14px;
        line-height: 20px;
    }
}
