.w-header {
    height: var(--w-header-h);
    background: #fff;
    position: relative;
    z-index: 20;
}
.w-header__inner {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--w-card-width);
    gap: 64px;
    align-items: center;
}
.w-header__brand { min-width: 0; }
.w-logo,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.w-logo {
    color: var(--w-green);
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
}
.custom-logo { width: auto; max-height: 54px; }
.w-header__right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}
.w-header-usps {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    font-size: 15px;
    font-weight: 700;
}
.w-header-usps span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}
.w-header-usps i {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--w-green);
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}
.w-phone {
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1.5px solid var(--w-green);
    border-radius: 12px;
    padding: 9px 14px;
    background: #fff;
    color: var(--w-green);
    text-decoration: none;
    flex: 0 0 auto;
}
.w-phone__icon { font-size: 24px; }
.w-phone small,
.w-phone strong { display: block; }
.w-phone small { color: #2b332f; font-size: 12px; }
.w-phone strong { font-size: 18px; line-height: 1.1; }
