.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(19, 19, 21, .7);
    border-bottom: 1px solid rgba(19, 19, 21, .7);
    transition: background-color .4s, border-color .4s;
    padding: 20px 0 19px;
}

.header:hover {
    background-color: #fff;
    border-color: #E4E4E4;
}

.header ul {
    list-style: none;
    margin: 0;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
}

.header img, .header svg {
    display: block;
}

.header img {
    max-width: 100%;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}

.header__logo {
    display: block;
    transition: filter .4s;
}

.header:hover .header__logo {
    filter: invert(1);
}

.header__logo img {
    width: 151px;
    height: 24px;
    object-fit: contain;
}

.header__menu a {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 28px;
    color: #000;
}

.header__menu-submenu>a {
    position: relative;
    padding-right: 43px;
}

.header__menu-submenu.active>a {
    color: #F78E1A;
}

.header__menu-submenu>a div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    right: 0;
}

.header__menu-submenu>a svg {
    width: 22px;
    height: 22px;
    fill: #000;
    transition: transform .4s, fill .4s;
}

.header__menu-submenu.active>a svg {
    transform: rotate(180deg);
    fill: #F78E1A;
}

.header__menu-submenu>ul {
    display: none;
}

.header__menu-submenu>ul a {
    justify-content: space-between;
    height: 100%;
}

.header__menu-submenu>ul a img {
    object-fit: contain;
}

.header__menu-submenu>ul a span {
    display: block;
    width: calc(100% - 40px);
}

.header__menu-card {
    flex-direction: column;
}

.header__menu .header__menu-card {
    align-items: flex-start;
}

.header__menu-submenu>ul .header__menu-card img {
    width: 122px;
    height: 39px;
}

/* Cohesive outline icon set (assets/images/menu-icons) — square 28×28,
   overrides the wide 122×39 product-logo sizing on solution cards. */
.header__menu-submenu>ul a img.header__menu-icon,
.header__menu-submenu>ul .header__menu-card img.header__menu-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.header__menu-card span:not(:first-child) {
    margin-top: 10px;
}

.header__burger {
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.header__burger svg {
    width: 100%;
    height: 100%;
    transform: scale(1.5);
    transition: transform 0.4s;
}

.header.active .header__burger svg {
    transform: scale(1.5) rotate(45deg);
}

.header__burger svg path {
    fill: none;
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke 0.4s, stroke-dasharray 0.4s, stroke-dashoffset 0.4s;
}

.header:hover .header__burger svg path {
    stroke: #000;
}

.header__burger svg path:nth-child(1),
.header__burger svg path:nth-child(3) {
    stroke-dasharray: 40 121;
}

.header.active .header__burger svg path,
.header__burger:hover svg path {
    stroke: #F78E1A;
}

.header.active .header__burger svg path:nth-child(1),
.header.active .header__burger svg path:nth-child(3) {
    stroke-dashoffset: -68px;
}

@media screen and (min-width: 992px) {
    .header {
        padding: 18px 0 17px;
    }

    .header__logo img {
        width: 120px;
        height: 19px;
    }

    .header__slogan {
        display: flex;
        align-items: center;
        margin: 0 auto 0 20px;
        font-weight: 700;
        font-size: 14px;
        line-height: 24px;
        color: #fff;
        transition: color .4s;
    }

    .header:hover .header__slogan {
        color: #000;
    }

    .header__slogan img {
        width: 55px;
        height: 42px;
        object-fit: contain;
        transform: scaleX(-1);
    }

    .header__slogan span {
        padding-left: 10px;
    }

    .header__menu {
        display: flex;
        gap: 5px;
    }

    .header__menu a {
        font-size: 14px;
        line-height: 24px;
        transition: color .4s;
        padding: 10px;
    }

    .header__menu a[href="#"] {
        pointer-events: none;
    }

    .header__menu a:hover {
        color: #F78E1A;
    }

    .header__menu>li>a {
        color: #fff;
    }

    .header:hover .header__menu>li>a {
        color: #000;
    }

    .header .header__menu>li>a:hover,
    .header .header__menu .header__menu-submenu:hover>a {
        color: #F78E1A;
    }

    .header__menu-submenu>a div {
        display: none;
    }

    .header__menu-submenu>ul {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        visibility: hidden;
        background-color: #fff;
        opacity: 0;
        transition: visibility .15s, opacity .15s;
        padding-top: 10px;
        padding-bottom: 20px;
        padding-left: calc((10% / 2) + (90% - 554.13px));
    }

    .header__menu-submenu>ul:before {
        content: '';
        width: 100%;
        height: 5px;
        position: absolute;
        top: 0;
        left: 0;
        transform: translateY(-100%);
    }

    .header__menu-submenu:hover>ul {
        display: flex !important;
        opacity: 1;
        visibility: visible;
        transition: visibility .4s, opacity .4s;
    }

    .header__menu-submenu>ul>li {
        width: 100%;
        max-width: 45%;
        margin-top: 5px;
    }

    .header__menu-submenu>ul a {
        transition: color .4s, transform .4s;
    }

    .header__menu-submenu>ul a:hover {
        transform: translateX(5px);
    }

    .header__menu-submenu>ul a img {
        width: 18px;
        height: 18px;
    }

    .header__menu-submenu>ul a span {
        width: calc(100% - 28px);
    }

    .header__menu-card {
        opacity: .5;
    }

    .header__menu-submenu>ul .header__menu-card {
        transition: color .4s, transform .4s, opacity .4s;
    }

    .header__menu-card:hover {
        opacity: 1;
    }

    .header__menu-submenu>ul .header__menu-card img {
        width: 94px;
        height: 30px;
    }

    .header__menu-submenu>ul a img.header__menu-icon,
    .header__menu-submenu>ul .header__menu-card img.header__menu-icon {
        width: 22px;
        height: 22px;
    }

    .header__menu-card span:not(:first-child) {
        margin-top: 5px;
    }

    .header__burger {
        display: none;
    }
}

@media screen and (min-width: 1400px) {
    .header {
        padding: 22px 0 21px;
    }

    .header__logo img {
        width: 151px;
        height: 24px;
    }

    .header__slogan {
        font-size: 18px;
        line-height: 28px;
        margin-left: 36px;
    }

    .header__slogan img {
        width: 100px;
        height: 76px;
    }

    .header__menu {
        gap: 30px;
    }

    .header__menu a {
        font-size: 16px;
        line-height: 26px;
    }

    .header__menu-submenu>ul {
        padding-top: 20px;
        padding-bottom: 30px;
        padding-left: calc((10% / 2) + (90% - 758.95px));
    }

    .header__menu-submenu>ul>li {
        max-width: 35%;
        margin-top: 10px;
    }

    .header__menu-submenu>ul .header__menu-card img {
        width: 122px;
        height: 39px;
    }

    .header__menu-card span:not(:first-child) {
        margin-top: 10px;
    }
}

@media screen and (max-width: 991px) {
    .header.active {
        background-color: #fff;
        border-color: #E4E4E4;
    }

    .header.active .header__logo {
        filter: invert(1);
    }

    .header__slogan {
        display: none;
    }

    .header__nav {
        width: 100%;
        height: calc(100vh - 75px);
        position: fixed;
        top: 75px;
        right: 0;
        transform: translateX(100%);
        z-index: 200;
        overflow-x: hidden;
        overflow-y: auto;
        background-color: #fff;
        padding: 19px 5% 150px;
        transition: transform .4s;
    }

    .header.active .header__nav {
        transform: translateX(0);
    }

    .header__menu>li:not(:first-child) {
        margin-top: 30px;
    }

    .header__menu>li>a {
        font-weight: 700;
        font-size: 22px;
        line-height: 32px;
    }

    .header__menu-submenu>ul>li {
        padding: 30px 0 0 15px;
    }
}

/* Breadcrumbs (visible) — overlay just under the fixed header, on top of hero */
.breadcrumbs {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 5;
    background: transparent;
    pointer-events: none;
}
.breadcrumbs__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    pointer-events: auto;
}
@media (max-width: 970px) {
    .breadcrumbs__wrap { padding: 12px 30px; }
}
.breadcrumbs__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.4;
}
.breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,.65);
}
.breadcrumbs__item + .breadcrumbs__item::before {
    content: "›";
    margin: 0 10px;
    color: rgba(255,255,255,.4);
}
.breadcrumbs__link {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .2s;
}
.breadcrumbs__link:hover { color: #f6583e; }
.breadcrumbs__current {
    color: #fff;
    font-weight: 600;
}
/* Dark variant — for pages with light hero (blog single, archives, etc.) */
.breadcrumbs--dark .breadcrumbs__item { color: #888; }
.breadcrumbs--dark .breadcrumbs__item + .breadcrumbs__item::before { color: #b8b8b8; }
.breadcrumbs--dark .breadcrumbs__link { color: #888; }
.breadcrumbs--dark .breadcrumbs__link:hover { color: #f6583e; }
.breadcrumbs--dark .breadcrumbs__current { color: #211260; }