/* FORCE BROWSER CACHE REFRESH - v5.0 - Theme-based Logo Display */
/* Clean CSS structure without conflicts */

:root {
    --header-bg: #ffffff;
    --header-text: #292a2c;
    --header-hover: #635bff;
    --dropdown-bg: #ffffff;
    --dropdown-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --btn-primary-bg: #635bff;
    --btn-primary-hover: #524adb;
    --btn-secondary-border: #e0e0e0;
    --btn-secondary-hover: #f5f5f5;
    --mobile-menu-bg: #ffffff;
    --theme-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

body.dark-theme,
body.dark {
    --header-bg: #1a1a1a;
    --header-text: #ffffff;
    --header-hover: #8b85ff;
    --dropdown-bg: #2a2a2a;
    --dropdown-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --btn-primary-bg: #8b85ff;
    --btn-primary-hover: #7a73ff;
    --btn-secondary-border: #3a3a3a;
    --btn-secondary-hover: #2a2a2a;
    --mobile-menu-bg: #1a1a1a
}

/* =========================== 
   DESKTOP STYLES (DEFAULT)
   =========================== */

header.sseco-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--header-bg) !important;
    z-index: 9999 !important;
    transition: var(--theme-transition) !important;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05) !important;
    width: 100% !important;
    height: auto !important
}

header.sseco-header .sseco-header__container {
    max-width: 1920px !important;
    margin: 0 auto !important;
    padding: 2px 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-radius: 0 !important;
    flex-wrap: nowrap !important;
    position: relative !important;
    min-height: 70px !important;
}

header.sseco-header .sseco-header__logo {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    margin-right: 0 !important;
    transition: transform 0.2s ease !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    position: relative !important;
    order: 1 !important;
    left: 200px;
}

header.sseco-header .sseco-header__logo:hover {
    transform: scale(1.05) !important;
    text-decoration: none !important;
}

header.sseco-header .sseco-header__logo img {
    height: 70px !important;
    width: auto !important;
    max-width: 240px !important
}

/* Theme-based logo display */
header.sseco-header .sseco-header__logo-light {
    display: block !important;
}

header.sseco-header .sseco-header__logo-dark {
    display: none !important;
}

body.dark-theme header.sseco-header .sseco-header__logo-light,
body.dark header.sseco-header .sseco-header__logo-light {
    display: none !important;
}

body.dark-theme header.sseco-header .sseco-header__logo-dark,
body.dark header.sseco-header .sseco-header__logo-dark {
    display: block !important;
}

header.sseco-header .sseco-nav {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex: 1 !important;
    margin: 0 !important;
    padding: 0 40px !important;
    list-style: none !important;
    justify-content: center !important;
    max-width: calc(100vw - 600px) !important;
    overflow: visible !important;
    order: 2 !important;
}

header.sseco-header .sseco-nav__item {
    position: relative !important;
    padding: 8px 12px !important;
    cursor: pointer !important;
    border-radius: 8px !important;
    transition: background-color 0.2s ease !important;
    margin: 0 !important;
    list-style: none !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

header.sseco-header .sseco-nav__item:hover,
header.sseco-header .sseco-nav__item.hover {
    background-color: rgba(99, 91, 255, 0.08) !important
}

header.sseco-header .sseco-nav__item.active .sseco-nav__link {
    color: var(--header-hover) !important;
    font-weight: 300 !important
}

header.sseco-header .sseco-nav__link {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    color: var(--header-text) !important;
    font-size: 15px !important;
    font-weight: 200 !important;
    font-family: 'Gilroy-semibold' !important;
    transition: color 0.2s ease !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important
}

header.sseco-header .sseco-nav__link:hover,
header.sseco-header .sseco-nav__item.hover .sseco-nav__link {
    color: var(--header-hover) !important
}

header.sseco-header .sseco-nav__text {
    position: relative;
    font-family: "Gilroy-semibold";
}

/* Dropdown Styles */
header.sseco-header .sseco-dropdown {
    position: fixed !important;
    top: 70px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(0px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: -1 !important;
    display: block !important
}

header.sseco-header .sseco-dropdown.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
    z-index: 10000 !important
}

header.sseco-header .sseco-dropdown__container {
    background: var(--dropdown-bg) !important;
    border-radius: 16px !important;
    box-shadow: var(--dropdown-shadow) !important;
    padding: 24px !important;
    min-width: 600px !important;
    max-width: min(90vw, 1600px) !important
}

header.sseco-header .sseco-dropdown--mega .sseco-dropdown__container {
    min-width: 1450px !important;
    max-width: min(1200px, 90vw) !important;
    padding: 32px !important;
    margin: 0 auto !important
}

header.sseco-header .sseco-dropdown__content {
    display: flex !important;
    gap: 24px !important;
    align-items: flex-start !important
}

header.sseco-header .sseco-dropdown__left {
    flex: 0 0 220px !important;
    padding-right: 20px !important;
    border-right: 1px solid rgba(0, 0, 0, 0.1) !important
}

body.dark-theme header.sseco-header .sseco-dropdown__left,
body.dark header.sseco-header .sseco-dropdown__left {
    border-right-color: rgba(255, 255, 255, 0.1) !important
}

header.sseco-header .sseco-dropdown__right {
    flex: 1 !important
}

header.sseco-header .sseco-dropdown__hero {
    text-align: center !important
}

header.sseco-header .sseco-dropdown__hero-image {
    width: 350px !important;
    height: 200px !important;
    margin: 0 auto 16px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important
}

header.sseco-header .sseco-dropdown__hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important
}

header.sseco-header .sseco-dropdown__hero-content h3 {
    font-size: 18px !important;
    font-weight: 200 !important;
    color: var(--header-text) !important;
    margin-bottom: 8px !important;
    font-family: 'Gilroy-semibold' !important
}

header.sseco-header .sseco-dropdown__hero-content p {
    font-size: 14px !important;
    font-weight: 200 !important;
    font-family: 'Gilroy-semibold' !important;
    color: var(--header-text) !important;
    opacity: 0.7 !important;
    line-height: 1.4 !important;
    margin: 0 !important
}

header.sseco-header .sseco-dropdown__wrap {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    gap: 32px !important
}

header.sseco-header .sseco-dropdown--mega .sseco-dropdown__wrap {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important
}

header.sseco-header .sseco-dropdown__column {
    display: flex !important;
    flex-direction: column !important;
}

header.sseco-header .sseco-dropdown__label {
    font-size: 11px !important;
    font-weight: 200 !important;
    font-family: 'Gilroy-semibold' !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: var(--header-text) !important;
    opacity: 0.6 !important;
    margin-bottom: 10px !important
}

header.sseco-header .sseco-dropdown__box {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important
}

header.sseco-header .sseco-dropdown__link {
    display: block !important;
    padding: 6px 10px !important;
    color: var(--header-text) !important;
    text-decoration: none !important;
    font-family: 'Gilroy-semibold' !important;
    font-size: 13px !important;
    font-weight: 200 !important;
    border-radius: 5px !important;
    transition: all 0.2s ease !important
}

header.sseco-header .sseco-dropdown__link:hover {
    background-color: rgba(99, 91, 255, 0.08) !important;
    color: var(--header-hover) !important;
    transform: translateX(4px) !important;
    text-decoration: none !important
}

header.sseco-header .sseco-dropdown__link--external {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important
}

header.sseco-header .sseco-dropdown__external-icon {
    width: 12px !important;
    height: 12px !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 1.5 !important;
    opacity: 0.7 !important;
    transition: all 0.2s ease !important;
    margin-left: 8px !important;
    flex-shrink: 0 !important
}

header.sseco-header .sseco-dropdown__link--external:hover .sseco-dropdown__external-icon {
    opacity: 1 !important;
    transform: translate(2px, -2px) !important
}

header.sseco-header .sseco-dropdown__link--new {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important
}

header.sseco-header .sseco-badge {
    font-size: 8px !important;
    font-weight: 200 !important;
    font-family: 'Gilroy-semibold' !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    padding: 2px 4px !important;
    border-radius: 3px !important;
    line-height: 1 !important;
    margin-left: 6px;
}

header.sseco-header .sseco-badge--new {
    background: linear-gradient(135deg, #4ade80, #22c55e) !important;
    color: white !important
}

header.sseco-header .sseco-dropdown__wrap--company {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    margin-bottom: 24px !important
}

header.sseco-header .sseco-dropdown__social {
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding-top: 20px !important;
    margin-top: 20px !important;
    text-align: right !important
}

body.dark-theme header.sseco-header .sseco-dropdown__social,
body.dark header.sseco-header .sseco-dropdown__social {
    border-top-color: rgba(255, 255, 255, 0.1) !important
}

header.sseco-header .sseco-dropdown__social-label {
    font-size: 12px !important;
    font-weight: 200 !important;
    font-family: 'Gilroy-semibold' !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: var(--header-text) !important;
    opacity: 0.6 !important;
    margin-bottom: 12px !important
}

header.sseco-header .sseco-dropdown__social-icons {
    display: flex !important;
    gap: 12px !important;
    justify-content: flex-end !important;
    align-items: center !important
}

header.sseco-header .sseco-dropdown__social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 16px !important;
    border-radius: 10px !important;
    background: transparent !important;
    color: var(--header-text) !important;
    opacity: 0.9 !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    scale: 1.5;
}

header.sseco-header .sseco-dropdown__social-link:hover {
    opacity: 1 !important;
    background: rgba(99, 91, 255, 0.08) !important;
    color: var(--header-hover) !important;
    transform: translateY(-2px) !important;
    text-decoration: none !important
}

/* Header Actions */
.sseco-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    position: relative !important;
    order: 3 !important;
}

.sseco-theme-switch {
    margin-right: 8px
}

.theme-switch__container {
    position: relative
}

.theme-switch__toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--btn-secondary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--theme-transition)
}

.theme-switch__toggle:hover {
    background: rgba(99, 91, 255, 0.1)
}

.theme-switch__moon,
.theme-switch__sun {
    position: absolute;
    width: 20px;
    height: 20px;
    transition: opacity 0.3s ease
}

.theme-switch__moon {
    opacity: 0
}

.theme-switch__sun {
    opacity: 0
}

/* Buttons */
header.sseco-header .sseco-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 200 !important;
    font-family: 'Gilroy-semibold' !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    border: none !important;
    outline: none !important;
    line-height: 1.2 !important;
    white-space: nowrap !important
}

header.sseco-header .sseco-btn--primary {
    background: var(--btn-primary-bg) !important;
    color: white !important;
    border: none !important
}

header.sseco-header .sseco-btn--primary:hover,
.sseco-btn--primary:hover {
    background: var(--btn-primary-hover) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3) !important;
    text-decoration: none !important
}

header.sseco-header .sseco-btn--secondary {
    background: transparent !important;
    color: var(--header-text) !important;
    border: 1.5px solid var(--btn-secondary-border) !important
}

header.sseco-header .sseco-btn--secondary:hover,
.sseco-btn--secondary:hover {
    background: var(--btn-secondary-hover) !important;
    border-color: var(--header-hover) !important;
    color: var(--header-hover) !important;
    text-decoration: none !important
}

.sseco-btn--full {
    width: 100%;
    min-height: 48px;
    font-weight: 500;
    border-radius: 12px;
}

/* Mobile Toggle Button - HIDDEN BY DEFAULT */
.sseco-header__mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.sseco-header__mobile-toggle:hover {
    background: rgba(99, 91, 255, 0.1);
}

.sseco-header__mobile-toggle span {
    display: block;
    background: var(--header-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.sseco-header__mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.sseco-header__mobile-toggle.active span:nth-child(2) {
    opacity: 0
}

.sseco-header__mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}


/* FORCE INDUSTRIES COLUMN TO RIGHT - v2.0 */
header.sseco-header .sseco-nav__item[data-menu="solutions"] .sseco-dropdown__wrap {
    position: relative !important;
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
}

header.sseco-header .sseco-nav__item[data-menu="solutions"] .sseco-dropdown__column:nth-child(1) {
    flex: 0 0 300px !important;
}

header.sseco-header .sseco-nav__item[data-menu="solutions"] .sseco-dropdown__column:nth-child(2) {
    flex: 0 0 240px !important;
    margin-left: -30px !important;
}

header.sseco-header .sseco-nav__item[data-menu="solutions"] .sseco-dropdown__column:nth-child(3) {
    flex: 0 0 250px !important;
    margin-left: -50px !important;
    margin-right: 0 !important;
    transform: translateX(100px) !important;
}

/* Industries links - make non-clickable */
header.sseco-header .sseco-nav__item[data-menu="solutions"] .sseco-dropdown__column:nth-child(3) .sseco-dropdown__link {
    pointer-events: none !important;
    cursor: default !important;
    color: rgba(29, 29, 36, 0.6) !important;
    text-decoration: none !important;
}

body.dark header.sseco-header .sseco-nav__item[data-menu="solutions"] .sseco-dropdown__column:nth-child(3) .sseco-dropdown__link,
body.dark-theme header.sseco-header .sseco-nav__item[data-menu="solutions"] .sseco-dropdown__column:nth-child(3) .sseco-dropdown__link {
    color: rgba(255, 255, 255, 0.87) !important;
}

/* Mobile non-clickable items */
.sseco-mobile-nav__subitem--non-clickable {
    pointer-events: none !important;
    cursor: default !important;
    color: rgba(29, 29, 36, 0.6) !important;
    opacity: 0.6 !important;
}

body.dark .sseco-mobile-nav__subitem--non-clickable,
body.dark-theme .sseco-mobile-nav__subitem--non-clickable {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Mobile Menu */
.sseco-mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--mobile-menu-bg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

.sseco-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.sseco-mobile-menu__container {
    padding: 10px;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--mobile-menu-bg);
}

.sseco-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sseco-mobile-nav__item {
    display: block;
    padding: 6px 10px;
    color: var(--header-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Gilroy-semibold';
    border-radius: 12px;
    transition: all 0.2s ease;
    min-height: 22px;
    display: flex;
    align-items: center;
}

.sseco-mobile-nav__item:hover,
.sseco-mobile-nav__item:active,
.sseco-mobile-nav__item.active {
    background: rgba(99, 91, 255, 0.12);
    color: var(--header-hover);
    transform: translateX(4px);
}

.sseco-mobile-nav__accordion {
    margin: 1px 0
}

.sseco-mobile-nav__accordion-toggle {
    width: 100%;
    padding: 5px 10px;
    background: transparent;
    border: none;
    color: var(--header-text);
    font-size: 13px;
    font-weight: 400;
    font-family: 'Gilroy-semibold';
    text-align: left;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 22px;
    -webkit-tap-highlight-color: transparent;
}

.sseco-mobile-nav__accordion-toggle::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--header-hover);
    opacity: 0.8;
}

.sseco-mobile-nav__accordion.active .sseco-mobile-nav__accordion-toggle::after {
    transform: rotate(45deg)
}

.sseco-mobile-nav__accordion-toggle:hover,
.sseco-mobile-nav__accordion-toggle:active {
    background: rgba(99, 91, 255, 0.12);
    transform: translateX(4px);
}

.sseco-mobile-nav__accordion-toggle:active::after {
    transform: scale(0.9);
}

.sseco-mobile-nav__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease
}

.sseco-mobile-nav__subitem {
    display: flex;
    align-items: center;
    padding: 6px 9px 6px 18px;
    color: var(--header-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    opacity: 0.85;
    transition: all 0.2s ease;
    min-height: 20px;
    border-radius: 10px;
    margin: 1px 0;
}

.sseco-mobile-nav__subitem:hover,
.sseco-mobile-nav__subitem:active {
    opacity: 1;
    color: var(--header-hover);
    transform: translateX(6px);
    background: rgba(99, 91, 255, 0.08);
}

.sseco-mobile-nav__subitem--external {
    position: relative;
    padding-right: 48px !important;
}

.sseco-mobile-nav__subitem--external::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23635bff' stroke-width='1.5'%3E%3Cpath d='M10.5 1.5L1.5 10.5M10.5 1.5H4.5M10.5 1.5V7.5'/%3E%3C/svg%3E") no-repeat center;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.sseco-mobile-nav__subitem--external:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.sseco-mobile-nav__group {
    margin-bottom: 12px;
}

/* MOBILE MENU DIVIDER BETWEEN COMPANY AND PRICING */
.sseco-mobile-nav__divider {
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

body.dark-theme .sseco-mobile-nav__divider,
body.dark .sseco-mobile-nav__divider {
    border-top-color: rgba(255, 255, 255, 0.015) !important;
}

/* Remove border from Pricing item */
.sseco-mobile-nav__item[href*="pricing"],
.sseco-mobile-nav__item:last-of-type,
.sseco-mobile-nav__divider + .sseco-mobile-nav__item {
    border-bottom: none !important;
    border-top: none !important;
    box-shadow: none !important;
    border: none !important;
}

.sseco-mobile-nav__accordion + .sseco-mobile-nav__accordion {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 1px;
    padding-top: 1px;
}

body.dark-theme .sseco-mobile-nav__accordion + .sseco-mobile-nav__accordion,
body.dark .sseco-mobile-nav__accordion + .sseco-mobile-nav__accordion {
    border-top-color: rgba(255, 255, 255, 0.05);
}

.sseco-mobile-nav__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0;
}

.sseco-mobile-nav__accordion.active .sseco-mobile-nav__accordion-content {
    padding: 8px 0;
}

.sseco-mobile-nav__accordion.active .sseco-mobile-nav__accordion-toggle::after {
    transform: rotate(45deg);
    color: var(--header-hover);
    opacity: 1;
}

.sseco-mobile-nav__group-title {
    font-size: 11px;
    font-weight: 500;
    font-family: 'Gilroy-semibold';
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--header-hover);
    opacity: 0.7;
    margin: 12px 0 6px 0;
    padding: 0 18px;
}

.sseco-mobile-menu__actions {
    margin-top: 10px;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: sticky;
    bottom: 0;
    background: var(--mobile-menu-bg);
}

body.dark-theme .sseco-mobile-menu__actions,
body.dark .sseco-mobile-menu__actions {
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* Header States */
.sseco-header.scrolled {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08)
}

body.dark-theme .sseco-header.scrolled,
body.dark .sseco-header.scrolled {
    background: rgba(26, 26, 26, 0.95)
}

.sseco-header.hidden {
    transform: translateY(-100%)
}

/* Mobile menu behavior */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* =========================== 
   RESPONSIVE BREAKPOINTS
   =========================== */

/* Large Desktop (1441px+) - Default styles above */
@media (min-width: 1441px) and (max-width: 1600px) {
    header.sseco-header .sseco-header__container {
        padding: 1px 53px !important;
    }
    
    header.sseco-header .sseco-header__logo {
        margin-left: 40px !important;
        left: 23px;
    }
    
    header.sseco-header .sseco-nav {
        max-width: calc(100vw - 700px) !important;
        padding: 0 60px !important;
    }
}
/* Medium Desktop (1024px - 1440px) */
@media (max-width: 1440px) and (min-width: 1024px) {
    header.sseco-header .sseco-header__container {
        padding: 12px 30px !important;
    }
    
    header.sseco-header .sseco-header__logo {
        margin-left: 0 !important;
        left: 37px;
    }
    
    header.sseco-header .sseco-header__logo img {
        height: 53px !important;
        /* margin-left: -35px; */
    }
    
    header.sseco-header .sseco-nav {
        gap: 4px !important;
        max-width: calc(100vw - 600px) !important;
        padding: 0 30px !important;
    }

    header.sseco-header .sseco-dropdown__hero-image {
        width: 220px !important;
        height: 125px !important;
        margin: 0 auto 16px !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important
    }

    header.sseco-header .sseco-dropdown__hero-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important
    }
    header.sseco-header .sseco-nav__item[data-menu="solutions"] .sseco-dropdown__column:nth-child(3) {
        flex: 0 0 250px !important;
        margin-left: -75px !important;
        margin-right: 0 !important;
        transform: translateX(100px) !important;
    }
    
    header.sseco-header .sseco-nav__item {
        padding: 6px 8px !important;
    }
    
    header.sseco-header .sseco-nav__link {
        font-size: 13px !important;
    }
    
    header.sseco-header .sseco-btn {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }
    
    .sseco-header__actions {
        gap: 8px !important;
    }
    
    .theme-switch__toggle {
        width: 36px !important;
        height: 36px !important;
    }
    header.sseco-header .sseco-dropdown{
        top: 75px !important;
    }
    
    header.sseco-header .sseco-dropdown--mega .sseco-dropdown__container {
        min-width: 1030px !important;
        max-width: min(1100px, 88vw) !important;
        padding: 28px !important;
    }
    
    header.sseco-header .sseco-dropdown__container {
        min-width: 500px !important;
        max-width: min(80vw, 1000px) !important;
    }
    
    header.sseco-header .sseco-dropdown__content {
        gap: 5px !important;
    }
    
    header.sseco-header .sseco-dropdown__left {
        flex: 0 0 200px !important;
        padding-right: 16px !important;
    }
    
    header.sseco-header .sseco-dropdown__wrap {
        gap: 16px !important;
    }
    
    header.sseco-header .sseco-dropdown__wrap--company {
        gap: 16px !important;
    }
    
    header.sseco-header .sseco-dropdown__link {
        font-size: 12px !important;
        padding: 5px 8px !important;
    }
    
    header.sseco-header .sseco-dropdown__label {
        font-size: 10px !important;
        margin-bottom: 10px !important;
    }
    
    header.sseco-header .sseco-dropdown__hero-content h3 {
        font-size: 16px !important;
    }
    
    header.sseco-header .sseco-dropdown__hero-content p {
        font-size: 12px !important;
    }
}

/* Mobile/Tablet (1023px and below) - SHOW BURGER MENU */
@media (max-width: 1023px) {
    /* FORCE SHOW BURGER MENU */
    .sseco-header__mobile-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10001 !important;
        order: 2 !important;
        flex-shrink: 0 !important;
        width: 44px !important;
        height: 44px !important;
        margin-left: 8px !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 6px !important;
        border-radius: 8px !important;
        transition: background-color 0.2s ease !important;
    }
    
    .sseco-header__mobile-toggle:hover {
        background: rgba(99, 91, 255, 0.1) !important;
    }
    
    .sseco-header__mobile-toggle span {
        display: block !important;
        width: 22px !important;
        height: 3px !important;
        background: var(--header-text) !important;
        margin: 3px 0 !important;
        transition: all 0.3s ease !important;
        border-radius: 2px !important;
    }

    /* HIDE DESKTOP NAVIGATION */
    .sseco-nav {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        flex: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* HIDE AUTH BUTTONS IN HEADER (BUT SHOW IN MOBILE MENU) */
    header.sseco-header .sseco-header__container .sseco-btn {
        display: none !important;
    }
    
    /* SHOW AUTH BUTTONS IN MOBILE MENU */
    .sseco-mobile-menu .sseco-btn {
        display: inline-flex !important;
    }

    /* HIDE DROPDOWNS */
    .sseco-dropdown,
    .sseco-dropdown__container,
    .sseco-dropdown--mega .sseco-dropdown__container {
        display: none !important;
        visibility: hidden !important;
    }

    /* OPTIMIZE HEADER CONTAINER */
    header.sseco-header .sseco-header__container {
        padding: 8px 12px !important;
        flex-wrap: nowrap !important;
        max-width: 100% !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        position: relative !important;
        min-height: 48px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    }

    /* MOBILE LOGO */
    header.sseco-header .sseco-header__logo {
        margin-right: auto !important;
        flex-shrink: 0 !important;
        position: relative !important;
        order: 1 !important;
        left: 0 !important;
        transform: none !important;
    }

    header.sseco-header .sseco-header__logo img {
        height: 45px !important;
        margin-left: 19px !important;
    }

    /* ACTIONS CONTAINER */
    .sseco-header__actions {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        flex-shrink: 0 !important;
        margin-left: 0 !important;
        position: relative !important;
        order: 3 !important;
    }

    /* MOBILE THEME TOGGLE */
    .sseco-theme-switch {
        margin-right: 0 !important;
        order: 1 !important;
    }

    .theme-switch__toggle {
        width: 36px !important;
        height: 36px !important;
        border-radius: 8px !important;
    }
}

/* MOBILE HEADER BORDER - DARK THEME SUPPORT */
body.dark-theme header.sseco-header .sseco-header__container,
body.dark header.sseco-header .sseco-header__container {
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

/* Tablet Medium (769px - 1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
    /* ACTIONS CONTAINER - COMPACT LAYOUT */
    .sseco-header__actions {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
        margin-left: 0 !important;
        position: relative !important;
        order: 3 !important;
    }

    /* MOBILE THEME TOGGLE */
    .sseco-theme-switch {
        margin-right: 0 !important;
        order: 1 !important;
    }

    .theme-switch__toggle {
        width: 38px !important;
        height: 38px !important;
        border-radius: 8px !important;
    }

    .sseco-header__mobile-toggle {
        width: 44px !important;
        height: 44px !important;
        margin-left: 6px !important;
    }
    
    .sseco-header__mobile-toggle span {
        width: 22px !important;
        height: 3px !important;
        margin: 3px 0 !important;
    }
    
    .sseco-mobile-menu {
        top: 55px !important;
    }
}

/* Mobile Large (641px - 768px) */
@media (max-width: 768px) and (min-width: 641px) {
    /* ACTIONS CONTAINER - MOBILE LAYOUT */
    .sseco-header__actions {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        flex-shrink: 0 !important;
        margin-left: 0 !important;
        position: relative !important;
        order: 3 !important;
    }

    /* MOBILE THEME TOGGLE */
    .sseco-theme-switch {
        margin-right: 0 !important;
        order: 1 !important;
    }

    .theme-switch__toggle {
        width: 36px !important;
        height: 36px !important;
        border-radius: 8px !important;
    }

    .sseco-header__mobile-toggle {
        width: 42px !important;
        height: 42px !important;
        margin-left: 6px !important;
    }
    
    .sseco-header__mobile-toggle span {
        width: 20px !important;
        height: 3px !important;
        margin: 3px 0 !important;
    }
    
    header.sseco-header .sseco-header__container {
        padding: 8px 16px !important;
    }

    header.sseco-header .sseco-header__logo {
        left: 0 !important;
        transform: none !important;
    }
    
    header.sseco-header .sseco-header__logo img {
        height: 40px !important;
    }

    .sseco-mobile-menu {
        top: 56px !important;
    }

    .sseco-mobile-nav__item {
        font-size: 14px !important;
        font-weight: 400 !important;
        padding: 12px 16px !important;
        min-height: 40px !important;
    }
    
    .sseco-mobile-nav__accordion-toggle {
        font-size: 14px !important;
        font-weight: 400 !important;
        padding: 1px 16px !important;
        min-height: 40px !important;
    }
    
    .sseco-mobile-nav__subitem {
        font-size: 13px !important;
        font-weight: 300 !important;
        padding: 10px 16px 10px 32px !important;
        min-height: 36px !important;
    }
    
    .sseco-mobile-nav__group-title {
        font-size: 10px !important;
        font-weight: 500 !important;
        padding: 0 16px !important;
        margin: 10px 0 4px 0 !important;
    }

    .theme-switch__toggle {
        width: 36px !important;
        height: 36px !important;
    }

    .sseco-mobile-menu__container {
        padding: 16px !important;
    }

    .sseco-mobile-nav {
        gap: 2px !important;
    }

    .sseco-mobile-nav__group {
        margin-bottom: 8px !important;
    }

    .sseco-mobile-menu__actions {
        margin-top: 16px !important;
        padding: 16px 0 !important;
    }

    .sseco-btn--full {
        min-height: 44px !important;
        font-size: 14px !important;
    }
}

/* Mobile Medium (481px - 640px) */
@media (max-width: 640px) and (min-width: 481px) {    /* ACTIONS CONTAINER - COMPACT MOBILE */
    .sseco-header__actions {
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
        flex-shrink: 0 !important;
        margin-left: 0 !important;
        position: relative !important;
        order: 3 !important;
    }

    /* MOBILE THEME TOGGLE */
    .sseco-theme-switch {
        margin-right: 0 !important;
        order: 1 !important;
    }

    .theme-switch__toggle {
        width: 34px !important;
        height: 34px !important;
        border-radius: 8px !important;
    }

    .sseco-header__mobile-toggle {
        width: 40px !important;
        height: 40px !important;
        margin-left: 5px !important;
    }
    
    .sseco-header__mobile-toggle span {
        width: 19px !important;
        height: 2.5px !important;
        margin: 3px 0 !important;
    }

    header.sseco-header .sseco-header__container {
        padding: 10px 14px !important;
    }
    
    header.sseco-header .sseco-header__logo {
        left: 0 !important;
        transform: none !important;
    }
    
    header.sseco-header .sseco-header__logo img {
        height: 30px !important;
    }
    
    .sseco-mobile-menu {
        top: 50px !important;
    }
}

/* Mobile Small (321px - 480px) */
@media (max-width: 480px) and (min-width: 321px) {    /* ACTIONS CONTAINER - SMALL MOBILE */
    .sseco-header__actions {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        flex-shrink: 0 !important;
        margin-left: 0 !important;
        position: relative !important;
        order: 3 !important;
    }

    /* MOBILE THEME TOGGLE */
    .sseco-theme-switch {
        margin-right: 0 !important;
        order: 1 !important;
    }

    .theme-switch__toggle {
        width: 32px !important;
        height: 32px !important;
        border-radius: 8px !important;
    }

    .sseco-header__mobile-toggle {
        width: 38px !important;
        height: 38px !important;
        margin-left: 6px !important;
    }
    header.sseco-header .sseco-header__logo {
        margin-right: auto !important;
        flex-shrink: 0 !important;
        position: relative !important;
        order: 1 !important;
    }
    
    .sseco-header__mobile-toggle span {
        width: 18px !important;
        height: 2px !important;
        margin: 2px 0 !important;
    }

    header.sseco-header .sseco-header__container {
        padding: 8px 10px !important;
    }

    header.sseco-header .sseco-header__logo {
        left: 0 !important;
        transform: none !important;
    }
    
    header.sseco-header .sseco-header__logo img {
        height: 42px !important;
    }

    .sseco-mobile-menu {
        top: 57px !important;
    }

    .sseco-mobile-nav__item {
        font-size: 12px !important;
        padding: 8px 10px !important;
        min-height: 36px !important;
    }
    
    .sseco-mobile-nav__accordion-toggle {
        font-size: 12px !important;
        padding: 1px 10px !important;
        min-height: 36px !important;
    }
    
    .sseco-mobile-nav__subitem {
        font-size: 12px !important;
        padding: 8px 12px 8px 28px !important;
        min-height: 32px !important;
    }

    .sseco-mobile-menu__container {
        padding: 12px !important;
    }

    .sseco-mobile-menu__actions {
        padding: 12px 0 !important;
    }

    .sseco-btn--full {
        min-height: 40px !important;
        font-size: 13px !important;
        padding: 8px 12px !important;
    }
}

/* Mobile Tiny (320px and below) */
@media (max-width: 320px) {    /* ACTIONS CONTAINER - TINY MOBILE */
    .sseco-header__actions {
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        flex-shrink: 0 !important;
        margin-left: 0 !important;
        position: relative !important;
        order: 3 !important;
    }

    /* MOBILE THEME TOGGLE */
    .sseco-theme-switch {
        margin-right: 0 !important;
        order: 1 !important;
    }

    .theme-switch__toggle {
        width: 28px !important;
        height: 28px !important;
        border-radius: 6px !important;
    }

    .sseco-header__mobile-toggle {
        width: 32px !important;
        height: 32px !important;
        margin-left: 4px !important;
    }
    
    .sseco-header__mobile-toggle span {
        width: 16px !important;
        height: 2px !important;
        margin: 2px 0 !important;
    }

    header.sseco-header .sseco-header__container {
        padding: 6px 8px !important;
        min-height: 48px !important;
    }
    
    header.sseco-header .sseco-header__logo {
        margin-right: auto !important;
        position: relative !important;
        order: 1 !important;
    }
    
    header.sseco-header .sseco-header__logo {
        left: 0 !important;
        transform: none !important;
    }
    
    header.sseco-header .sseco-header__logo img {
        height: 24px !important;
    }
    
    .sseco-mobile-menu {
        top: 48px !important;
    }
    
    .sseco-mobile-nav__item {
        font-size: 13px !important;
        padding: 8px 10px !important;
        min-height: 32px !important;
    }
    
    .sseco-mobile-nav__accordion-toggle {
        font-size: 13px !important;
        padding: 8px 10px !important;
        min-height: 32px !important;
    }
    
    .sseco-mobile-nav__subitem {
        font-size: 11px !important;
        padding: 6px 10px 6px 24px !important;
        min-height: 28px !important;
    }
    
    .sseco-mobile-menu__container {
        padding: 8px !important;
    }
    
    .sseco-mobile-menu__actions {
        padding: 8px 0 !important;
        gap: 8px !important;
    }
    
    .sseco-btn--full {
        min-height: 36px !important;
        font-size: 12px !important;
        padding: 6px 10px !important;
    }
    
    .sseco-mobile-nav__group-title {
        font-size: 9px !important;
        padding: 0 10px !important;
        margin: 8px 0 2px 0 !important;
    }
}

/* =========================== 
   MOBILE OPTIMIZATIONS
   =========================== */

@media (max-width: 1023px) {
    .sseco-mobile-nav__item,
    .sseco-mobile-nav__accordion-toggle,
    .sseco-mobile-nav__subitem {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }

    .sseco-mobile-nav__item:active,
    .sseco-mobile-nav__accordion-toggle:active,
    .sseco-mobile-nav__subitem:active {
        background: rgba(99, 91, 255, 0.2) !important;
        transform: scale(0.98);
    }

    .sseco-mobile-menu {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .sseco-mobile-menu__container {
        transform: translateZ(0);
    }
}

/* =========================== 
   ANIMATIONS
   =========================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.sseco-dropdown.active .sseco-dropdown__link {
    animation: fadeInUp 0.3s ease forwards
}

.sseco-dropdown.active .sseco-dropdown__link:nth-child(1) {
    animation-delay: 0.05s
}

.sseco-dropdown.active .sseco-dropdown__link:nth-child(2) {
    animation-delay: 0.1s
}

.sseco-dropdown.active .sseco-dropdown__link:nth-child(3) {
    animation-delay: 0.15s
}

.sseco-dropdown.active .sseco-dropdown__link:nth-child(4) {
    animation-delay: 0.2s
}

.sseco-dropdown.active .sseco-dropdown__link:nth-child(5) {
    animation-delay: 0.25s
}

/* =========================== 
   PLATFORM SECTIONS STYLES - DESKTOP ONLY
   =========================== */

/* Compact wrapper for main sections (4 columns) */
header.sseco-header .sseco-dropdown__wrap--compact {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 16px !important;
}

/* Platform sections container - Below main sections */
header.sseco-header .sseco-dropdown__platforms-section {
    margin-top: 20px !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.dark-theme header.sseco-header .sseco-dropdown__platforms-section,
body.dark header.sseco-header .sseco-dropdown__platforms-section {
    border-top-color: rgba(255, 255, 255, 0.1) !important;
}

/* Platform sections wrapper for 2-column layout */
header.sseco-header .sseco-dropdown__platforms-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
}

/* Individual platform section */
header.sseco-header .sseco-dropdown__platform-section {
    display: flex !important;
    flex-direction: column !important;
}

/* Platform grid for app links */
header.sseco-header .sseco-dropdown__platform-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    margin-top: 6px !important;
}

/* Platform link styling */
header.sseco-header .sseco-dropdown__platform-link {
    display: flex !important;
    align-items: center !important;
    padding: 8px 12px !important;
    color: var(--header-text) !important;
    text-decoration: none !important;
    font-family: 'Gilroy-semibold' !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    border-radius: 6px !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    background: var(--dropdown-bg) !important;
    gap: 8px !important;
    position: relative !important;
    min-height: 32px !important;
}

body.dark-theme header.sseco-header .sseco-dropdown__platform-link,
body.dark header.sseco-header .sseco-dropdown__platform-link {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

header.sseco-header .sseco-dropdown__platform-link:hover {
    background-color: rgba(99, 91, 255, 0.08) !important;
    color: var(--header-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.15) !important;
    border-color: var(--header-hover) !important;
    text-decoration: none !important;
}

/* Platform link with "new" badge */
header.sseco-header .sseco-dropdown__platform-link--new {
    border-color: var(--header-hover) !important;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.05), rgba(99, 91, 255, 0.02)) !important;
}

header.sseco-header .sseco-dropdown__platform-link--new:hover {
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.12), rgba(99, 91, 255, 0.08)) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 16px rgba(99, 91, 255, 0.2) !important;
}

/* Platform icon container */
header.sseco-header .sseco-dropdown__platform-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 4px !important;
    background: rgba(99, 91, 255, 0.08) !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

header.sseco-header .sseco-dropdown__platform-link:hover .sseco-dropdown__platform-icon {
    background: rgba(99, 91, 255, 0.15) !important;
    transform: scale(1.05) !important;
}

/* Platform icon images and SVGs */
header.sseco-header .sseco-dropdown__platform-icon img {
    width: 14px !important;
    height: 14px !important;
    object-fit: contain !important;
}

header.sseco-header .sseco-dropdown__platform-icon svg {
    width: 12px !important;
    height: 12px !important;
    stroke: var(--header-hover) !important;
    fill: none !important;
}

/* Platform link text */
header.sseco-header .sseco-dropdown__platform-link span:not(.sseco-badge) {
    flex: 1 !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
}

/* Badge positioning in platform links */
header.sseco-header .sseco-dropdown__platform-link .sseco-badge {
    margin-left: auto !important;
    flex-shrink: 0 !important;
    font-size: 7px !important;
    padding: 1px 3px !important;
    border-radius: 2px !important;
}

/* Responsive adjustments for platform sections */
@media (max-width: 1440px) and (min-width: 1024px) {
    header.sseco-header .sseco-dropdown__wrap--compact {
        gap: 16px !important;
    }
    
    header.sseco-header .sseco-dropdown__platforms-wrapper {
        gap: 20px !important;
    }
    
    header.sseco-header .sseco-dropdown__platform-link {
        padding: 6px 10px !important;
        font-size: 11px !important;
        min-height: 28px !important;
    }
    
    header.sseco-header .sseco-dropdown__platform-icon {
        width: 18px !important;
        height: 18px !important;
    }
    
    header.sseco-header .sseco-dropdown__platform-icon img {
        width: 12px !important;
        height: 12px !important;
    }
    
    header.sseco-header .sseco-dropdown__platform-icon svg {
        width: 10px !important;
        height: 10px !important;
    }
}

/* =========================== 
   HEADER CARDS HOVER ANIMATION
   =========================== */

/* Hero image container positioning */
header.sseco-header .sseco-dropdown__hero-image {
    position: relative !important;
    overflow: hidden !important;
}

/* Static and GIF images positioning */
header.sseco-header .sseco-dropdown__hero-image-static,
header.sseco-header .sseco-dropdown__hero-image-gif {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Default state - show static first frame */
header.sseco-header .sseco-dropdown__hero-image-static {
    opacity: 1 !important;
    z-index: 2 !important;
}

header.sseco-header .sseco-dropdown__hero-image-gif {
    opacity: 0 !important;
    z-index: 1 !important;
}

/* Hover state - show animated gif */
header.sseco-header .sseco-dropdown__hero:hover .sseco-dropdown__hero-image-static {
    opacity: 0 !important;
}

header.sseco-header .sseco-dropdown__hero:hover .sseco-dropdown__hero-image-gif {
    opacity: 1 !important;
}

