/* FORCE BROWSER CACHE REFRESH - v6.0 - CLEAN DROPDOWN CENTERING */
/* Clean CSS structure without conflicts - REFACTORED */

/* ⚠️  CRITICAL WARNING - DO NOT BREAK DROPDOWN POSITIONING:
 * 
 * 1. NEVER add transform: translateY() to .sseco-nav__item:hover 
 *    This breaks dropdown centering and causes horizontal shifting!
 * 
 * 2. NEVER add position: absolute/relative to header pseudo-elements
 *    This interferes with fixed positioning of dropdowns
 * 
 * 3. Keep dropdown positioning simple: fixed + left: 50% + translateX(-50%)
 *    Do NOT add margin/right overrides to dropdown containers
 * 
 * 4. Safe effects for nav items: background, color, box-shadow, border-radius
 *    Unsafe: any transform, margin changes, position changes
 */

:root {
    --header-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    --header-text: #e8e8e8;
    --header-hover: #ff6b35;
    --header-accent: #ff4500;
    --dropdown-bg: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --dropdown-shadow: 0 15px 50px rgba(255, 107, 53, 0.1), 0 5px 20px rgba(0, 0, 0, 0.6);
    --btn-primary-bg: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    --btn-primary-hover: linear-gradient(135deg, #ff7b45 0%, #ff5510 100%);
    --btn-secondary-border: #333333;
    --btn-secondary-hover: rgba(255, 107, 53, 0.1);
    --mobile-menu-bg: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --theme-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --neon-glow: 0 0 10px rgba(255, 107, 53, 0.3), 0 0 20px rgba(255, 107, 53, 0.2), 0 0 30px rgba(255, 107, 53, 0.1);
    --circuit-pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3Cpath d='M30 28.5v3m1.5-1.5h-3m15-15v3m1.5-1.5h-3m-30 0v3m1.5-1.5h-3m15 15v3m1.5-1.5h-3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

body.dark-theme,
body.dark {
    --header-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    --header-text: #f0f0f0;
    --header-hover: #ff7b45;
    --header-accent: #ff5510;
    --dropdown-bg: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --dropdown-shadow: 0 15px 50px rgba(255, 107, 53, 0.15), 0 5px 25px rgba(0, 0, 0, 0.7);
    --btn-primary-bg: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    --btn-primary-hover: linear-gradient(135deg, #ff7b45 0%, #ff5510 100%);
    --btn-secondary-border: #444444;
    --btn-secondary-hover: rgba(255, 107, 53, 0.15);
    --mobile-menu-bg: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --neon-glow: 0 0 15px rgba(255, 123, 69, 0.4), 0 0 25px rgba(255, 107, 53, 0.3), 0 0 35px rgba(255, 69, 0, 0.2)
}

/* =========================== 
   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), box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    /* Multi-layered crimson/red glow effect */
    box-shadow: 
        0 0 20px rgba(255, 107, 53, 0.3),        /* Inner glow */
        0 0 40px rgba(255, 69, 0, 0.2),          /* Middle glow */
        0 0 80px rgba(220, 20, 60, 0.15),        /* Outer crimson glow */
        0 2px 0 rgba(255, 107, 53, 0.4),         /* Top accent line */
        inset 0 1px 0 rgba(255, 107, 53, 0.1)    /* Inner accent line */
        !important;
    width: 100% !important;
    height: auto !important;
    /* Subtle backdrop blur for depth */
    backdrop-filter: blur(8px) !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;
    justify-content: center !important;
    text-decoration: none !important;
    margin-right: 0 !important;
    transition: all 0.3s ease !important;
    padding: 12px !important;
    flex-shrink: 0 !important;
    position: relative !important;
    order: 1 !important;
    left: 200px;
    /* Perfect circle for round logo */
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    /* Optimized for GPU acceleration */
    will-change: box-shadow, filter !important;
    /* Streamlined crimson circular glow - removed excessive layers for better performance */
    box-shadow: 
        0 0 15px rgba(255, 107, 53, 0.4),        /* Inner circular glow */
        0 0 30px rgba(255, 69, 0, 0.25),         /* Middle circular glow */
        0 0 50px rgba(220, 20, 60, 0.15),        /* Outer crimson circular glow */
        inset 0 0 20px rgba(255, 107, 53, 0.05)  /* Inner circular highlight */
        !important;
    /* Optimized animation with smoother easing */
    animation: logoGlowPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

header.sseco-header .sseco-header__logo:hover {
    text-decoration: none !important;
    /* Optimized hover glow - simplified for better performance */
    box-shadow: 
        0 0 25px rgba(255, 107, 53, 0.6),        /* Stronger inner circular glow */
        0 0 45px rgba(255, 69, 0, 0.4),          /* Enhanced middle circular glow */
        0 0 70px rgba(220, 20, 60, 0.25),        /* Intensified outer circular glow */
        inset 0 0 25px rgba(255, 107, 53, 0.1)   /* Stronger inner circular highlight */
        !important;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.03) 70%, transparent 100%) !important;
    /* ⚠️ NO transform here - safe hover effects only */
}

header.sseco-header .sseco-header__logo img {
    height: 60px !important;
    width: auto !important;
    max-width: 240px !important;
    /* GPU optimization for smooth animations */
    will-change: filter !important;
    /* Streamlined glow effect for logo image - reduced for better performance */
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3)) 
            drop-shadow(0 0 18px rgba(255, 69, 0, 0.2)) !important;
    transition: filter 0.3s cubic-bezier(0.4, 0, 0.6, 1) !important;
    /* Synchronized pulsing logo image glow animation */
    animation: logoImageGlow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Enhanced logo image glow on hover */
header.sseco-header .sseco-header__logo:hover img {
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.5)) 
            drop-shadow(0 0 25px rgba(255, 69, 0, 0.3))
            drop-shadow(0 0 35px rgba(220, 20, 60, 0.2))
            drop-shadow(0 0 45px rgba(255, 0, 0, 0.1)) !important;
    /* Synchronized animation timing for visual consistency */
    animation: logoImageGlowIntense 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Optimized intense logo glow animation for hover state */
@keyframes logoImageGlowIntense {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.5)) 
                drop-shadow(0 0 25px rgba(255, 69, 0, 0.3))
                drop-shadow(0 0 35px rgba(220, 20, 60, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 18px rgba(255, 107, 53, 0.6)) 
                drop-shadow(0 0 28px rgba(255, 69, 0, 0.4))
                drop-shadow(0 0 38px rgba(220, 20, 60, 0.25));
    }
}

/* Special effect when header is scrolled - circular logo gets extra bright */
.sseco-header.scrolled .sseco-header__logo {
    box-shadow: 
        0 0 20px rgba(255, 107, 53, 0.5),        /* Stronger circular glow for scrolled state */
        0 0 35px rgba(255, 69, 0, 0.3),          /* Enhanced middle circular glow */
        0 0 60px rgba(220, 20, 60, 0.2),         /* Intensified outer circular glow */
        0 0 80px rgba(255, 0, 0, 0.12),          /* Extra red circular aura */
        inset 0 0 25px rgba(255, 107, 53, 0.08)  /* Stronger inner circular highlight */
        !important;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 70%, transparent 100%) !important;
    /* Synchronized pulsing for scrolled state */
    animation: logoGlowPulseIntense 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Optimized intense logo pulse for scrolled header */
@keyframes logoGlowPulseIntense {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(255, 107, 53, 0.5),
            0 0 35px rgba(255, 69, 0, 0.3),
            0 0 55px rgba(220, 20, 60, 0.2),
            inset 0 0 25px rgba(255, 107, 53, 0.08);
        filter: brightness(1.02) contrast(1.01);
    }
    50% { 
        box-shadow: 
            0 0 23px rgba(255, 107, 53, 0.6),
            0 0 40px rgba(255, 69, 0, 0.4),
            0 0 65px rgba(220, 20, 60, 0.25),
            inset 0 0 30px rgba(255, 107, 53, 0.1);
        filter: brightness(1.08);
    }
}

/* 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: rgba(255, 107, 53, 0.1) !important;
    border-radius: 8px !important;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2) !important;
    /* ⚠️ NO transform properties here - breaks dropdown positioning! */
}

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;
    border: 1px solid rgba(255, 107, 53, 0.2) !important;
    padding: 24px !important;
    min-width: 600px !important;
    max-width: min(90vw, 1600px) !important;
    /* Safe technological effects - NO positioning changes */
    backdrop-filter: blur(10px) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Add technological grid pattern overlay */
header.sseco-header .sseco-dropdown__container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--circuit-pattern);
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

/* Ensure content appears above pattern */
header.sseco-header .sseco-dropdown__container > * {
    position: relative;
    z-index: 1;
}

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;
}

/* Hide link descriptions (they are just for reference) */
header.sseco-header .sseco-dropdown__link-desc {
    display: none !important;
}

header.sseco-header .sseco-dropdown__link:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 69, 0, 0.05) 100%) !important;
    color: var(--header-hover) !important;
    text-decoration: none !important;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3), inset 0 0 15px rgba(255, 107, 53, 0.05) !important;
    border-left: 3px solid var(--header-hover) !important;
    border-radius: 6px !important;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.4) !important;
    /* ⚠️ Enhanced effects instead of transform for safety */
}

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(255, 107, 53, 0.15);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
    transform: translateY(-1px);
    border: 1px solid rgba(255, 107, 53, 0.3)
}

.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;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4), var(--neon-glow) !important;
    text-decoration: none !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
    /* ⚠️ NO transform - potential layout interference */
}

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;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3) !important;
    text-shadow: 0 0 5px rgba(255, 107, 53, 0.5) !important;
    /* ⚠️ NO transform - potential layout interference */
}

.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(255, 107, 53, 0.15);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    transform: translateY(-1px);
}

.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 - FIXED FOR TOUCH SCROLL */
.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);
    /* Ensure proper touch handling */
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.sseco-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.sseco-mobile-menu__container {
    padding: 10px;
    height: calc(100vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--mobile-menu-bg);
    /* Fix for iOS safari touch scroll */
    position: relative;
    z-index: 1;
}

.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: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 69, 0, 0.1) 100%);
    color: var(--header-hover);
    transform: translateX(4px);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
    text-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
}

.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: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 69, 0, 0.1) 100%);
    transform: translateX(4px);
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.2);
}

.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: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 69, 0, 0.05) 100%);
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.15);
    text-shadow: 0 0 3px rgba(255, 107, 53, 0.3);
}

.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 */
/* Enhanced scrolled state with intensified crimson glow */
.sseco-header.scrolled {
    backdrop-filter: blur(15px);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 50%, rgba(15, 15, 15, 0.95) 100%);
    /* Enhanced multi-layered glow for scrolled state */
    box-shadow: 
        0 0 25px rgba(255, 107, 53, 0.4),        /* Stronger inner glow */
        0 0 45px rgba(255, 69, 0, 0.25),         /* Enhanced middle glow */
        0 0 85px rgba(220, 20, 60, 0.2),         /* Intensified outer glow */
        0 4px 0 rgba(255, 107, 53, 0.5),         /* Stronger bottom accent */
        0 8px 25px rgba(0, 0, 0, 0.5),           /* Deep shadow for depth */
        inset 0 1px 0 rgba(255, 107, 53, 0.15)   /* Enhanced inner accent */
        !important;
    /* Override animation for scrolled state */
    animation: headerGlowPulseIntense 3s ease-in-out infinite;
}

body.dark-theme .sseco-header.scrolled,
body.dark .sseco-header.scrolled {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 50%, rgba(15, 15, 15, 0.95) 100%);
    box-shadow: 
        0 0 30px rgba(255, 107, 53, 0.5),
        0 0 50px rgba(255, 69, 0, 0.3),
        0 0 90px rgba(220, 20, 60, 0.25),
        0 4px 0 rgba(255, 107, 53, 0.6),
        0 8px 30px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 107, 53, 0.2)
        !important;
}

/* Intense pulsing animation for scrolled state */
@keyframes headerGlowPulseIntense {
    0%, 100% { 
        box-shadow: 
            0 0 25px rgba(255, 107, 53, 0.4),
            0 0 45px rgba(255, 69, 0, 0.25),
            0 0 85px rgba(220, 20, 60, 0.2),
            0 4px 0 rgba(255, 107, 53, 0.5),
            0 8px 25px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 107, 53, 0.15);
    }
    50% { 
        box-shadow: 
            0 0 35px rgba(255, 107, 53, 0.5),
            0 0 55px rgba(255, 69, 0, 0.35),
            0 0 95px rgba(220, 20, 60, 0.3),
            0 4px 0 rgba(255, 107, 53, 0.6),
            0 8px 30px rgba(0, 0, 0, 0.6),
            inset 0 1px 0 rgba(255, 107, 53, 0.2);
    }
}

/* Optimized circular logo pulsing glow animation */
@keyframes logoGlowPulse {
    0%, 100% { 
        box-shadow: 
            0 0 15px rgba(255, 107, 53, 0.4),        /* Inner circular glow */
            0 0 30px rgba(255, 69, 0, 0.25),         /* Middle circular glow */
            0 0 50px rgba(220, 20, 60, 0.15),        /* Outer crimson circular glow */
            inset 0 0 20px rgba(255, 107, 53, 0.05); /* Inner circular highlight */
        filter: brightness(1) contrast(1);
    }
    50% { 
        box-shadow: 
            0 0 18px rgba(255, 107, 53, 0.5),        /* Enhanced inner circular glow */
            0 0 33px rgba(255, 69, 0, 0.3),          /* Enhanced middle circular glow */
            0 0 53px rgba(220, 20, 60, 0.2),         /* Enhanced outer circular glow */
            inset 0 0 23px rgba(255, 107, 53, 0.08); /* Enhanced inner circular highlight */
        filter: brightness(1.03) contrast(1.02);
    }
}

/* Optimized logo image glow pulsing - synchronized timing */
@keyframes logoImageGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3)) 
                drop-shadow(0 0 18px rgba(255, 69, 0, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.4)) 
                drop-shadow(0 0 20px rgba(255, 69, 0, 0.25));
    }
}

/* Special technological effects */
header.sseco-header .sseco-nav__link {
    position: relative;
}

header.sseco-header .sseco-nav__link:hover {
    animation: neon-flicker 2s ease-in-out infinite;
}

header.sseco-header .sseco-btn--primary {
    position: relative;
    overflow: hidden;
}

header.sseco-header .sseco-btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

header.sseco-header .sseco-btn--primary:hover::before {
    left: 100%;
}

/* Header hidden state with persistent crimson glow */
.sseco-header.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
    /* Keep only the bottom crimson glow visible when hidden */
    box-shadow: 
        0 80px 60px rgba(255, 107, 53, 0.4),      /* Persistent bottom glow */
        0 60px 40px rgba(255, 69, 0, 0.3),        /* Middle crimson glow */
        0 40px 20px rgba(220, 20, 60, 0.25),      /* Inner crimson glow */
        0 2px 0 rgba(255, 107, 53, 0.6)           /* Accent line at top edge */
        !important;
}

/* Add a subtle crimson afterglow effect that appears after header hides */
.sseco-header.hidden::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.8) 20%, 
        rgba(255, 69, 0, 1) 50%, 
        rgba(220, 20, 60, 0.9) 80%, 
        transparent 100%);
    box-shadow: 
        0 0 10px rgba(255, 107, 53, 0.6),
        0 0 20px rgba(255, 69, 0, 0.4),
        0 0 30px rgba(220, 20, 60, 0.3);
    z-index: 9999;
    opacity: 0;
    animation: glowFadeIn 0.5s ease 0.3s forwards;
}

@keyframes glowFadeIn {
    0% { 
        opacity: 0; 
        height: 0px;
    }
    100% { 
        opacity: 1; 
        height: 3px;
    }
}

/* Subtle pulsing animation for header glow */
@keyframes headerGlowPulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(255, 107, 53, 0.3),
            0 0 40px rgba(255, 69, 0, 0.2),
            0 0 80px rgba(220, 20, 60, 0.15),
            0 2px 0 rgba(255, 107, 53, 0.4),
            inset 0 1px 0 rgba(255, 107, 53, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(255, 107, 53, 0.4),
            0 0 50px rgba(255, 69, 0, 0.3),
            0 0 90px rgba(220, 20, 60, 0.2),
            0 2px 0 rgba(255, 107, 53, 0.5),
            inset 0 1px 0 rgba(255, 107, 53, 0.15);
    }
}

/* Apply pulsing animation to header */
header.sseco-header {
    animation: headerGlowPulse 4s ease-in-out infinite;
}

/* Mobile menu behavior - BLOCK BACKGROUND SCROLL */
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;
    }
    
    header.sseco-header .sseco-nav {
        gap: 4px !important;
        max-width: calc(100vw - 600px) !important;
        padding: 0 30px !important;
    }
    
    header.sseco-header .sseco-dropdown {
        top: 75px !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;
    }
    
    /* Medium desktop dropdown centering */
    header.sseco-header .sseco-dropdown--mega .sseco-dropdown__container {
        min-width: 1030px !important;
        max-width: min(1100px, 88vw) !important;
        padding: 28px !important;
        margin: 0 !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: 60px !important;
        margin-left: 0 !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;
    }

    .sseco-mobile-menu__container {
        height: calc(100vh - 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: 60px !important;
    }

    .sseco-mobile-menu {
        top: 56px !important;
    }

    .sseco-mobile-menu__container {
        height: calc(100vh - 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: 60px !important;
    }
    
    .sseco-mobile-menu {
        top: 50px !important;
    }

    .sseco-mobile-menu__container {
        height: calc(100vh - 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: 55px !important;
    }

    .sseco-mobile-menu {
        top: 69px !important;
    }

    .sseco-mobile-menu__container {
        height: calc(100vh - 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-menu__container {
        height: calc(100vh - 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;
        /* Ensure touch scroll works properly */
        overscroll-behavior: contain;
    }

    .sseco-mobile-menu__container {
        transform: translateZ(0);
        /* Improve touch scrolling performance */
        will-change: scroll-position;
        /* Enable momentum scrolling on iOS */
        -webkit-overflow-scrolling: touch;
        /* Allow vertical scrolling */
        touch-action: pan-y;
        /* Prevent elastic bounce at top/bottom */
        overscroll-behavior-y: contain;
    }

    /* Fix for iOS Safari - ensure scrollable content */
    .sseco-mobile-nav {
        min-height: calc(100vh - 120px);
        padding-bottom: 20px;
    }
}

/* =========================== 
   ANIMATIONS
   =========================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.4), 0 0 30px rgba(255, 107, 53, 0.2);
    }
}

@keyframes circuit-flow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
    }
    20%, 24%, 55% {
        text-shadow: 0 0 5px rgba(255, 107, 53, 0.3), 0 0 10px rgba(255, 107, 53, 0.5), 0 0 15px rgba(255, 107, 53, 0.7);
    }
}

.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 image and video positioning */
header.sseco-header .sseco-dropdown__hero-image-static,
header.sseco-header .sseco-dropdown__hero-image-video {
    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-video {
    opacity: 0 !important;
    z-index: 1 !important;
    /* Additional video-specific styles */
    object-fit: cover !important;
    object-position: center !important;
}

/* Hover state - show video */
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-video {
    opacity: 1 !important;
}