:root {
    --sc-accent: #0b5ed7;
    --sc-accent-dark: #0a2540;
}

body.sc-menu-open {
    overflow: hidden;
}

/* Cookie Consent */
.sc-cookie-consent {
    position: fixed;
    right: 22px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 78px);
    width: min(390px, calc(100vw - 32px));
    z-index: 20000;
}

.sc-cookie-consent__inner {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px 14px;
    align-items: start;
    padding: 14px 14px 12px;
    border-radius: 20px;
    background: rgba(2, 6, 23, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 70px rgba(2, 6, 23, 0.45);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: sc-cookie-in 320ms ease-out both;
}

.sc-cookie-consent__icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.sc-cookie-consent__icon i {
    font-size: 18px;
    line-height: 1;
}

.sc-cookie-consent__title {
    font-weight: 900;
    letter-spacing: 0.2px;
    font-size: 14px;
    margin: 0 0 4px 0;
    color: #fff;
}

.sc-cookie-consent__text {
    font-size: 13px;
    line-height: 1.35;
    opacity: 0.92;
}

.sc-cookie-consent__actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.sc-cookie-consent__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 800;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.sc-cookie-consent__btn--primary {
    background: var(--sc-accent);
    border-color: rgba(11, 94, 215, 0.9);
    color: #fff;
}

.sc-cookie-consent__btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.sc-cookie-consent__btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.sc-cookie-consent__btn:active {
    transform: translateY(0);
}

.sc-cookie-consent__btn:focus-visible {
    outline: 3px solid rgba(11, 94, 215, 0.35);
    outline-offset: 3px;
}

body.sc-menu-open .sc-cookie-consent {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
}

@media (max-width: 767.98px) {
    .sc-cookie-consent {
        left: 12px;
        right: 12px;
        width: auto;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 86px);
    }

    .sc-cookie-consent__inner {
        grid-template-columns: 40px 1fr;
    }

    .sc-cookie-consent__actions {
        flex-direction: column;
    }

    .sc-cookie-consent__btn {
        width: 100%;
    }
}

@keyframes sc-cookie-in {
    from {
        transform: translateY(12px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Scroll To Top */
.scroll-to-top {
    position: fixed;
    right: 18px;
    left: auto !important;
    bottom: -100px;
    width: 48px;
    height: 48px;
    margin: 0 !important;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: radial-gradient(circle at 20% 20%, rgba(11, 94, 215, 1) 0%, rgba(10, 37, 64, 1) 70%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 55px rgba(2, 6, 23, 0.32);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: bottom 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    z-index: 20000;
    cursor: pointer;
}

.scroll-to-top::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(11, 94, 215, 0.35);
    animation: sc-scrolltop-pulse 2.4s ease-out infinite;
    pointer-events: none;
}

.scroll-to-top i {
    position: static !important;
    transform: none !important;
    top: auto !important;
    width: auto !important;
    color: #fff !important;
    font-size: 15px;
    line-height: 1;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 70px rgba(2, 6, 23, 0.38);
    filter: brightness(1.04);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

.scroll-to-top:focus-visible {
    outline: 3px solid rgba(11, 94, 215, 0.35);
    outline-offset: 3px;
}

@keyframes sc-scrolltop-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 94, 215, 0.25);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(11, 94, 215, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(11, 94, 215, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sc-cookie-consent__inner,
    .scroll-to-top::after {
        animation: none !important;
    }

    .sc-cookie-consent__btn,
    .scroll-to-top {
        transition: none !important;
    }
}

/* Header / Menu */
.sc-header {
    position: relative;
    z-index: 50000;
    isolation: isolate;
}

.sc-header #header_v1.header-v1 {
    position: sticky;
    top: 0;
    z-index: 50001;
    background: #eeede9;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: visible;
    box-shadow: 1px 2px 30px 0px;
}

.sc-header .header_wrap {
    max-width: 1440px;
    margin: 0 auto;
    z-index:9999999999
}

.sc-header .header-center {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    height: auto !important;
    min-height: 98px;
}

.sc-header .logo.left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.sc-header .logo.left .sc-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.sc-header .logo.left .sc-logo__frame {
    width: 148px;
    height: 118px;
    padding: 0px;
    border-radius:0;    
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-header .logo.left .sc-logo__img {
    width: auto;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    display: block;
}

.sc-header .main-nav {
    flex: 1 1 auto;
    min-width: 0;
}

.sc-header .main-navigation {
    position: relative;
    z-index: 1300;
}

.sc-header #header_v1.header-v1 .main-nav .main-navigation > div > ul > li > a {
    height: auto !important;
    line-height: 1.1;
}

.sc-header #header_v1.header-v1 .mini-cart {
    float: none !important;
    display: flex !important;
    height: auto !important;
    padding-top: 0 !important;
    align-items: center;
}

.sc-header .mini-cart {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    position: relative;
    z-index: 1350;
}

@media (min-width: 992px) {
    .sc-header #header_v1.header-v1 .mini-cart {
        margin-top: 0px;
    }
}

@media (max-width: 991.98px) {
    .sc-header #header_v1.header-v1 .mini-cart {
        margin-top: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .sc-header #header_v1.header-v1 .mini-cart {
        height: auto !important;
        line-height: 1.5;
    }
}

.sc-header .mini-cart .menu-button {
    order: 2;
}

.sc-header .mini-cart .modus-cart {
    order: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.sc-header .mini-cart .modus-cart button.dropdown-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(15, 23, 42, 0.18) !important;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.12);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.sc-header .mini-cart .modus-cart button.dropdown-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 94, 215, 0.35);
    background: rgba(11, 94, 215, 0.06) !important;
}

.sc-header .mini-cart .modus-cart button.dropdown-toggle img {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: block;
}

.sc-header .mini-cart .modus-cart-lightbox {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    bottom: auto;
    width: min(360px, calc(100vw - 28px));
    max-height: min(420px, calc(100vh - 120px));
    overflow: auto;
    z-index: 9600;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 22px 65px rgba(15, 23, 42, 0.18);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translate3d(0, 12px, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}

.sc-header .mini-cart.active .modus-cart-lightbox {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.18s ease, transform 0.22s ease;
}

.sc-header .modus-cart-lightbox .widget-heading {
    display: none;
}

.sc-header .modus-cart-lightbox .widget-close {
    color: var(--sc-accent-dark);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sc-header .modus-cart-lightbox .widget-close::before,
.sc-header .modus-cart-lightbox .widget-close::after {
    display: none;
}

.sc-header .modus-cart-lightbox .widget-close:hover {
    color: var(--sc-accent);
}

.sc-header .modus-cart-lightbox .widget_shopping_cart_content {
    padding: 12px 16px;
}

.sc-header .modus-cart-lightbox .widget_shopping_cart_content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.sc-header .modus-cart-lightbox .list-lang.lang-selector d {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(15, 23, 42, 0.02);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sc-header .modus-cart-lightbox .list-lang.lang-selector d:hover {
    background: rgba(11, 94, 215, 0.08);
    border-color: rgba(11, 94, 215, 0.22);
    transform: translateY(-1px);
}

.sc-header .modus-cart-lightbox .list-lang.lang-selector img {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    flex: 0 0 auto;
}

.sc-header .modus-cart-lightbox .list-lang.lang-selector a {
    color: var(--sc-accent-dark);
    font-weight: 700;
    text-decoration: none;
}

.sc-header .modus-cart-lightbox .list-lang form {
    margin: 0;
}

.sc-header .modus-cart-lightbox .widget_shopping_cart_content li.list-lang:not(.lang-selector) {
    display: none;
}

.sc-header .mini-cart .modus-close-cart {
    display: none !important;
}

.sc-header #header_v1.header-v1 .header_wrap .logo {
    position: static !important;
    top: auto !important;
    left: auto !important;
    z-index: auto !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: none !important;
}

.sc-header #header_v1.header-v1 .header_wrap .logo:hover {
    padding-top: 0 !important;
    box-shadow: none !important;
}

.sc-header #header_v1.header-v1 .header_wrap .logo img {
    max-width: none !important;
}

.sc-header .primary-menu > li > a {
    padding: 18px 14px;
    font-weight: 600;
    color: var(--sc-accent-dark);
    letter-spacing: 0.2px;
    border-radius: 14px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.sc-header .primary-menu > li > a:hover,
.sc-header .primary-menu > li.current-menu-item > a {
    color: var(--sc-accent);
}

.sc-header .primary-menu > li:hover > a {
    background: rgba(11, 94, 215, 0.06);
}

.sc-header .main-navigation ul.children,
.sc-header .main-navigation ul.sub-menu {
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    z-index: 1400;
}

.sc-header .main-navigation ul.children li a,
.sc-header .main-navigation ul.sub-menu li a {
    border-radius: 12px;
    margin: 2px 6px;
    padding: 10px 12px;
    font-weight: 650;
    color: var(--sc-accent-dark);
    transition: background-color 0.18s ease, color 0.18s ease;
}

.sc-header .main-navigation ul.children li a:hover,
.sc-header .main-navigation ul.sub-menu li a:hover {
    background:none;
    color: var(--sc-accent);
}

.sc-header .main-navigation li.megamenu .megamenu_sub {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    z-index: 1400;
}

.sc-header .main-navigation li.megamenu .megamenu_sub .widgettitle a {
    color: var(--sc-accent-dark);
    font-weight: 800;
}

.sc-header .main-navigation li.megamenu .megamenu_sub .widgettitle a:hover {
    color: var(--sc-accent);
}

.sc-header .sc-menu-expander {
    display: none;
}

.sc-header .btn-responsive-nav {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--sc-accent-dark) !important;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.16);
}

.sc-header .btn-responsive-nav:hover {
    background: var(--sc-accent);
}

.sc-header .btn-responsive-nav:focus {
    outline: 3px solid rgba(11, 94, 215, 0.25);
    outline-offset: 2px;
}

    @media (max-width: 991.98px) {
    .sc-header .logo.left .sc-logo__frame {
        width: 132px;
        height: 106px;
        padding: 12px;
        border-radius: 32px;
    }

    .sc-header .logo.left .sc-logo__img {
        max-width: 106px;
        max-height: 100px;
    }

    .sc-header .primary-menu > li > a {
        padding: 14px 12px;
    }

	    .sc-header .main-nav {
	        position: fixed;
	        top: 0;
	        bottom: 0;
	        height: 100dvh;
	        left: 0 !important;
	        right: auto !important;
	        width: min(360px, 88vw) !important;
	        background: #ffffff !important;
	        backdrop-filter: blur(14px);
	        -webkit-backdrop-filter: blur(14px);
        border-right: 1px solid rgba(15, 23, 42, 0.1);
        box-shadow: 18px 0 60px rgba(15, 23, 42, 0.18);
	        z-index: 9700;
        transform: translateX(-105%) !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.2s ease, visibility 0s linear 0.28s;
        padding: 56px 16px 18px;
        overflow: auto;
    }

    .sc-header .main-nav.active {
        transform: translateX(0) !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: transform 0.28s ease, opacity 0.2s ease;
    }

    .sc-header .main-nav > .close-menu {
        display: flex;
        position: absolute;
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        align-items: center;
        justify-content: center;
        background: rgba(15, 23, 42, 0.04);
        border: 1px solid rgba(15, 23, 42, 0.1);
        color: var(--sc-accent-dark);
        cursor: pointer;
    }

    .sc-header .main-nav > .close-menu:hover {
        background: rgba(11, 94, 215, 0.08);
        border-color: rgba(11, 94, 215, 0.22);
        color: var(--sc-accent);
    }

    .sc-header .main-nav.active + .mini-cart > div.close-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

	    .sc-header .mini-cart > div.close-menu {
	        position: fixed;
	        inset: 0;
	        background: rgba(2, 6, 23, 0.72);
	        backdrop-filter: blur(3px);
	        -webkit-backdrop-filter: blur(3px);
	        opacity: 0;
	        visibility: hidden;
	        pointer-events: none;
	        transition: opacity 0.2s ease, visibility 0s linear 0.2s;
	        z-index: 9650;
	    }

    .sc-header .main-nav .main-navigation {
        display: block;
        text-align: left;
    }

    .sc-header .main-nav .primary-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 0;
        margin: 0;
    }

	    .sc-header .main-nav .primary-menu > li {
	        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	        padding: 0 !important;
	        margin: 0 !important;
	        display: block;
	        position: relative;
	    }

	    .sc-header .main-nav .primary-menu > li > a {
	        padding: 12px 12px;
	        display: block;
	        line-height: 1.2;
	        font-size: 15.5px;
	        font-weight: 800;
	    }

	    .sc-header .main-nav .primary-menu > li.menu-item-has-children > a,
	    .sc-header .main-nav .primary-menu > li.page_item_has_children > a {
	        padding-right: 58px;
	    }

	    .sc-header .main-nav .main-navigation li.menu-item-has-children > a:after,
	    .sc-header .main-nav .main-navigation li.page_item_has_children > a:after {
	        display: none !important;
	        content: none !important;
	    }

	    .sc-header .main-nav .main-navigation li.menu-item-has-children i,
	    .sc-header .main-nav .main-navigation li.page_item_has_children i {
	        display: none !important;
	    }

	    .sc-header .main-nav .menu-item-has-children > ul.children,
	    .sc-header .main-nav .menu-item-has-children > ul.sub-menu {
	        display: none;
	        flex: 0 0 100%;
	        width: 100%;
	    }

    .sc-header .main-nav .menu-item-has-children.sc-submenu-open > ul.children,
    .sc-header .main-nav .menu-item-has-children.sc-submenu-open > ul.sub-menu {
        display: block;
    }

    .sc-header .main-nav .megamenu_sub {
        display: none !important;
    }

	    .sc-header .main-nav .main-navigation ul.children,
	    .sc-header .main-nav .main-navigation ul.sub-menu {
	        border-radius: 14px;
	        box-shadow: none;
	        border: 1px solid rgba(15, 23, 42, 0.08);
	        margin: 10px 0 14px 0;
	        width: 100%;
	    }

	    .sc-header .main-nav .main-navigation ul.children > li,
	    .sc-header .main-nav .main-navigation ul.sub-menu > li {
	        position: relative;
	    }

	    .sc-header .main-nav .main-navigation ul.children > li.menu-item-has-children > a,
	    .sc-header .main-nav .main-navigation ul.children > li.page_item_has_children > a,
	    .sc-header .main-nav .main-navigation ul.sub-menu > li.menu-item-has-children > a,
	    .sc-header .main-nav .main-navigation ul.sub-menu > li.page_item_has_children > a {
	        padding-right: 58px;
	    }

	    .sc-header .main-nav .main-navigation ul.children li a,
	    .sc-header .main-nav .main-navigation ul.sub-menu li a {
	        margin: 2px 8px;
	    }

    .sc-header .mini-cart .modus-cart-lightbox {
        right: 0;
        left: auto;
    }

	    .sc-header .sc-menu-expander {
	        display: inline-flex;
	        align-items: center;
	        justify-content: center;
	        width: 36px;
	        height: 36px;
	        border-radius: 999px;
	        border: 1px solid rgba(15, 23, 42, 0.12);
	        background: rgba(15, 23, 42, 0.03);
	        color: var(--sc-accent-dark);
	        cursor: pointer;
	        position: absolute;
	        right: 12px;
	        top: 10px;
	        transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	    }

	    .sc-header li.sc-submenu-open > .sc-menu-expander {
	        background: rgba(11, 94, 215, 0.08);
	        border-color: rgba(11, 94, 215, 0.22);
	    }

    .sc-header .sc-menu-expander::before {
        content: "\f078";
        font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 12px;
        transition: transform 0.2s ease;
    }

    .sc-header li.sc-submenu-open > .sc-menu-expander::before {
        transform: rotate(-180deg);
    }

    .sc-header .sc-menu-expander:hover {
        background: rgba(11, 94, 215, 0.06);
        border-color: rgba(11, 94, 215, 0.22);
        transform: translateY(-1px);
    }

    .sc-header .main-nav .primary-menu > li > a {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 767.98px) {
    .sc-header .logo.left .sc-logo__frame {
        width: 118px;
        height: 100px;
        padding: 10px;
        border-radius: 28px;
    }

    .sc-header .logo.left .sc-logo__img {
        max-width:100%;
        max-height: 85px;
    }

    .sc-header .main-nav {
        width: 100vw !important;
        border-right: 0;
    }
}

/* Hero / Slider */
.sc-hero-slider-wrapper {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background: #000;
}

.sc-hero-overlay {
    background: linear-gradient(90deg, rgba(10, 37, 64, 0.75) 0%, rgba(10, 37, 64, 0.35) 60%, rgba(10, 37, 64, 0) 100%);
}

.sc-hero-title,
.sc-hero-subtitle {
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.sc-hero-title {
    font-weight: 800;
    letter-spacing: -0.4px;
}

.sc-hero-subtitle {
    opacity: 0.95;
}

.sc-hero-btn {
    border-radius: 14px;
    padding: 13px 18px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.sc-hero-btn-primary {
    background: var(--sc-accent);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0);
}

.sc-hero-btn-primary:hover {
    background: #0a58ca;
    color: #fff;
}

.sc-hero-btn-outline {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sc-hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 767.98px) {
    .sc-hero-overlay {
        background: linear-gradient(180deg, rgba(10, 37, 64, 0.78) 0%, rgba(10, 37, 64, 0.4) 55%, rgba(10, 37, 64, 0) 100%);
    }
}

/* Revolution Slider custom navigation */
.sc-hero-bullets.tp-bullets {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-hero-bullets .tp-bullet {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.sc-hero-bullets .tp-bullet.selected {
    background: var(--sc-accent);
    border-color: var(--sc-accent);
}

.sc-hero-arrows.tp-leftarrow,
.sc-hero-arrows.tp-rightarrow {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.sc-hero-arrows.tp-leftarrow:hover,
.sc-hero-arrows.tp-rightarrow:hover {
    background: rgba(11, 94, 215, 0.65);
    transform: translateY(-1px);
}

.sc-hero-arrows.tp-leftarrow:before,
.sc-hero-arrows.tp-rightarrow:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    content: "\f104";
}

.sc-hero-arrows.tp-rightarrow:before {
    content: "\f105";
}

/* Creative fullpage slider (CarouselWidget) */
.sc-creative-slider {
    background-color: #000;
    z-index: 2;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    flex-direction: column;
    height: 100vh;
    min-height: 520px;
    display: flex;
    transform: translateX(var(--sc-creative-shift, 0px));
    will-change: transform;
    overflow: hidden;
    clip-path: none !important;
}

.sc-creative-slider .banner-horizental,
.sc-creative-slider .swiper,
.sc-creative-slider .swiper-wrapper,
.sc-creative-slider .swiper-slide,
.sc-creative-slider .slider-inner,
.sc-creative-slider .slick-list,
.sc-creative-slider .slick-track {
    height: 100%;
}

.sc-creative-slider .swiper-wrapper {
    position: relative;
    width: 100%;
}

.sc-creative-slider .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: left;
    flex-direction: column;
    overflow: hidden;
}

.sc-creative-slider.sc-creative-slider--js .swiper-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 700ms ease;
}

.sc-creative-slider.sc-creative-slider--js .swiper-slide.sc-creative-slide--active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.sc-creative-slider .slider-inner {
    background: #000;
    background-image: var(--sc-creative-bg, none);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: relative;
}

.sc-creative-slider .sc-creative-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sc-creative-slider .sc-creative-picture,
.sc-creative-slider .sc-creative-picture img {
    width: 100%;
    height: 100%;
    display: block;
}

.sc-creative-slider .sc-creative-picture {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sc-creative-slider .sc-creative-picture img {
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 7000ms ease;
}

.sc-creative-slider .swiper-slide.sc-creative-slide--active .sc-creative-picture img {
    transform: scale(1.1);
}

.sc-creative-slider .sc-creative-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 450ms ease;
}

.sc-creative-slider .sc-creative-video.sc-creative-video--ready {
    opacity: 1;
}

.sc-creative-slider .sc-creative-video--disabled {
    display: none !important;
}

.sc-creative-slider .slider-inner::after {
    content: "";
    position: absolute;
    width: 101%;
    height: 100%;
    top: 0;
    left: -1px;
    background-color: transparent;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 46%, rgba(0, 0, 0, 0.08) 78%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(at center right, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}

.sc-creative-slider .swiper-content {
    position: absolute;
    top: clamp(16%, 18vh, 26%);
    left: clamp(18px, 5vw, 72px);
    z-index: 2;
    max-width: min(860px, calc(100% - 36px));
    opacity: 1;
    transform: translateY(0);
    transition: opacity 700ms ease, transform 900ms cubic-bezier(0.49, 0, 0.01, 1);
}

.sc-creative-slider.sc-creative-slider--js .swiper-content {
    transition: none;
    opacity: 0;
    transform: translateY(24px);
}

.sc-creative-slider.sc-creative-slider--js .swiper-slide.sc-creative-slide--active .swiper-content {
    transition: opacity 700ms ease, transform 900ms cubic-bezier(0.49, 0, 0.01, 1);
    opacity: 1;
    transform: translateY(0);
}

.sc-creative-slider .sc-creative-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    margin: 0 0 16px 0;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sc-creative-slider .sc-creative-tag::before {
    content: "\f0f6";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    opacity: 0.9;
}

.sc-creative-slider .sc-creative-title {
    margin-top: 0;
    color: #fff;
    font-size: clamp(34px, 4.6vw, 66px);
    font-family: "Montserrat", "Raleway", sans-serif;
    font-weight: 900;
    line-height: 1.06;
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    text-decoration: none;
    display: inline-block;
    max-width: 20ch;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
    word-break: break-word;
}

.sc-creative-slider a.sc-creative-title:hover {
    opacity: 0.96;
}

.sc-creative-slider a.sc-creative-title:focus-visible {
    outline: 0;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.sc-creative-slider .sc-creative-desc {
    font-size: 18px;
    width: 100%;
    margin: 12px 0 28px 0;
    font-weight: 500;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    max-width: 58ch;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
    white-space: pre-line;
}

.sc-creative-slider .sc-creative-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(11, 94, 215, 0.92);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 16px 40px rgba(11, 94, 215, 0.25), 0 10px 28px rgba(0, 0, 0, 0.35);
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.sc-creative-slider .sc-creative-cta__text {
    display: inline-block;
}

.sc-creative-slider .sc-creative-cta::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    transition: transform 220ms ease;
}

.sc-creative-slider .sc-creative-cta:hover {
    transform: translateY(-1px);
    background: rgba(11, 94, 215, 1);
    box-shadow: 0 18px 46px rgba(11, 94, 215, 0.32), 0 14px 34px rgba(0, 0, 0, 0.38);
}

.sc-creative-slider .sc-creative-cta:hover::after {
    transform: translateX(3px);
}

.sc-creative-slider .sc-creative-cta:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.35), 0 16px 40px rgba(11, 94, 215, 0.25);
}

.sc-creative-slider .swiper-container-h .swiper-button-next,
.sc-creative-slider .swiper-container-h .swiper-button-prev {
    bottom: 5%;
    top: unset;
    position: absolute;
    transform: scale(1);
    transition: all 0.4s;
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 85px;
    width: 85px;
    line-height: 85px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    z-index: 3;
}

.sc-creative-slider .swiper-container-h .swiper-button-next {
    right: 50px;
}

.sc-creative-slider .swiper-container-h .swiper-button-prev {
    left: 50px;
}

.sc-creative-slider .swiper-container-h .swiper-button-next::after,
.sc-creative-slider .swiper-container-h .swiper-button-prev::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background: none;
    color: #ffffff;
    font-size: 46px;
}

.sc-creative-slider .swiper-container-h .swiper-button-next::after {
    content: "\f061";
}

.sc-creative-slider .swiper-container-h .swiper-button-prev::after {
    content: "\f060";
}

.sc-creative-slider .swiper-container-h .swiper-button-next:hover,
.sc-creative-slider .swiper-container-h .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.sc-creative-slider .slider-pagination-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: unset;
    right: unset;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    z-index: 3;
}

.sc-creative-slider .slider-pagination-area .slide-range {
    font-weight: 600;
    color: #ffffff;
    line-height: 0;
    position: absolute;
    font-size: 18px;
    letter-spacing: 0.08em;
}

.sc-creative-slider .slider-pagination-area .slide-range.one {
    left: -50px;
}

.sc-creative-slider .slider-pagination-area .slide-range.three {
    right: -50px;
}

.sc-creative-slider .slider-pagination-area .swiper-pagination {
    bottom: 0 !important;
    width: 500px !important;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    overflow: hidden;
}

.sc-creative-slider .slider-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
    background: #ffffff;
    height: 100%;
    width: 100%;
    transform-origin: left;
    transform: scaleX(0.33);
    transition: transform 900ms cubic-bezier(0.49, 0, 0.01, 1);
}

.sc-creative-slider .sc-creative-mobile-indicator {
    display: none;
    position: absolute;
    left: 50%;
    bottom: calc(22px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 3;
    width: min(170px, calc(100% - 180px));
    padding: 10px 14px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
    flex-direction: column;
    gap: 10px;
}

.sc-creative-slider .sc-creative-mobile-indicator__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.16em;
    font-size: 11px;
    line-height: 1;
}

.sc-creative-slider .sc-creative-mobile-indicator .slide-range {
    position: static;
    margin: 0;
    font-size: 11px;
    line-height: 1;
    letter-spacing: inherit;
    color: inherit;
}

.sc-creative-slider .sc-creative-mobile-indicator__sep {
    opacity: 0.65;
}

.sc-creative-slider .sc-creative-mobile-indicator__bar {
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    overflow: hidden;
}

.sc-creative-slider .sc-creative-mobile-indicator__bar .swiper-pagination-progressbar-fill {
    display: block;
    height: 100%;
    width: 100%;
    background: #ffffff;
    transform-origin: left;
    transform: scaleX(0.33);
    transition: transform 900ms cubic-bezier(0.49, 0, 0.01, 1);
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .sc-creative-slider .swiper-slide .swiper-content {
        width: 100%;
        text-align: center;
        left: 0;
        right: 0;
        max-width: 760px;
        padding: 0 20px;
        margin: 0 auto;
    }

    .sc-creative-slider .sc-creative-title {
        max-width: 22ch;
        margin-left: auto;
        margin-right: auto;
    }

    .sc-creative-slider .sc-creative-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .sc-creative-slider .swiper-container-h .swiper-button-next,
    .sc-creative-slider .swiper-container-h .swiper-button-prev {
        height: 50px;
        width: 50px;
        line-height: 50px;
        background: rgba(255, 255, 255, 0.22);
    }

    .sc-creative-slider .swiper-container-h .swiper-button-next::after,
    .sc-creative-slider .swiper-container-h .swiper-button-prev::after {
        font-size: 26px;
    }

    .sc-creative-slider .slider-pagination-area {
        width: 200px !important;
    }

    .sc-creative-slider .slider-pagination-area .swiper-pagination {
        width: 200px !important;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .sc-creative-slider {
        height: 100svh;
        min-height: 460px;
    }

    .sc-creative-slider .swiper-content {
        top: 16%;
        left: 0;
        right: 0;
        padding: 18px 16px;
        max-width: 520px;
        margin: 0 auto;
        text-align: center;
        background: rgba(0, 0, 0, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 18px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .sc-creative-slider .sc-creative-tag {
        font-size: 12px;
        padding: 7px 10px;
        margin-bottom: 14px;
    }

    .sc-creative-slider .sc-creative-title {
        font-size: clamp(30px, 9.6vw, 48px);
        max-width: 20ch;
        margin-left: auto;
        margin-right: auto;
    }

    .sc-creative-slider .sc-creative-desc {
        margin: 16px auto 18px auto;
        font-size: 15.5px;
        width: 95%;
    }

    .sc-creative-slider .sc-creative-cta {
        display: flex;
        width: 100%;
        max-width: 340px;
        min-height: 52px;
        font-size: 15px;
        padding: 14px 18px;
        justify-content: space-between;
        margin: 0 auto;
    }

    .sc-creative-slider .sc-creative-cta__text {
        flex: 1;
        text-align: left;
    }

    .sc-creative-slider .sc-creative-cta::after {
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.16);
    }

    .sc-creative-slider .slider-pagination-area {
        display: none;
    }

    .sc-creative-slider .sc-creative-mobile-indicator {
        display: flex;
    }

    .sc-creative-slider .swiper-container-h .swiper-button-next,
    .sc-creative-slider .swiper-container-h .swiper-button-prev {
        bottom: calc(18px + env(safe-area-inset-bottom));
        height: 46px;
        width: 46px;
        line-height: 46px;
        background-color: rgba(0, 0, 0, 0.24);
        border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .sc-creative-slider .swiper-container-h .swiper-button-next::after,
    .sc-creative-slider .swiper-container-h .swiper-button-prev::after {
        font-size: 20px;
    }

    .sc-creative-slider .swiper-container-h .swiper-button-prev {
        left: 40%;
        transform: translateX(-118px);
    }

    .sc-creative-slider .swiper-container-h .swiper-button-next {
        left: 50%;
        right: auto;
        transform: translateX(118px);
    }
}

/* Customs preloader */
.sc-preloader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 1;
    visibility: visible;
    transition: opacity 550ms ease, visibility 0ms linear 550ms;
    background:
        radial-gradient(1100px 600px at 20% 30%, rgba(11, 94, 215, 0.35), rgba(0, 0, 0, 0) 60%),
        radial-gradient(900px 520px at 80% 70%, rgba(13, 202, 240, 0.16), rgba(0, 0, 0, 0) 55%),
        linear-gradient(180deg, #050b1a 0%, #02040b 100%);
}

.sc-preloader.sc-preloader--hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sc-preloader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.sc-preloader__badge {
    width: min(380px, 92vw);
    height: 132px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.sc-preloader__badge::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, rgba(255, 255, 255, 0) 1px 16px);
    opacity: 0.22;
    mix-blend-mode: overlay;
}

.sc-preloader__badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 200px at 10% 30%, rgba(11, 94, 215, 0.25), rgba(0, 0, 0, 0) 60%),
        radial-gradient(520px 220px at 90% 75%, rgba(13, 202, 240, 0.16), rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
}

.sc-preloader__scan {
    position: absolute;
    left: -20%;
    top: -24px;
    width: 140%;
    height: 7px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.12), rgba(13, 110, 253, 0.95), rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0));
    filter: drop-shadow(0 8px 18px rgba(13, 110, 253, 0.35));
    animation: sc-preloader-scan 1200ms ease-in-out infinite;
}

.sc-preloader__seal {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(11, 94, 215, 0.95);
    box-shadow: 0 16px 40px rgba(11, 94, 215, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-preloader__seal::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    font-size: 18px;
}

.sc-preloader__seal::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.24);
    opacity: 0.9;
    animation: sc-preloader-spin 2400ms linear infinite;
}

.sc-preloader__routes {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
}

.sc-preloader__routes i {
    opacity: 0.42;
    transform: translateY(0);
    animation: sc-preloader-route 1600ms ease-in-out infinite;
}

.sc-preloader__routes i:nth-child(2) {
    animation-delay: 160ms;
}

.sc-preloader__routes i:nth-child(3) {
    animation-delay: 320ms;
}

.sc-preloader__text {
    max-width: 520px;
}

.sc-preloader__title {
    font-family: "Montserrat", "Raleway", sans-serif;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #ffffff;
    font-size: 18px;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.65);
}

.sc-preloader__sub {
    margin-top: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

@keyframes sc-preloader-scan {
    0% {
        transform: translateY(-24px);
        opacity: 0;
    }

    14% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(160px);
        opacity: 0;
    }
}

@keyframes sc-preloader-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes sc-preloader-route {
    0%,
    100% {
        opacity: 0.42;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

@media (max-width: 767px) {
    .sc-preloader {
        padding: 18px;
    }

    .sc-preloader__badge {
        height: 120px;
    }

    .sc-preloader__title {
        font-size: 16px;
    }

    .sc-preloader__sub {
        font-size: 11px;
    }
}

/* Prevent preloader/hero overlap flash on first paint */
html.sc-preloader-active .sc-creative-slider {
    opacity: 0;
}

html.sc-preloader-done .sc-creative-slider {
    opacity: 1;
    transition: opacity 600ms ease;
}

/* Newsletter (Subscriber) */
.sc-newsletter {
    position: relative;
}

.sc-newsletter__card {
    width: min(980px, calc(100% - 30px));
    margin: 0 auto;
    padding: clamp(20px, 2.8vw, 34px);
    border-radius: 28px;
    background:
        radial-gradient(700px 280px at 20% 10%, rgba(11, 94, 215, 0.25), rgba(0, 0, 0, 0) 60%),
        radial-gradient(600px 260px at 90% 70%, rgba(13, 202, 240, 0.14), rgba(0, 0, 0, 0) 60%),
        rgba(2, 6, 23, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 80px rgba(2, 6, 23, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: rgba(255, 255, 255, 0.92);
}

.sc-newsletter__head {
    margin-bottom: 18px;
}

.sc-newsletter__title {
    margin: 0;
    font-family: "Montserrat", "Raleway", sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-size: clamp(26px, 3.2vw, 40px);
    color: #fff;
}

.sc-newsletter__subtitle {
    margin: 10px auto 0;
    max-width: 52ch;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

.sc-newsletter__row {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.sc-newsletter__input-wrap {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
}

.sc-newsletter__input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.85);
    pointer-events: none;
}

.sc-newsletter__input {
    min-width: 0 !important;
    width: 100% !important;
    height: 54px;
    padding: 0 16px 0 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    outline: none;
    box-shadow: none;
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.sc-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.sc-newsletter__input:focus {
    border-color: rgba(11, 94, 215, 0.85);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.22);
}

.sc-newsletter__btn {
    height: 54px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(11, 94, 215, 0.9);
    background: linear-gradient(135deg, var(--sc-accent) 0%, #1d4ed8 55%, #0ea5e9 120%);
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 18px 44px rgba(11, 94, 215, 0.28);
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.sc-newsletter__btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 22px 55px rgba(11, 94, 215, 0.34);
}

.sc-newsletter__btn:active {
    transform: translateY(0);
}

.sc-newsletter__btn:focus-visible {
    outline: 3px solid rgba(11, 94, 215, 0.35);
    outline-offset: 3px;
}

.sc-newsletter__btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.sc-newsletter__validation {
    display: block;
    margin-top: 10px;
}

.sc-newsletter__message {
    margin: 10px 0 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-word;
}

.sc-newsletter__message .wpb_column,
.sc-newsletter__message .vc_column_container,
.sc-newsletter__message .vc_column-inner,
.sc-newsletter__message .wpb_wrapper {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sc-newsletter__message .dt-sc-success-box,
.sc-newsletter__message .dt-sc-error-box {
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.sc-newsletter__message .dt-sc-success-box {
    background: rgba(16, 185, 129, 0.14);
    border-color: rgba(16, 185, 129, 0.28);
}

.sc-newsletter__message .dt-sc-error-box {
    background: rgba(239, 68, 68, 0.14);
    border-color: rgba(239, 68, 68, 0.28);
}

.sc-newsletter__message:empty {
    display: none;
}

@media (max-width: 991.98px) {
    .sc-newsletter__card {
        width: min(920px, calc(100% - 24px));
        border-radius: 24px;
    }
}

@media (max-width: 767.98px) {
    .sc-newsletter__row {
        flex-direction: column;
    }

    .sc-newsletter__btn {
        width: 100%;
    }

    .sc-newsletter__input,
    .sc-newsletter__btn {
        height: 52px;
    }

    .sc-newsletter__subtitle {
        font-size: 14px;
    }
}

:root {
    --sc-news-surface: rgba(255, 255, 255, 0.92);
    --sc-news-text: rgba(2, 6, 23, 0.92);
    --sc-news-muted: rgba(2, 6, 23, 0.62);
    --sc-news-border: rgba(2, 6, 23, 0.08);
}

.sc-news-prose {
    color: rgba(2, 6, 23, 0.86);
    font-size: 15px;
    line-height: 1.75;
}

.sc-news-prose p {
    margin: 0 0 12px;
}

.sc-news-prose h2,
.sc-news-prose h3,
.sc-news-prose h4 {
    margin: 22px 0 10px;
    font-family: "Montserrat", "Raleway", sans-serif;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--sc-accent-dark);
}

.sc-news-prose a {
    color: var(--sc-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.sc-news-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.sc-news-category__intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    align-items: center;
    padding: clamp(16px, 2.2vw, 24px);
    border-radius: 26px;
    background:
        radial-gradient(900px 360px at 10% 0%, rgba(11, 94, 215, 0.18), rgba(0, 0, 0, 0) 60%),
        var(--sc-news-surface);
    border: 1px solid var(--sc-news-border);
    box-shadow: 0 24px 80px rgba(2, 6, 23, 0.08);
    margin-bottom: 22px;
}

.sc-news-category__intro-body {
    min-width: 0;
}

.sc-news-category__intro-body:only-child,
.sc-news-category__intro-media:only-child {
    grid-column: 1 / -1;
}

.sc-news-category__intro-media {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--sc-news-border);
    background: rgba(2, 6, 23, 0.04);
    aspect-ratio: 16 / 9;
}

.sc-news-category__intro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sc-news-category__banner {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--sc-news-border);
    background: rgba(2, 6, 23, 0.04);
    box-shadow: 0 24px 80px rgba(2, 6, 23, 0.08);
    margin-bottom: 22px;
}

.sc-news-category__banner img {
    width: 100%;
    height: clamp(180px, 28vw, 260px);
    object-fit: cover;
    display: block;
}

.sc-news-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--sc-news-surface);
    border: 1px solid var(--sc-news-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(2, 6, 23, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.sc-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 80px rgba(2, 6, 23, 0.12);
    border-color: rgba(11, 94, 215, 0.2);
}

.sc-news-card__media {
    position: relative;
    display: block;
    background:
        radial-gradient(900px 360px at 10% 0%, rgba(11, 94, 215, 0.14), rgba(0, 0, 0, 0) 60%),
        rgba(2, 6, 23, 0.04);
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.sc-news-card__fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    text-align: center;
    color: rgba(2, 6, 23, 0.62);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.sc-news-card__fallback i {
    font-size: 30px;
    color: rgba(11, 94, 215, 0.9);
}

.sc-news-card__fallback span {
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.2px;
}

.sc-news-card__media--has-image .sc-news-card__fallback {
    opacity: 0;
}

.sc-news-card__media--no-image .sc-news-card__fallback {
    opacity: 1;
}

.sc-news-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sc-news-card:hover .sc-news-card__img {
    transform: scale(1.03);
}

.sc-news-card__body {
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
}

.sc-news-card__title {
    margin: 0;
    font-family: "Montserrat", "Raleway", sans-serif;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.sc-news-card__title a {
    color: var(--sc-accent-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.sc-news-card__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.sc-news-card__cat {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(11, 94, 215, 0.08);
    border: 1px solid rgba(11, 94, 215, 0.16);
    color: rgba(11, 94, 215, 0.95);
    font-weight: 900;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
}

.sc-news-card__cat:hover {
    background: rgba(11, 94, 215, 0.12);
    text-decoration: none;
}

.sc-news-card__excerpt {
    margin: 0;
    color: var(--sc-news-muted);
    font-size: 14px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sc-news-card__meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: var(--sc-news-muted);
}

.sc-news-card__date {
    color: var(--sc-news-muted);
}

.sc-news-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(11, 94, 215, 0.1);
    border: 1px solid rgba(11, 94, 215, 0.18);
    font-weight: 900;
    color: rgba(11, 94, 215, 0.95);
    text-decoration: none;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.sc-news-card__more:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    background: rgba(11, 94, 215, 0.14);
    border-color: rgba(11, 94, 215, 0.26);
    text-decoration: none;
}

.sc-news-card__more:active {
    transform: translateY(0);
}

.sc-news-card--no-excerpt .sc-news-card__meta {
    margin-top: 0;
}

.sc-news-card__media:focus-visible,
.sc-news-card__title a:focus-visible,
.sc-news-card__more:focus-visible {
    outline: 3px solid rgba(11, 94, 215, 0.35);
    outline-offset: 3px;
    border-radius: 14px;
}

@media (min-width: 768px) {
    .sc-news-card {
        display: grid;
        grid-template-columns: clamp(240px, 32%, 340px) 1fr;
        align-items: stretch;
    }

    .sc-news-card__media {
        aspect-ratio: auto;
        height: 100%;
        min-height: 200px;
        border-right: 1px solid var(--sc-news-border);
    }

    .sc-news-card__body {
        padding: 18px 20px 16px;
    }

    .sc-news-card__excerpt {
        -webkit-line-clamp: 4;
    }
}

@media (min-width: 992px) {
    .sc-news-card__title {
        font-size: 18px;
    }
}

.sc-news-pagination {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.sc-news-pagination .pagination {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sc-news-pagination .pagination > li > a,
.sc-news-pagination .pagination > li > span {
    border-radius: 999px !important;
    border: 1px solid rgba(2, 6, 23, 0.14) !important;
    padding: 9px 14px;
    font-weight: 800;
    color: rgba(2, 6, 23, 0.78);
    background: rgba(255, 255, 255, 0.9);
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.sc-news-pagination .page-link {
    border-radius: 999px;
    border: 1px solid rgba(2, 6, 23, 0.14);
    padding: 9px 14px;
    font-weight: 800;
    color: rgba(2, 6, 23, 0.78);
    background: rgba(255, 255, 255, 0.9);
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.sc-news-pagination .pagination > li > a:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 94, 215, 0.35) !important;
    color: var(--sc-accent-dark);
}

.sc-news-pagination .page-link:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 94, 215, 0.35);
    color: var(--sc-accent-dark);
}

.sc-news-pagination .pagination > .active > a,
.sc-news-pagination .pagination > .active > span {
    background: var(--sc-accent);
    border-color: rgba(11, 94, 215, 0.85) !important;
    color: #fff;
}

.sc-news-pagination .page-item.active .page-link {
    background: var(--sc-accent);
    border-color: rgba(11, 94, 215, 0.85);
    color: #fff;
}

.sc-news-item__article {
    background: var(--sc-news-surface);
    border: 1px solid var(--sc-news-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 90px rgba(2, 6, 23, 0.09);
}

.sc-news-item__cover {
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--sc-news-border);
    box-shadow: 0 22px 70px rgba(2, 6, 23, 0.08);
    background:
        radial-gradient(1100px 420px at 10% 0%, rgba(11, 94, 215, 0.16), rgba(0, 0, 0, 0) 60%),
        rgba(2, 6, 23, 0.04);
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.sc-news-item__cover-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(2, 6, 23, 0.62);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.sc-news-item__cover-placeholder i {
    font-size: 40px;
    color: rgba(11, 94, 215, 0.9);
}

.sc-news-item__cover--has-image .sc-news-item__cover-placeholder {
    opacity: 0;
}

.sc-news-item__cover--placeholder .sc-news-item__cover-placeholder {
    opacity: 1;
}

.sc-news-item__cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sc-news-item__body {
    padding: clamp(16px, 2.4vw, 30px);
}

.sc-news-item__hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    margin-bottom: 18px;
}

.sc-news-item__hero-body {
    min-width: 0;
}

.sc-news-item__summary {
    margin-top: 6px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(2, 6, 23, 0.03);
    border: 1px solid rgba(2, 6, 23, 0.08);
}

.sc-news-item__summary p:last-child {
    margin-bottom: 0;
}

.sc-news-item__summary .wpb_column,
.sc-news-item__summary .vc_column_container,
.sc-news-item__summary .vc_column-inner,
.sc-news-item__summary .wpb_wrapper,
.sc-news-item__summary .row > [class^="col-"],
.sc-news-item__summary .row > [class*=" col-"] {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sc-news-item__summary .vc_row,
.sc-news-item__summary .wpb_row,
.sc-news-item__summary .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media (min-width: 992px) {
    .sc-news-item__hero--split {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sc-news-item__cover {
        aspect-ratio: 21 / 9;
    }
}

.sc-news-item__title {
    margin: 0 0 12px;
    font-family: "Montserrat", "Raleway", sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.08;
    font-size: clamp(24px, 2.8vw, 40px);
    color: var(--sc-accent-dark);
}

.sc-news-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
    color: var(--sc-news-muted);
    font-size: 13px;
    margin: 0 0 14px;
}

.sc-news-item__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.04);
    border: 1px solid rgba(2, 6, 23, 0.08);
    color: var(--sc-news-muted);
    text-decoration: none;
}

.sc-news-item__meta-item i {
    color: rgba(11, 94, 215, 0.9);
}

.sc-news-item__meta-item:hover {
    color: rgba(2, 6, 23, 0.84);
}

.sc-news-item .sc-news-prose {
    font-size: 16px;
    line-height: 1.85;
}

.sc-news-item__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}

.sc-news-item__cat {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(11, 94, 215, 0.08);
    border: 1px solid rgba(11, 94, 215, 0.18);
    color: rgba(11, 94, 215, 0.95);
    font-weight: 900;
    font-size: 12px;
    text-decoration: none;
}

.sc-news-item__cat:hover {
    background: rgba(11, 94, 215, 0.12);
}

.sc-news-item__content {
    border-top: 1px solid rgba(2, 6, 23, 0.08);
    padding-top: 18px;
}

.sc-news-divider {
    border: 0;
    border-top: 1px solid rgba(2, 6, 23, 0.12);
    margin: 18px 0;
}

.sc-news-gallery {
    margin-top: 18px;
}

.sc-news-gallery__item {
    margin-bottom: 16px;
}

.sc-news-gallery__link {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--sc-news-border);
    background: rgba(2, 6, 23, 0.04);
    box-shadow: 0 16px 50px rgba(2, 6, 23, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sc-news-gallery__img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sc-news-gallery__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 70px rgba(2, 6, 23, 0.1);
}

.sc-news-gallery__link:hover .sc-news-gallery__img {
    transform: scale(1.03);
}

.sc-news-comments {
    margin-top: 22px;
    background: var(--sc-news-surface);
    border: 1px solid var(--sc-news-border);
    border-radius: 24px;
    box-shadow: 0 22px 70px rgba(2, 6, 23, 0.08);
    padding: clamp(14px, 1.8vw, 20px);
}

.sc-news-comments__title {
    margin: 0 0 12px;
    font-family: "Montserrat", "Raleway", sans-serif;
    font-weight: 900;
    color: var(--sc-accent-dark);
}

.sc-news-related {
    margin-top: 22px;
}

@media (min-width: 992px) {
    .sc-news-sidebar {
        position: sticky;
        top: 110px;
    }
}

@media (max-width: 991.98px) {
    .sc-news-category__intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .sc-news-category__intro,
    .sc-news-category__banner,
    .sc-news-item__article {
        border-radius: 22px;
    }

    .sc-news-card {
        border-radius: 20px;
    }

    .sc-news-item__cover {
        border-radius: 20px;
        box-shadow: 0 16px 50px rgba(2, 6, 23, 0.08);
    }

    .sc-news-item__body {
        padding: 16px;
    }

    .sc-news-pagination .pagination > li > a,
    .sc-news-pagination .pagination > li > span {
        padding: 8px 12px;
    }

    .sc-news-category__banner img {
        height: clamp(160px, 42vw, 220px);
    }
}

.header_v1_bottom {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(2, 6, 23, 0.08);
    box-shadow: 0 18px 55px rgba(2, 6, 23, 0.06);
    padding: 14px 0;
}

.header_v1_bottom .header1-search {
    width: 100%;
}

.header_v1_bottom .woocommerce-product-search {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(2, 6, 23, 0.12);
    box-shadow: 0 18px 55px rgba(2, 6, 23, 0.06);
}

.header_v1_bottom .woocommerce-product-search pre {
    display: none;
}

.header_v1_bottom .woocommerce-product-search .search-field {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    height: 44px;
    padding: 0 14px;
    font-weight: 700;
    color: rgba(2, 6, 23, 0.86);
}

.header_v1_bottom .woocommerce-product-search .search-field::placeholder {
    color: rgba(2, 6, 23, 0.5);
}

.header_v1_bottom .woocommerce-product-search .search-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.04);
    border: 1px solid rgba(2, 6, 23, 0.1);
}

.header_v1_bottom .woocommerce-product-search .search-submit button {
    order: 2;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, var(--sc-accent) 0%, #1d4ed8 55%, #0ea5e9 120%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 38px rgba(11, 94, 215, 0.22);
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.header_v1_bottom .woocommerce-product-search .search-submit button i {
    font-size: 18px;
    line-height: 1;
}

.header_v1_bottom .woocommerce-product-search .search-submit button:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 20px 50px rgba(11, 94, 215, 0.28);
}

.header_v1_bottom .woocommerce-product-search .search-submit button:active {
    transform: translateY(0);
}

.header_v1_bottom .woocommerce-product-search .search-submit .category_dropdown {
    order: 1;
    height: 40px;
    min-width: 130px;
    max-width: 220px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    padding: 0 38px 0 14px;
    font-weight: 800;
    color: rgba(2, 6, 23, 0.82);
    box-shadow: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(2, 6, 23, 0.6) 50%),
        linear-gradient(135deg, rgba(2, 6, 23, 0.6) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    text-overflow: ellipsis;
}

.header_v1_bottom .woocommerce-product-search .search-submit .category_dropdown:focus {
    outline: 0;
}

.header_v1_bottom .woocommerce-product-search:focus-within {
    border-color: rgba(11, 94, 215, 0.55);
    box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.16), 0 18px 55px rgba(2, 6, 23, 0.06);
}

.header_v1_bottom .support247 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(2, 6, 23, 0.08);
    box-shadow: 0 18px 55px rgba(2, 6, 23, 0.06);
}

.header_v1_bottom .support247 > i {
    font-size: 28px;
    color: var(--sc-accent);
}

.header_v1_bottom .header-support .sp1 {
    margin: 0;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(2, 6, 23, 0.62);
}

.header_v1_bottom .header-support .sp2 {
    margin: 4px 0 0;
    font-weight: 900;
    font-size: 13px;
    color: var(--sc-accent-dark);
}

.header_v1_bottom .header-support .sp2 a {
    color: inherit;
    text-decoration: none;
}

.header_v1_bottom .header-support .sp2 a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 767.98px) {
    .header_v1_bottom {
        padding: 12px 0;
    }

    .header_v1_bottom .woocommerce-product-search {
        border-radius: 24px;
        padding: 0px;
    }

    .header_v1_bottom .woocommerce-product-search .category_dropdown {
        display: none;
    }

    .header_v1_bottom .support247 {
        margin-top: 10px;
        justify-content: flex-start;
    }
}
/* Ana Buton Stili (Eğer yoksa temeli sağlamlaştıralım) */
.sc-contact-page .contact-form input[type="submit"] {
    background-color: #003366; /* Kurumsal Lacivert */
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Yumuşak geçiş için */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Kanka İşte İstediğin Hover Efekti */
.sc-contact-page .contact-form input[type="submit"]:hover {
    background-color: #c5a059; /* Kurumsal Gold/Altın tonu */
    color: #ffffff;
    transform: translateY(-3px); /* Hafif yukarı kalkma efekti */
    box-shadow: 0 8px 15px rgba(197, 160, 89, 0.3); /* Gold parıltılı gölge */
    letter-spacing: 2px; /* Yazının hafifçe açılması şıklık katar */
}

/* Butona tıklandığında (Active) küçük bir tepki */
.sc-contact-page .contact-form input[type="submit"]:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}