.wpo-header:has(.practipix-site-header) {
    position: static !important;
    top: auto !important;
    z-index: auto;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #070b10 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.practipix-header-row,
.practipix-header-row > .wpb_column,
.practipix-header-row > .vc_column_container,
.practipix-header-row > .wpb_column > .vc_column-inner,
.practipix-header-row .wpb_wrapper {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.practipix-header-row {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000;
    overflow: visible !important;
}

.admin-bar .practipix-header-row {
    top: 32px !important;
}

.practipix-site-header {
    --pp-header-bg: #070b10;
    --pp-header-blue: #168fe5;
    --pp-header-orange: #ff8a13;
    --pp-header-text: #f4f7f9;
    --pp-header-muted: #8d99a3;
    position: relative;
    width: 100%;
    color: var(--pp-header-text);
    background:
        radial-gradient(circle at 10% -100%, color-mix(in srgb, var(--pp-header-blue) 18%, transparent), transparent 47%),
        color-mix(in srgb, var(--pp-header-bg) 96%, transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "Barlow", "Montserrat", sans-serif;
    isolation: isolate;
}

.practipix-site-header,
.practipix-site-header * {
    box-sizing: border-box;
}

.practipix-site-header__accent {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    overflow: hidden;
    pointer-events: none;
}

.practipix-site-header__accent::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: min(34vw, 520px);
    height: 100%;
    background: linear-gradient(90deg, var(--pp-header-blue), var(--pp-header-orange), transparent);
}

.practipix-site-header__bar {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(350px, auto) minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(22px, 3vw, 52px);
    width: min(1980px, 100%);
    min-height: 82px;
    margin: 0 auto;
    padding: 13px clamp(22px, 4vw, 64px);
}

.practipix-site-header__full-nav {
    position: relative;
    z-index: 2;
    width: 100%;
}

.practipix-site-header__full-nav > div {
    width: 100%;
}

.practipix-site-header__full-nav ul {
    display: flex;
    align-items: stretch;
    margin: 0;
    padding: 0;
    list-style: none;
}

.practipix-site-header__full-nav li {
    min-width: 0;
    margin: 0;
    padding: 0;
    flex: 1 1 0;
    list-style: none;
}

.practipix-site-header__full-nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 4px;
    color: #aeb7bf;
    font-size: clamp(11px, 0.82vw, 14px);
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: color 180ms ease, background-color 180ms ease;
}

.practipix-site-header__full-nav a::after {
    content: "";
    position: absolute;
    right: 22%;
    bottom: 0;
    left: 22%;
    height: 2px;
    background: linear-gradient(90deg, var(--pp-header-blue), var(--pp-header-orange));
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.practipix-site-header__full-nav a:hover,
.practipix-site-header__full-nav a:focus-visible,
.practipix-site-header__full-nav a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
    text-decoration: none;
}

.practipix-site-header__full-nav a:hover::after,
.practipix-site-header__full-nav a:focus-visible::after,
.practipix-site-header__full-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.practipix-site-header__brand {
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 0;
    color: var(--pp-header-text);
    text-decoration: none;
}

.practipix-site-header__brand:hover,
.practipix-site-header__brand:focus-visible {
    color: var(--pp-header-text);
    text-decoration: none;
}

.practipix-site-header__brand img {
    display: block;
    width: clamp(164px, 13vw, 190px);
    height: auto;
    flex: 0 0 auto;
    object-fit: contain;
}

.practipix-site-header__fallback-logo {
    color: var(--pp-header-blue);
    font-family: "Barlow Semi Condensed", "Barlow", sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.practipix-site-header__fallback-logo strong {
    color: var(--pp-header-orange);
}

.practipix-site-header__slogan {
    position: relative;
    display: block;
    max-width: 190px;
    padding-left: 24px;
    color: #a4aeb6;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.015em;
    line-height: 1.35;
}

.practipix-site-header__slogan::before {
    content: "";
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 0;
    width: 1px;
    height: 34px;
    background: linear-gradient(to bottom, var(--pp-header-blue), var(--pp-header-orange));
    transform: translateY(-50%);
}

.practipix-site-header__desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    min-width: 0;
}

.practipix-site-header__desktop-nav > ul {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.practipix-site-header__desktop-nav li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.practipix-site-header__desktop-nav > ul a,
.practipix-site-header__more > button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 0;
    padding: 10px 12px;
    border: 0;
    border-radius: 8px;
    color: #bec6cd;
    background: transparent;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    transition: color 180ms ease, background-color 180ms ease;
}

.practipix-site-header__desktop-nav > ul a::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 5px;
    left: 12px;
    height: 1px;
    background: linear-gradient(90deg, var(--pp-header-blue), var(--pp-header-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.practipix-site-header__desktop-nav > ul a:hover,
.practipix-site-header__desktop-nav > ul a:focus-visible,
.practipix-site-header__desktop-nav > ul a[aria-current="page"],
.practipix-site-header__more > button:hover,
.practipix-site-header__more > button:focus-visible,
.practipix-site-header__more.is-open > button {
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
    text-decoration: none;
}

.practipix-site-header__desktop-nav > ul a:hover::after,
.practipix-site-header__desktop-nav > ul a:focus-visible::after,
.practipix-site-header__desktop-nav > ul a[aria-current="page"]::after {
    transform: scaleX(1);
}

.practipix-site-header__more {
    position: relative;
}

.practipix-site-header__more > button {
    gap: 5px;
}

.practipix-site-header__more > button svg {
    width: 14px;
    height: 14px;
    transition: transform 180ms ease;
}

.practipix-site-header__more.is-open > button svg {
    transform: rotate(180deg);
}

.practipix-site-header__more-panel {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    z-index: 20;
    width: 350px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(22, 143, 229, 0.08), transparent 40%),
        #0d141b;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    animation: practipix-header-panel-in 180ms ease both;
}

.practipix-site-header__more-panel[hidden] {
    display: none;
}

.practipix-site-header__more-kicker,
.practipix-site-header__drawer-kicker {
    display: block;
    margin-bottom: 16px;
    color: var(--pp-header-blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.practipix-site-header__more-panel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.practipix-site-header__more-panel a {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 9px;
    border-radius: 8px;
    color: #dce2e7;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease;
}

.practipix-site-header__more-panel a:hover,
.practipix-site-header__more-panel a:focus-visible,
.practipix-site-header__more-panel a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
}

.practipix-site-header__more-panel a > span {
    color: #58636d;
    font-size: 9px;
    font-weight: 700;
}

.practipix-site-header__more-panel a strong {
    min-width: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.15;
}

.practipix-site-header__more-panel a svg {
    width: 15px;
    height: 15px;
    color: #6b7680;
}

.practipix-site-header__actions {
    display: flex;
    align-items: center;
    gap: 13px;
}

.practipix-site-header__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #7f8a94;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.practipix-site-header__status > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #49d17d;
    box-shadow: 0 0 0 4px rgba(73, 209, 125, 0.08);
}

.practipix-site-header .practipix-site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 15px;
    border: 1px solid color-mix(in srgb, var(--pp-header-blue) 80%, #fff);
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, color-mix(in srgb, var(--pp-header-blue) 88%, #fff), var(--pp-header-blue));
    box-shadow: 0 12px 30px color-mix(in srgb, var(--pp-header-blue) 20%, transparent);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.practipix-site-header__cta svg {
    width: 18px;
    height: 18px;
}

.practipix-site-header .practipix-site-header__cta:hover,
.practipix-site-header .practipix-site-header__cta:focus-visible {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px color-mix(in srgb, var(--pp-header-blue) 27%, transparent);
}

.practipix-site-header__toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9px;
    color: #fff;
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
    appearance: none;
    place-items: center;
}

.practipix-site-header__toggle span {
    grid-column: 1;
    grid-row: 1;
    display: block;
    width: 20px;
    height: 1.5px;
    background: currentColor;
    transition: transform 200ms ease;
}

.practipix-site-header__toggle span:first-child {
    transform: translateY(-4px);
}

.practipix-site-header__toggle span:last-child {
    transform: translateY(4px);
}

.practipix-site-header__toggle.is-open span:first-child {
    transform: rotate(45deg);
}

.practipix-site-header__toggle.is-open span:last-child {
    transform: rotate(-45deg);
}

.practipix-site-header__drawer {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 10;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at 90% 10%, rgba(22, 143, 229, 0.14), transparent 30%),
        #0a1016;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    animation: practipix-header-drawer-in 220ms ease both;
}

.practipix-site-header__drawer[hidden] {
    display: none;
}

.practipix-site-header__drawer-inner {
    width: min(900px, 100%);
    margin: 0 auto;
    padding: 34px clamp(20px, 5vw, 48px) 38px;
}

.practipix-site-header__drawer-slogan {
    max-width: 390px;
    margin: 0 0 28px;
    color: #98a3ac;
    font-family: "Barlow Semi Condensed", "Barlow", sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.practipix-site-header__drawer nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 1px solid rgba(255, 255, 255, 0.11);
    list-style: none;
}

.practipix-site-header__drawer nav li {
    margin: 0;
    padding: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    list-style: none;
}

.practipix-site-header__drawer nav a {
    display: flex;
    align-items: baseline;
    gap: 13px;
    min-height: 63px;
    padding: 18px;
    color: #e3e8ec;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease;
}

.practipix-site-header__drawer nav a:hover,
.practipix-site-header__drawer nav a:focus-visible,
.practipix-site-header__drawer nav a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
    text-decoration: none;
}

.practipix-site-header__drawer nav a span {
    color: var(--pp-header-blue);
    font-size: 9px;
    font-weight: 700;
}

.practipix-site-header__drawer nav a strong {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;
}

.practipix-site-header__drawer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
}

.practipix-site-header__drawer-footer > span {
    color: #69757f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.practipix-site-header__drawer-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.practipix-site-header__drawer-footer a svg {
    width: 17px;
    height: 17px;
}

body.practipix-header-menu-open {
    overflow: hidden;
}

@keyframes practipix-header-panel-in {
    from { opacity: 0; transform: translateY(-7px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes practipix-header-drawer-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) and (min-width: 901px) {
    .practipix-site-header__bar {
        grid-template-columns: 175px minmax(0, 1fr);
        gap: 14px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .practipix-site-header__brand img {
        width: 155px;
    }

    .practipix-site-header__slogan {
        display: none;
    }

    .practipix-site-header__full-nav a {
        padding-inline: 2px;
        font-size: clamp(10px, 1.15vw, 12px);
    }
}

@media (max-width: 900px) {
    .practipix-site-header__full-nav {
        display: none;
    }

    .practipix-site-header__toggle {
        display: grid;
    }
}

@media (max-width: 760px) {
    .practipix-site-header__bar {
        min-height: 82px;
        gap: 10px;
        padding: 11px 16px;
    }

    .practipix-site-header__brand {
        gap: 14px;
    }

    .practipix-site-header__brand img {
        width: 150px;
    }

    .practipix-site-header__slogan {
        max-width: 150px;
        padding-left: 15px;
        font-size: 10px;
    }

    .practipix-site-header__status {
        display: none;
    }

    .practipix-site-header__drawer {
        max-height: calc(100vh - 82px);
    }
}

@media (max-width: 580px) {
    .practipix-site-header__bar {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .practipix-site-header__slogan,
    .practipix-site-header__actions {
        display: none;
    }

    .practipix-site-header__drawer nav ul {
        grid-template-columns: 1fr;
    }

    .practipix-site-header__drawer nav a {
        min-height: 56px;
        padding: 15px;
    }

    .practipix-site-header__drawer-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 782px) {
    .admin-bar .practipix-header-row {
        top: 46px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .practipix-site-header *,
    .practipix-site-header *::before,
    .practipix-site-header *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
