:root {
    --tez-h19-navy: var(--tez-site-primary, #121943);
    --tez-h19-navy-dark: color-mix(in srgb, var(--tez-site-primary, #121943) 78%, #000 22%);
    --tez-h19-red: var(--tez-site-secondary, #CB203A);
    --tez-h19-red-dark: color-mix(in srgb, var(--tez-site-secondary, #CB203A) 80%, #000 20%);
    --tez-h19-text: #1a2235;
    --tez-h19-muted: #667085;
    --tez-h19-line: #e7eaf0;
    --tez-h19-soft: #f5f7fa;
    --tez-h19-white: #ffffff;
    --tez-h19-width: 1240px;
}

.tez-h19-header,
.tez-h19-header *,
.tez-h19-drawer,
.tez-h19-drawer *,
.tez-h19-overlay {
    box-sizing: border-box;
}

.tez-h19-header {
    position: relative;
    z-index: 1200;
    width: 100%;
    color: var(--tez-h19-text);
}

.tez-h19-header.is-sticky {
    position: sticky;
    top: 0;
}

.tez-h19-accent {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--tez-h19-navy) 0 76%, var(--tez-h19-red) 76% 100%);
    transition: height 220ms ease;
}

.tez-h19-surface {
    width: 100%;
    background: rgba(255, 255, 255, .965);
    border-bottom: 1px solid rgba(18, 25, 67, .08);
    box-shadow: 0 1px 0 rgba(18, 25, 67, .02);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    transform: translate3d(0, 0, 0);
    transition: background-color 220ms ease, box-shadow 220ms ease, transform 360ms cubic-bezier(.2, .8, .2, 1);
}

.tez-h19-header.is-floating .tez-h19-surface {
    background: rgba(255, 255, 255, .985);
    box-shadow: 0 16px 42px rgba(18, 25, 67, .12);
}

.tez-h19-header.is-dropping .tez-h19-surface {
    animation: tezH19Drop 420ms cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes tezH19Drop {
    from {
        opacity: .35;
        transform: translate3d(0, -105%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.tez-h19-container {
    width: min(calc(100% - 40px), var(--tez-h19-width));
    margin-inline: auto;
}

.tez-h19-row {
    display: grid;
    grid-template-columns: minmax(150px, 180px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    min-height: 76px;
    transition: min-height 220ms ease, gap 220ms ease;
}

.tez-h19-header.is-floating .tez-h19-row {
    min-height: 64px;
}

.tez-h19-brand {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    text-decoration: none;
}

.tez-h19-brand img {
    display: block;
    width: auto;
    max-width: 168px;
    height: 45px;
    object-fit: contain;
    transition: max-width 220ms ease, height 220ms ease, transform 180ms ease;
}

.tez-h19-brand:hover img {
    transform: translateY(-1px);
}

.tez-h19-header.is-floating .tez-h19-brand img {
    max-width: 148px;
    height: 39px;
}

.tez-h19-desktop-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.tez-h19-nav-item {
    position: relative;
}

.tez-h19-nav-parent {
    display: flex;
    align-items: center;
    border-radius: 11px;
    transition: background-color 180ms ease;
}

.tez-h19-nav-item:hover .tez-h19-nav-parent,
.tez-h19-nav-item:focus-within .tez-h19-nav-parent,
.tez-h19-nav-item.is-open .tez-h19-nav-parent {
    background: var(--tez-h19-soft);
}

.tez-h19-nav-link {
    position: relative;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 12px;
    color: var(--tez-h19-text);
    font-size: 14px;
    font-weight: 680;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 11px;
    transition: color 180ms ease;
}

.tez-h19-nav-item.has-children .tez-h19-nav-link {
    padding-right: 6px;
}

.tez-h19-nav-link:hover,
.tez-h19-nav-link:focus-visible {
    color: var(--tez-h19-navy);
    outline: none;
}

.tez-h19-nav-link.is-active {
    color: var(--tez-h19-red);
    font-weight: 800;
}

.tez-h19-nav-link.is-active::after {
    position: absolute;
    right: 12px;
    bottom: 3px;
    left: 12px;
    height: 2px;
    content: "";
    background: var(--tez-h19-red);
    border-radius: 99px;
}

.tez-h19-nav-toggle {
    display: inline-flex;
    width: 30px;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #7a8498;
    cursor: pointer;
    background: transparent;
    border: 0;
    border-radius: 9px;
}

.tez-h19-nav-toggle:hover,
.tez-h19-nav-toggle:focus-visible {
    color: var(--tez-h19-red);
    outline: none;
}

.tez-h19-nav-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 180ms ease;
}

.tez-h19-nav-item:hover .tez-h19-nav-toggle svg,
.tez-h19-nav-item:focus-within .tez-h19-nav-toggle svg,
.tez-h19-nav-item.is-open .tez-h19-nav-toggle svg {
    transform: rotate(180deg);
}

.tez-h19-dropdown {
    position: absolute;
    top: calc(100% + 13px);
    left: 50%;
    z-index: 40;
    width: min(390px, calc(100vw - 32px));
    padding: 12px;
    visibility: hidden;
    background: #fff;
    border: 1px solid var(--tez-h19-line);
    border-radius: 20px;
    box-shadow: 0 26px 70px rgba(18, 25, 67, .18);
    opacity: 0;
    transform: translate(-50%, 12px) scale(.985);
    transform-origin: top center;
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.tez-h19-dropdown.is-wide {
    width: min(650px, calc(100vw - 40px));
}

.tez-h19-nav-item:hover .tez-h19-dropdown,
.tez-h19-nav-item:focus-within .tez-h19-dropdown,
.tez-h19-nav-item.is-open .tez-h19-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

.tez-h19-dropdown::before {
    position: absolute;
    top: -7px;
    left: 50%;
    width: 13px;
    height: 13px;
    content: "";
    background: #fff;
    border-top: 1px solid var(--tez-h19-line);
    border-left: 1px solid var(--tez-h19-line);
    transform: translateX(-50%) rotate(45deg);
}

.tez-h19-dropdown-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 7px 8px 12px;
    border-bottom: 1px solid #eef0f4;
}

.tez-h19-dropdown-head small {
    display: block;
    color: var(--tez-h19-red);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.tez-h19-dropdown-head strong {
    display: block;
    margin-top: 2px;
    color: var(--tez-h19-navy);
    font-size: 15px;
    font-weight: 800;
}

.tez-h19-dropdown-head > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--tez-h19-navy);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.tez-h19-dropdown-head > a:hover {
    color: var(--tez-h19-red);
}

.tez-h19-dropdown-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 5px;
    padding-top: 8px;
}

.tez-h19-dropdown.is-wide .tez-h19-dropdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tez-h19-dropdown-link {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 16px;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 10px;
    color: var(--tez-h19-text);
    text-decoration: none;
    border-radius: 13px;
    transition: background-color 180ms ease, transform 180ms ease;
}

.tez-h19-dropdown-link:hover,
.tez-h19-dropdown-link:focus-visible {
    background: var(--tez-h19-soft);
    outline: none;
    transform: translateX(2px);
}

.tez-h19-dropdown-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: var(--tez-h19-navy);
    background: #eef1f6;
    border-radius: 11px;
}

.tez-h19-dropdown-link:hover .tez-h19-dropdown-icon {
    color: #fff;
    background: var(--tez-h19-red);
}

.tez-h19-dropdown-icon svg {
    width: 17px;
    height: 17px;
}

.tez-h19-dropdown-link > span:nth-child(2) {
    min-width: 0;
}

.tez-h19-dropdown-link strong {
    display: block;
    overflow: hidden;
    color: var(--tez-h19-navy);
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tez-h19-dropdown-link small {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 3px;
    color: var(--tez-h19-muted);
    font-size: 10.5px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tez-h19-dropdown-arrow {
    width: 15px;
    height: 15px;
    color: #98a2b3;
    transition: color 180ms ease, transform 180ms ease;
}

.tez-h19-dropdown-link:hover .tez-h19-dropdown-arrow {
    color: var(--tez-h19-red);
    transform: translateX(2px);
}

.tez-h19-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}

.tez-h19-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tez-h19-navy);
    text-decoration: none;
}

.tez-h19-phone > span {
    display: inline-flex;
    width: 37px;
    height: 37px;
    align-items: center;
    justify-content: center;
    color: var(--tez-h19-red);
    background: #fff0f2;
    border-radius: 11px;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.tez-h19-phone svg {
    width: 16px;
    height: 16px;
}

.tez-h19-phone b {
    font-size: 13px;
    font-weight: 760;
    white-space: nowrap;
}

.tez-h19-phone:hover > span {
    color: #fff;
    background: var(--tez-h19-red);
    transform: rotate(-6deg);
}

.tez-h19-demo {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 780;
    white-space: nowrap;
    text-decoration: none;
    background: linear-gradient(135deg, var(--tez-h19-navy), var(--tez-h19-navy-dark));
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(18, 25, 67, .18);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.tez-h19-demo:hover,
.tez-h19-demo:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, var(--tez-h19-red), var(--tez-h19-red-dark));
    box-shadow: 0 14px 30px rgba(203, 32, 58, .24);
    outline: none;
    transform: translateY(-2px);
}

.tez-h19-demo svg {
    width: 16px;
    height: 16px;
    transition: transform 180ms ease;
}

.tez-h19-demo:hover svg {
    transform: translateX(3px);
}

.tez-h19-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--tez-h19-navy);
    cursor: pointer;
    background: var(--tez-h19-soft);
    border: 1px solid var(--tez-h19-line);
    border-radius: 11px;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.tez-h19-menu-button:hover,
.tez-h19-menu-button:focus-visible {
    color: #fff;
    background: var(--tez-h19-navy);
    outline: none;
    transform: translateY(-1px);
}

.tez-h19-menu-button svg {
    width: 21px;
    height: 21px;
}

.tez-h19-overlay {
    position: fixed;
    inset: 0;
    z-index: 1240;
    background: rgba(7, 12, 36, .56);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: opacity 240ms ease;
}

.tez-h19-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.tez-h19-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1250;
    display: flex;
    width: min(88vw, 390px);
    height: 100dvh;
    flex-direction: column;
    visibility: hidden;
    background: #fff;
    box-shadow: -22px 0 60px rgba(18, 25, 67, .23);
    opacity: 0;
    transform: translateX(102%);
    transition: visibility 280ms ease, opacity 220ms ease, transform 280ms cubic-bezier(.4, 0, .2, 1);
}

.tez-h19-drawer.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.tez-h19-drawer-head {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: max(12px, env(safe-area-inset-top)) 16px 12px;
    border-bottom: 1px solid var(--tez-h19-line);
}

.tez-h19-drawer-head > a {
    display: inline-flex;
}

.tez-h19-drawer-head img {
    display: block;
    width: auto;
    max-width: 148px;
    height: 40px;
    object-fit: contain;
}

.tez-h19-drawer-head button {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--tez-h19-navy);
    cursor: pointer;
    background: var(--tez-h19-soft);
    border: 0;
    border-radius: 11px;
}

.tez-h19-drawer-head button:hover,
.tez-h19-drawer-head button:focus-visible {
    color: #fff;
    background: var(--tez-h19-red);
    outline: none;
}

.tez-h19-drawer-head svg {
    width: 20px;
    height: 20px;
}

.tez-h19-drawer-body {
    flex: 1;
    padding: 14px 14px max(18px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
}

.tez-h19-mobile-nav {
    display: grid;
    gap: 7px;
}

.tez-h19-mobile-link,
.tez-h19-mobile-group {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--tez-h19-line);
    border-radius: 14px;
}

.tez-h19-mobile-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    min-height: 50px;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    color: var(--tez-h19-navy);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.tez-h19-mobile-link:hover,
.tez-h19-mobile-link.is-active {
    color: var(--tez-h19-red);
    background: #fff7f8;
    border-color: #f4ced4;
}

.tez-h19-mobile-link svg,
.tez-h19-mobile-group summary svg {
    width: 17px;
    height: 17px;
    color: #98a2b3;
}

.tez-h19-mobile-group summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    min-height: 50px;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    color: var(--tez-h19-navy);
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

.tez-h19-mobile-group summary::-webkit-details-marker {
    display: none;
}

.tez-h19-mobile-group[open] summary {
    color: var(--tez-h19-red);
    background: #fff7f8;
}

.tez-h19-mobile-group summary svg {
    transition: transform 180ms ease;
}

.tez-h19-mobile-group[open] summary svg {
    transform: rotate(180deg);
}

.tez-h19-mobile-group > div {
    display: grid;
    gap: 3px;
    padding: 6px 9px 10px;
    border-top: 1px solid #eef0f4;
}

.tez-h19-mobile-group > div a {
    display: block;
    padding: 10px 11px;
    color: #475467;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    border-radius: 10px;
}

.tez-h19-mobile-group > div a:hover,
.tez-h19-mobile-group > div a:focus-visible {
    color: var(--tez-h19-navy);
    background: var(--tez-h19-soft);
    outline: none;
}

.tez-h19-mobile-group > div a.is-overview {
    color: var(--tez-h19-red);
    font-weight: 800;
}

.tez-h19-mobile-contact {
    margin-top: 15px;
    padding: 17px;
    color: #fff;
    background: linear-gradient(145deg, var(--tez-h19-navy), var(--tez-h19-navy-dark));
    border-radius: 17px;
    box-shadow: 0 16px 35px rgba(18, 25, 67, .16);
}

.tez-h19-mobile-contact small {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.tez-h19-mobile-contact > a {
    display: block;
    overflow-wrap: anywhere;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.tez-h19-mobile-contact > a.is-email {
    margin-top: 5px;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    font-weight: 550;
}

.tez-h19-mobile-contact > a.is-demo {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    background: var(--tez-h19-red);
    border-radius: 11px;
}

body.tez-h19-menu-open {
    overflow: hidden;
}

@media (max-width: 1130px) {
    .tez-h19-row {
        grid-template-columns: 155px minmax(0, 1fr) auto;
        gap: 14px;
    }

    .tez-h19-brand img {
        max-width: 148px;
        height: 40px;
    }

    .tez-h19-nav-link {
        padding-inline: 9px;
        font-size: 13px;
    }

    .tez-h19-phone b {
        display: none;
    }
}

@media (max-width: 980px) {
    .tez-h19-container {
        width: min(calc(100% - 26px), var(--tez-h19-width));
    }

    .tez-h19-row {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 67px;
        gap: 10px;
    }

    .tez-h19-header.is-floating .tez-h19-row {
        min-height: 60px;
    }

    .tez-h19-desktop-nav,
    .tez-h19-phone {
        display: none;
    }

    .tez-h19-brand img {
        max-width: 142px;
        height: 39px;
    }

    .tez-h19-header.is-floating .tez-h19-brand img {
        max-width: 128px;
        height: 35px;
    }

    .tez-h19-menu-button {
        display: inline-flex;
    }
}

@media (max-width: 640px) {
    .tez-h19-accent {
        height: 2px;
    }

    .tez-h19-container {
        width: calc(100% - 18px);
    }

    .tez-h19-row {
        min-height: 61px;
        gap: 7px;
    }

    .tez-h19-header.is-floating .tez-h19-row {
        min-height: 56px;
    }

    .tez-h19-brand img {
        max-width: 121px;
        height: 34px;
    }

    .tez-h19-header.is-floating .tez-h19-brand img {
        max-width: 112px;
        height: 31px;
    }

    .tez-h19-actions {
        gap: 6px;
    }

    .tez-h19-demo {
        width: 40px;
        min-height: 40px;
        padding: 0;
        border-radius: 10px;
    }

    .tez-h19-demo span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .tez-h19-menu-button {
        width: 40px;
        height: 40px;
    }

    .tez-h19-drawer {
        width: min(94vw, 390px);
    }
}

@media (max-width: 430px) {
    .tez-h19-drawer {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .tez-h19-container {
        width: calc(100% - 12px);
    }

    .tez-h19-brand img {
        max-width: 106px;
    }

    .tez-h19-demo,
    .tez-h19-menu-button {
        width: 38px;
        height: 38px;
        min-height: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tez-h19-header *,
    .tez-h19-drawer,
    .tez-h19-overlay {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

@media print {
    .tez-h19-header,
    .tez-h19-drawer,
    .tez-h19-overlay {
        display: none !important;
    }
}

/* =========================================================
   V20 fixed drop-down-on-scroll behavior
   ========================================================= */

.tez-h19-header {
    z-index: 2147483000;
    isolation: isolate;
}

.tez-h19-header.is-sticky {
    position: relative;
    top: auto;
}

.tez-h19-header.is-sticky.is-fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2147483000;
    width: 100%;
    opacity: 0;
    transform: translate3d(0, -112%, 0);
    pointer-events: none;
    will-change: transform, opacity;
}

.tez-h19-header.is-sticky.is-fixed.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    transition:
        transform 520ms cubic-bezier(.16, 1, .3, 1),
        opacity 220ms ease;
}

.tez-h19-header.is-sticky.is-fixed .tez-h19-surface {
    background: rgba(255, 255, 255, .985);
    border-bottom-color: rgba(18, 25, 67, .10);
    box-shadow:
        0 18px 50px rgba(18, 25, 67, .15),
        0 2px 8px rgba(18, 25, 67, .06);
}

.tez-h19-header.is-sticky.is-fixed .tez-h19-accent {
    height: 3px;
}

.tez-h19-placeholder {
    width: 100%;
    height: 0;
    pointer-events: none;
    transition: none;
}

.tez-h19-dropdown {
    z-index: 2147483010;
}

.tez-h19-overlay {
    z-index: 2147483020;
}

.tez-h19-drawer {
    z-index: 2147483030;
}

@media (max-width: 980px) {
    .tez-h19-header.is-sticky.is-fixed .tez-h19-row {
        min-height: 60px;
    }
}

@media (max-width: 640px) {
    .tez-h19-header.is-sticky.is-fixed {
        padding-top: env(safe-area-inset-top, 0);
        background: rgba(255, 255, 255, .985);
    }

    .tez-h19-header.is-sticky.is-fixed .tez-h19-container {
        width: calc(100% - 18px);
    }

    .tez-h19-header.is-sticky.is-fixed .tez-h19-row {
        min-height: 56px;
    }

    .tez-h19-header.is-sticky.is-fixed .tez-h19-brand img {
        max-width: 116px;
        height: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tez-h19-header.is-sticky.is-fixed,
    .tez-h19-header.is-sticky.is-fixed.is-revealed {
        opacity: 1;
        transform: none;
        transition: none !important;
    }
}
