:root {
--hdr-height: 72px;
--hdr-top-height: 36px;
--hdr-total: calc(var(--hdr-top-height) + var(--hdr-height));
--hdr-bg: #ffffff;
--hdr-bg-glass: rgba(255, 255, 255, 0.92);
--hdr-ink: #0c1a2e;
--hdr-ink-2: #1e293b;
--hdr-ink-3: #475569;
--hdr-muted: #64748b;
--hdr-brand: #0b57d0;
--hdr-brand-hover: #1a66e0;
--hdr-brand-ghost: rgba(11, 87, 208, 0.07);
--hdr-cyan: #06b6d4;
--hdr-border: #e8ecf2;
--hdr-border-soft: rgba(0, 0, 0, 0.06);
--hdr-radius: 12px;
--hdr-ease: cubic-bezier(0.22, 1, 0.36, 1);
--hdr-dur: 0.28s;
--hdr-font: 'Inter', 'Segoe UI', system-ui, sans-serif;
--hdr-font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
--hdr-shadow: 0 4px 24px -4px rgba(12, 26, 46, 0.08);
--hdr-shadow-mega: 0 20px 48px -8px rgba(12, 26, 46, 0.13);
--hdr-container: 1340px;
} .nw-topbar {
position: relative;
z-index: 1001;
height: var(--hdr-top-height);
background: var(--hdr-ink);
color: rgba(255, 255, 255, 0.78);
font-family: var(--hdr-font);
font-size: 0.74rem;
font-weight: 500;
letter-spacing: 0.01em;
overflow: hidden;
transition: height var(--hdr-dur) var(--hdr-ease),
opacity var(--hdr-dur) var(--hdr-ease);
}
.nw-topbar__inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
max-width: var(--hdr-container);
margin: 0 auto;
padding: 0 clamp(16px, 2.5vw, 28px);
gap: 16px;
}
.nw-topbar__left,
.nw-topbar__right {
display: flex;
align-items: center;
gap: 18px;
}
.nw-topbar__item {
display: inline-flex;
align-items: center;
gap: 6px;
color: rgba(255, 255, 255, 0.72);
text-decoration: none;
transition: color var(--hdr-dur) var(--hdr-ease);
white-space: nowrap;
}
.nw-topbar__item:hover {
color: #fff;
}
.nw-topbar__item svg {
width: 13px;
height: 13px;
opacity: 0.6;
flex-shrink: 0;
}
.nw-topbar__sep {
width: 1px;
height: 12px;
background: rgba(255, 255, 255, 0.15);
} body.header-scrolled .nw-topbar {
height: 0;
opacity: 0;
pointer-events: none;
} #masthead.site-header {
position: sticky;
top: 0;
z-index: 999;
background: var(--hdr-bg);
border-bottom: 1px solid var(--hdr-border);
box-shadow: none;
transition: background-color 0.4s var(--hdr-ease),
box-shadow 0.4s var(--hdr-ease),
border-color 0.4s var(--hdr-ease);
font-family: var(--hdr-font);
}
body.header-scrolled #masthead.site-header {
background: var(--hdr-bg-glass);
backdrop-filter: saturate(180%) blur(16px);
-webkit-backdrop-filter: saturate(180%) blur(16px);
box-shadow: var(--hdr-shadow);
border-color: transparent;
} #masthead .nw-header {
width: 100%;
max-width: var(--hdr-container);
margin: 0 auto;
padding: 0 clamp(16px, 2.5vw, 28px);
}
#masthead .nw-header__inner {
min-height: var(--hdr-height);
display: flex;
align-items: center;
justify-content: space-between;
gap: 28px;
} #masthead .nw-header__brand {
display: flex;
align-items: center;
flex: 0 0 auto;
gap: 14px;
text-decoration: none;
}
#masthead .nw-header__brand .custom-logo-link {
display: inline-flex;
align-items: center;
}
#masthead .nw-header__brand img {
width: auto;
max-height: 38px;
transition: opacity var(--hdr-dur) var(--hdr-ease);
}
#masthead .nw-header__brand:hover img {
opacity: 0.85;
}
#masthead .nw-header__title {
color: var(--hdr-ink);
text-decoration: none;
font-family: var(--hdr-font-display);
font-weight: 800;
font-size: 1.1rem;
letter-spacing: -0.02em;
} #masthead .nw-header__nav {
flex: 1 1 auto;
min-width: 0;
display: flex;
align-items: center;
justify-content: flex-end;
}
#masthead .nw-menu,
#masthead .nw-menu ul {
margin: 0;
padding: 0;
list-style: none;
}
#masthead .nw-menu {
display: flex;
align-items: center;
gap: 2px;
justify-content: center; } #masthead .nw-menu > li {
position: relative;
} #masthead .nw-menu > li.menu-item-has-children {
padding-bottom: 18px;
margin-bottom: -18px;
}
#masthead .nw-menu > li > a {
display: inline-flex;
align-items: center;
gap: 5px;
color: var(--hdr-ink-2);
text-decoration: none;
font-family: var(--hdr-font);
font-size: 0.88rem;
line-height: 1;
font-weight: 600;
padding: 10px 14px;
border-radius: 10px;
white-space: nowrap;
position: relative;
transition: color var(--hdr-dur) var(--hdr-ease),
background-color var(--hdr-dur) var(--hdr-ease);
} #masthead .nw-menu > li > a::after {
content: '';
position: absolute;
bottom: 2px;
left: 14px;
right: 14px;
height: 2px;
background: var(--hdr-brand);
border-radius: 2px;
transform: scaleX(0);
transform-origin: center;
transition: transform 0.35s var(--hdr-ease);
}
#masthead .nw-menu > li > a:hover::after,
#masthead .nw-menu > li.current-menu-item > a::after,
#masthead .nw-menu > li.current-menu-ancestor > a::after {
transform: scaleX(1);
} html.translated-ltr #masthead .nw-header__inner {
gap: 12px;
}
html.translated-ltr #masthead .nw-menu > li > a {
padding: 10px 8px;
font-size: 0.83rem;
letter-spacing: -0.01em;
}
html.translated-ltr #masthead .nw-menu > li > a::after {
left: 8px;
right: 8px;
} @media (min-width: 1081px) and (max-width: 1280px) {
#masthead .nw-header__inner {
gap: 12px;
}
#masthead .nw-menu > li > a {
padding: 10px 10px;
font-size: 0.84rem;
letter-spacing: -0.01em;
}
#masthead .nw-menu > li > a::after {
left: 10px;
right: 10px;
}
}
#masthead .nw-menu > li > a:hover {
color: var(--hdr-brand);
background: transparent;
}
#masthead .nw-menu > li.current-menu-item > a,
#masthead .nw-menu > li.current-menu-ancestor > a {
color: var(--hdr-brand);
} #masthead .sf-with-ul::after,
#masthead .nw-menu .sf-with-ul::after,
#masthead .nw-menu a.sf-with-ul::after,
#masthead .sf-arrows .sf-with-ul::after,
#masthead .sf-arrows ul .sf-with-ul::after,
#masthead .nw-menu .caret,
#masthead .nw-menu .sf-sub-indicator,
#masthead .nw-menu > li > a > .caret,
#masthead .nw-menu > li > a > .sub-arrow,
#masthead .nw-menu > li > a > i,
#masthead .nw-menu > li > a > svg,
#masthead .nw-menu > li > button,
#masthead .nw-menu .dropdown-toggle,
#masthead .nw-menu > li.menu-item-has-children > a > span.caret {
display: none !important;
width: 0 !important;
height: 0 !important;
border: none !important;
content: none !important;
visibility: hidden !important;
font-size: 0 !important;
line-height: 0 !important;
overflow: hidden !important;
} #masthead .nw-menu > li.menu-item-has-children > a {
padding-right: 20px;
}
#masthead .nw-menu > li.menu-item-has-children > a::before {
content: '' !important;
display: block !important;
position: absolute;
right: 6px;
top: 50%;
width: 7px;
height: 7px;
transform: translateY(-50%);
background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='7' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
opacity: 0.5;
transition: transform 0.25s var(--hdr-ease), opacity 0.25s;
}
#masthead .nw-menu > li.menu-item-has-children:hover > a::before {
transform: translateY(-50%) rotate(180deg);
opacity: 0.8;
} @media (min-width: 1081px) { #masthead .nw-menu > li.menu-item-has-children {
position: static;
}
#masthead .nw-menu > li > .sub-menu {
position: absolute;
left: 0;
right: 0;
top: 100%;
transform: none;
width: 100%;
display: none;
grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
gap: 0;
padding: 0;
border-radius: 0 0 14px 14px;
background: var(--hdr-bg);
border: none;
border-top: 1px solid var(--hdr-border);
box-shadow: var(--hdr-shadow-mega);
opacity: 0;
overflow: hidden;
transition: opacity 0.15s ease;
pointer-events: none;
}
#masthead .nw-menu > li:hover > .sub-menu,
#masthead .nw-menu > li:focus-within > .sub-menu {
display: grid;
opacity: 1;
pointer-events: auto;
} #masthead .nw-menu > li > .sub-menu > li {
padding: 24px 24px 20px;
border-right: 1px solid var(--hdr-border);
transition: background-color var(--hdr-dur) var(--hdr-ease);
}
#masthead .nw-menu > li > .sub-menu > li:last-child {
border-right: none;
}
#masthead .nw-menu > li > .sub-menu > li:hover {
background: #f8fafc;
} #masthead .nw-mega-preview-pane {
position: absolute;
right: 0;
left: auto;
top: 0;
bottom: 0;
width: 360px; background: var(--hdr-bg);
box-shadow: -15px 0 40px rgba(0,0,0,0.08); border-left: 1px solid var(--hdr-border);
border-right: none;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden;
z-index: 10; opacity: 0;
visibility: hidden;
transform: translateX(20px);
transition: opacity 0.3s var(--hdr-ease), transform 0.3s var(--hdr-ease), visibility 0.3s;
pointer-events: none;
will-change: transform, opacity; } #masthead .nw-mega-preview-pane.is-left {
right: auto;
left: 0;
border-left: none;
border-right: 1px solid var(--hdr-border);
box-shadow: 15px 0 40px rgba(0,0,0,0.08); transform: translateX(-20px); }
#masthead .nw-mega-preview-pane.is-visible {
opacity: 1;
visibility: visible;
transform: translateX(0);
pointer-events: auto;
}
.nw-mega-preview-img-wrapper {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
background: #f1f5f9; overflow: hidden;
} @keyframes nwShimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
.nw-mega-preview-img-wrapper::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
animation: nwShimmer 1.5s infinite linear;
z-index: 0;
}
.nw-mega-preview-img-wrapper img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transform: scale(1.05);
transition: opacity 0.4s var(--hdr-ease), transform 0.4s var(--hdr-ease);
will-change: transform, opacity; z-index: 1;
}
.nw-mega-preview-img-wrapper img.active {
opacity: 1;
transform: scale(1);
} .nw-mega-preview-img-wrapper::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.1) 60%, transparent 100%);
pointer-events: none;
}
.nw-mega-preview-title {
position: absolute;
bottom: 24px;
left: 24px;
right: 24px;
color: #fff;
font-family: var(--hdr-font-display);
font-size: 1.1rem;
font-weight: 700;
letter-spacing: -0.01em;
z-index: 2;
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
opacity: 0;
transform: translateY(10px);
transition: opacity 0.3s ease, transform 0.3s ease;
}
.nw-mega-preview-title.active {
opacity: 1;
transform: translateY(0);
} #masthead .nw-menu > li > .sub-menu > li > a {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 14px;
padding-bottom: 10px;
border-bottom: 2px solid var(--hdr-border);
color: var(--hdr-ink);
text-decoration: none;
font-family: var(--hdr-font-display);
font-size: 0.78rem;
line-height: 1.3;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
transition: color var(--hdr-dur) var(--hdr-ease),
border-color var(--hdr-dur) var(--hdr-ease);
} #masthead .nw-menu > li > .sub-menu > li > a::before,
#masthead .nw-menu > li > .sub-menu > li > a::after {
display: none !important;
content: none !important;
}
#masthead .nw-menu > li > .sub-menu > li:hover > a {
color: var(--hdr-brand);
border-bottom-color: var(--hdr-brand);
} #masthead .nw-menu > li > .sub-menu > li > .sub-menu {
display: flex !important;
flex-direction: column;
gap: 2px;
}
#masthead .nw-menu > li > .sub-menu > li > .sub-menu > li > a {
display: flex;
align-items: center;
gap: 6px;
color: var(--hdr-ink-3);
text-decoration: none;
font-size: 0.86rem;
line-height: 1.4;
font-weight: 500;
padding: 7px 8px;
border-radius: 8px;
transition: color var(--hdr-dur) var(--hdr-ease),
background-color var(--hdr-dur) var(--hdr-ease);
} #masthead .nw-menu > li > .sub-menu > li > .sub-menu > li > a::before,
#masthead .nw-menu > li > .sub-menu > li > .sub-menu > li > a::after {
display: none !important;
content: none !important;
}
#masthead .nw-menu > li > .sub-menu > li > .sub-menu > li > a:hover {
color: var(--hdr-brand);
background: var(--hdr-brand-ghost);
}
} .nw-header__actions {
display: flex;
align-items: center;
gap: 10px;
flex: 0 0 auto;
margin-left: 6px;
} .nw-header__search-toggle {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border: 1px solid var(--hdr-border);
border-radius: 10px;
background: transparent;
color: var(--hdr-ink-3);
cursor: pointer;
transition: color var(--hdr-dur) var(--hdr-ease),
background-color var(--hdr-dur) var(--hdr-ease),
border-color var(--hdr-dur) var(--hdr-ease);
padding: 0;
}
.nw-header__search-toggle svg {
width: 18px;
height: 18px;
}
.nw-header__search-toggle:hover {
color: var(--hdr-brand);
background: var(--hdr-brand-ghost);
border-color: rgba(11, 87, 208, 0.2);
} .nw-header__cta {
display: inline-flex;
align-items: center;
gap: 7px;
padding: 8px 16px;
background: var(--hdr-ink);
color: #fff;
font-family: var(--hdr-font);
font-size: 0.84rem;
font-weight: 600;
text-decoration: none;
border-radius: 20px;
border: none;
cursor: pointer;
white-space: normal;
max-width: 130px;
text-align: left;
line-height: 1.2;
transition: background-color var(--hdr-dur) var(--hdr-ease),
transform var(--hdr-dur) var(--hdr-ease),
box-shadow var(--hdr-dur) var(--hdr-ease);
}
.nw-cta-text {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
} @media (min-width: 1081px) and (max-width: 1240px) {
.nw-header__cta {
padding: 10px;
border-radius: 50%;
max-width: 40px;
}
.nw-cta-text {
display: none;
}
}
.nw-header__cta:hover {
background: var(--hdr-brand);
transform: translateY(-1px);
box-shadow: 0 8px 20px -6px rgba(11, 87, 208, 0.45);
color: #fff;
}
.nw-header__cta svg {
width: 14px;
height: 14px;
flex-shrink: 0;
transition: transform 0.3s var(--hdr-ease);
}
.nw-header__cta:hover svg {
transform: translateX(2px);
} .nw-search-overlay {
position: fixed;
inset: 0;
z-index: 9999;
background: rgba(10, 22, 40, 0.88);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
display: flex;
align-items: flex-start;
justify-content: center;
padding-top: 18vh;
opacity: 0;
visibility: hidden;
transition: opacity 0.35s var(--hdr-ease),
visibility 0.35s;
}
.nw-search-overlay.is-open {
opacity: 1;
visibility: visible;
}
.nw-search-overlay__inner {
width: min(640px, calc(100% - 48px));
transform: translateY(16px);
transition: transform 0.4s var(--hdr-ease);
}
.nw-search-overlay.is-open .nw-search-overlay__inner {
transform: none;
}
.nw-search-overlay__field {
position: relative;
}
.nw-search-overlay__field input {
width: 100%;
height: 64px;
padding: 0 60px 0 28px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 16px;
color: #fff;
font-family: var(--hdr-font-display);
font-size: 1.3rem;
font-weight: 500;
outline: none;
transition: border-color 0.3s var(--hdr-ease),
background-color 0.3s var(--hdr-ease);
}
.nw-search-overlay__field input::placeholder {
color: rgba(255, 255, 255, 0.45);
}
.nw-search-overlay__field input:focus {
border-color: var(--hdr-cyan);
background: rgba(255, 255, 255, 0.14);
}
.nw-search-overlay__close {
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
border: none;
background: rgba(255, 255, 255, 0.08);
border-radius: 10px;
color: rgba(255, 255, 255, 0.7);
cursor: pointer;
display: grid;
place-items: center;
transition: background-color 0.2s, color 0.2s;
padding: 0;
}
.nw-search-overlay__close:hover {
background: rgba(255, 255, 255, 0.16);
color: #fff;
}
.nw-search-overlay__close svg {
width: 18px;
height: 18px;
}
.nw-search-overlay__hint {
margin-top: 16px;
text-align: center;
color: rgba(255, 255, 255, 0.4);
font-size: 0.82rem;
font-weight: 500;
}
.nw-search-overlay__hint kbd {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 24px;
padding: 2px 7px;
border-radius: 5px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.15);
color: rgba(255, 255, 255, 0.6);
font-family: inherit;
font-size: 0.72rem;
margin: 0 2px;
} #masthead .nw-header__toggle {
display: none;
width: 44px;
height: 44px;
border: 2px solid var(--hdr-ink);
background: transparent;
border-radius: 10px;
cursor: pointer;
padding: 0;
position: relative;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 5px;
transition: background-color var(--hdr-dur) var(--hdr-ease),
border-color var(--hdr-dur) var(--hdr-ease);
}
#masthead .nw-header__toggle:hover {
background: var(--hdr-ink);
}
#masthead .nw-header__toggle:hover span[aria-hidden="true"] {
background: #fff;
} #masthead .nw-header__toggle span[aria-hidden="true"] {
display: block;
width: 20px;
height: 2.5px;
background: var(--hdr-ink);
border-radius: 2px;
transition: transform 0.3s var(--hdr-ease),
opacity 0.3s var(--hdr-ease),
background-color 0.2s;
} #masthead .nw-header__toggle.is-active {
background: var(--hdr-ink);
}
#masthead .nw-header__toggle.is-active span[aria-hidden="true"] {
background: #fff;
}
#masthead .nw-header__toggle.is-active span:nth-child(1) {
transform: translateY(7.5px) rotate(45deg);
}
#masthead .nw-header__toggle.is-active span:nth-child(2) {
opacity: 0;
transform: scaleX(0);
}
#masthead .nw-header__toggle.is-active span:nth-child(3) {
transform: translateY(-7.5px) rotate(-45deg);
} @media (max-width: 1080px) {
.nw-topbar { height: auto; min-height: 32px; }
.nw-topbar__inner { flex-wrap: wrap; justify-content: center; gap: 8px; padding: 6px 12px; }
.nw-topbar__left { display: none; }
.nw-topbar__right { justify-content: center; }
#masthead .nw-header__inner {
min-height: 60px;
gap: 10px;
}
#masthead .nw-header__toggle {
display: flex;
order: 99;
}
.nw-header__cta { display: none; }
.nw-header__search-toggle {
width: 38px;
height: 38px;
}
#masthead .nw-header__nav {
display: none;
position: fixed;
top: 0;
right: 0;
width: min(380px, 85vw);
height: 100vh;
height: 100dvh;
background: var(--hdr-bg);
border-left: 1px solid var(--hdr-border);
box-shadow: -16px 0 48px rgba(12, 26, 46, 0.12);
padding: 20px;
padding-top: 80px;
overflow-y: auto;
overscroll-behavior: contain;
z-index: 1000;
transform: translateX(100%);
transition: transform 0.4s var(--hdr-ease);
}
#masthead .nw-header__nav.is-open {
display: block;
transform: translateX(0);
} .nw-mobile-backdrop {
position: fixed;
inset: 0;
background: rgba(10, 22, 40, 0.4);
z-index: 998;
opacity: 0;
visibility: hidden;
transition: opacity 0.35s, visibility 0.35s;
}
.nw-mobile-backdrop.is-visible {
opacity: 1;
visibility: visible;
}
#masthead .nw-menu {
flex-direction: column;
align-items: stretch;
gap: 2px;
}
#masthead .nw-menu > li > a {
padding: 14px 12px;
font-size: 0.95rem;
border-radius: 10px;
}
#masthead .nw-menu > li > a::after {
display: none;
}
#masthead .nw-menu > li > a::before {
display: none;
} #masthead .nw-menu .sub-menu {
margin-top: 4px;
margin-left: 8px;
padding-left: 14px;
border-left: 2px solid var(--hdr-border);
}
#masthead .nw-menu .sub-menu li a {
display: block;
padding: 11px 10px;
color: var(--hdr-ink-3);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
border-radius: 8px;
transition: background-color var(--hdr-dur) var(--hdr-ease),
color var(--hdr-dur) var(--hdr-ease),
padding-left var(--hdr-dur) var(--hdr-ease);
}
#masthead .nw-menu .sub-menu li a:hover {
background: var(--hdr-brand-ghost);
color: var(--hdr-brand);
padding-left: 16px;
} .nw-mobile-cta {
margin-top: 24px;
padding-top: 20px;
border-top: 1px solid var(--hdr-border);
}
.nw-mobile-cta a {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
padding: 14px 20px;
background: var(--hdr-ink);
color: #fff;
font-family: var(--hdr-font);
font-size: 0.92rem;
font-weight: 600;
text-decoration: none;
border-radius: 12px;
transition: background-color 0.3s var(--hdr-ease);
}
.nw-mobile-cta a:hover {
background: var(--hdr-brand);
}
} #masthead .container,
#masthead .navbar,
#masthead .header-inner,
#masthead .site-header-inner,
#masthead .header-content,
#masthead .site-branding {
all: unset !important;
display: contents !important;
}
#masthead .navbar-toggle,
#masthead .menu-toggle,
#masthead .hamburger,
#masthead #primary-menu-toggle {
display: none !important;
} #masthead .sf-arrows .sf-with-ul::after,
#masthead .sf-arrows ul .sf-with-ul::after,
#masthead .nw-menu a.sf-with-ul::after {
display: none !important;
content: none !important;
} #masthead .nw-header__nav .nw-menu {
display: flex !important;
}
@media (max-width: 1080px) {
#masthead .nw-header__nav .nw-menu {
display: flex !important;
flex-direction: column !important;
}
}  #masthead .nw-menu .gt_switcher,
#masthead .nw-menu .gt_switcher-popup,
#masthead .nw-menu .gtranslate_wrapper,
#masthead .nw-menu [class*="gt_"],
#masthead .nw-menu li:has(.gt_switcher),
#masthead .nw-menu li:has(.gtranslate_wrapper),
#masthead .nw-menu li:has(.gt_switcher-popup) {
display: none !important;
} body > .gt_switcher_wrapper,
body > .gtranslate_wrapper:not(.nw-topbar__gt),
#gt-nvframe {
display: none !important;
} .nw-topbar__gt {
display: inline-flex;
align-items: center;
gap: 8px;
}
.nw-topbar__gt .gt_switcher {
position: relative;
}
.nw-topbar__gt a.gt_switcher-popup,
.nw-topbar__gt .glink {
display: inline-flex !important;
align-items: center;
gap: 6px;
color: rgba(255, 255, 255, 0.8) !important;
text-decoration: none !important;
font-size: 0.74rem !important;
font-weight: 500 !important;
padding: 3px 8px;
border-radius: 6px;
border: 1px solid rgba(255, 255, 255, 0.12);
background: rgba(255, 255, 255, 0.06);
transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.nw-topbar__gt a.gt_switcher-popup:hover,
.nw-topbar__gt .glink:hover {
background: rgba(255, 255, 255, 0.12) !important;
border-color: rgba(255, 255, 255, 0.22);
color: #fff !important;
}
.nw-topbar__gt img {
width: 18px !important;
height: 14px !important;
border-radius: 2px;
object-fit: cover;
vertical-align: middle;
} .nw-topbar__gt .gt_switcher .gt_option {
background: var(--hdr-ink) !important;
border: 1px solid rgba(255, 255, 255, 0.12) !important;
border-radius: 8px !important;
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
padding: 6px !important;
min-width: 140px;
}
.nw-topbar__gt .gt_switcher .gt_option a {
display: flex !important;
align-items: center;
gap: 8px;
padding: 7px 10px !important;
color: rgba(255, 255, 255, 0.8) !important;
font-size: 0.78rem !important;
border-radius: 6px;
transition: background-color 0.15s;
}
.nw-topbar__gt .gt_switcher .gt_option a:hover {
background: rgba(255, 255, 255, 0.1) !important;
color: #fff !important;
}
.nw-topbar__gt .gt_switcher .gt_option a img {
width: 20px !important;
height: 15px !important;
border-radius: 2px;
}  #masthead .nw-menu > li {
flex-shrink: 1;
min-width: 0; }
#masthead .nw-menu > li > a {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 100%;
}  .nw-topbar__item {
max-width: 220px;
overflow: hidden;
text-overflow: ellipsis;
} @media (min-width: 1081px) {
#masthead .nw-menu > li > .sub-menu > li > a {
word-break: break-word;
hyphens: auto;
}
#masthead .nw-menu > li > .sub-menu > li > .sub-menu > li > a {
word-break: break-word;
hyphens: auto;
}
} #masthead .nw-header__inner {
flex-wrap: nowrap;
overflow: visible;
} @media print {
.nw-topbar,
#masthead.site-header { display: none !important; }
}.nawis-mini-finder {
margin: clamp(24px, 4vw, 42px) 0;
padding: 0;
border: 0;
border-radius: 0;
background: transparent;
box-shadow: none;
}
.nawis-mini-finder__head {
margin-bottom: 14px;
}
.nawis-mini-finder__head h2 {
margin: 0 0 6px;
font-family: "Sora", system-ui, sans-serif;
font-size: clamp(1.25rem, 2.3vw, 1.6rem);
letter-spacing: -0.02em;
color: var(--nw-slate-900, #0f172a);
}
.nawis-mini-finder__head p {
margin: 0;
color: var(--nw-slate-700, #334155);
} .nawis-mini-finder .urun-bulucu-seo-header {
display: none !important;
} .nawis-mini-finder .modern-form {
width: 100% !important;
max-width: 100% !important;
margin: 0 !important;
padding: 0 !important;
border-radius: 14px !important;
box-shadow: none !important;
border: 0 !important;
background: transparent !important;
}
.nawis-mini-finder .form-row {
gap: 12px !important;
margin-bottom: 10px !important;
}
.nawis-mini-finder .form-group {
flex: 1 1 220px !important;
}
.nawis-mini-finder .form-group label {
font-size: 0.85rem !important;
color: var(--nw-slate-700, #334155) !important;
}
.nawis-mini-finder .form-group input,
.nawis-mini-finder .form-group select {
min-height: 44px !important;
border-radius: 10px !important;
font-size: 0.94rem !important;
background: #ffffff !important;
border: 1px solid rgba(148, 163, 184, 0.45) !important;
}
.nawis-mini-finder .form-button-container {
margin-top: 10px !important;
}
.nawis-mini-finder .form-button-container button {
min-height: 46px !important;
border-radius: 10px !important;
font-size: 0.95rem !important;
}
.nawis-mini-finder .loading-screen {
border-radius: 12px !important;
} .nawis-mini-finder .result-container {
margin: 18px 0 0 !important;
padding: 0 !important;
}
.nawis-mini-finder .user-input {
margin-bottom: 12px !important;
padding: 14px !important;
border-radius: 12px !important;
box-shadow: none !important;
border: 1px solid rgba(148, 163, 184, 0.32) !important;
background: #ffffff !important;
}
.nawis-mini-finder .user-input h4 {
margin-bottom: 10px !important;
padding-bottom: 8px !important;
font-size: 1rem !important;
}
.nawis-mini-finder .user-input p {
flex: 1 1 180px !important;
margin: 0 !important;
padding: 9px 11px !important;
font-size: 0.9rem !important;
}
.nawis-mini-finder .result-card {
display: grid !important;
grid-template-columns: minmax(84px, 110px) minmax(0, 1fr) auto;
align-items: center !important;
gap: 12px !important;
margin: 0 0 12px !important;
padding: 18px 16px 16px !important;
min-height: 0 !important;
border-radius: 14px !important;
box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08) !important;
}
.nawis-mini-finder .result-card img {
width: 100% !important;
max-width: 100px !important;
margin: 0 !important;
}
.nawis-mini-finder .result-info {
text-align: left !important;
}
.nawis-mini-finder .result-info h3 {
margin: 0 0 6px !important;
font-size: 1.02rem !important;
}
.nawis-mini-finder .result-info p {
font-size: 0.88rem !important;
}
.nawis-mini-finder .button-container {
align-items: flex-end !important;
gap: 6px !important;
margin-top: 4px !important;
}
.nawis-mini-finder .button {
margin-top: 0 !important;
padding: 10px 14px !important;
font-size: 0.82rem !important;
border-radius: 10px !important;
color: #ffffff !important;
text-decoration: none !important;
line-height: 1.2 !important;
}
.nawis-mini-finder .button.secondary {
color: var(--nw-blue, #0066ff) !important;
background: #ffffff !important;
}
.nawis-mini-finder .button.back-button {
color: var(--nw-slate-900, #0f172a) !important;
background: #f8fafc !important;
border: 1px solid rgba(148, 163, 184, 0.5) !important;
}
.nawis-mini-finder .result-number {
top: 8px !important;
left: 8px !important;
}
.nawis-mini-finder .recommended-badge {
top: 8px !important;
right: 8px !important;
z-index: 6 !important;
}
.nawis-mini-finder .result-card.recommended-motor {
padding-top: 52px !important;
}
@media (max-width: 640px) {
.nawis-mini-finder {
padding: 0;
border-radius: 0;
}
.nawis-mini-finder .modern-form {
padding: 0 !important;
}
.nawis-mini-finder .result-card {
grid-template-columns: 1fr !important;
padding-top: 34px !important;
}
.nawis-mini-finder .result-card img {
max-width: 92px !important;
margin-bottom: 4px !important;
}
.nawis-mini-finder .button-container {
align-items: stretch !important;
width: 100%;
}
.nawis-mini-finder .button {
width: 100%;
text-align: center;
}
} .nawis-energy-calc {
margin: clamp(28px, 4.5vw, 48px) 0;
}
.nawis-energy-calc__head {
margin-bottom: 14px;
}
.nawis-energy-calc__head h2 {
margin: 0 0 6px;
font-family: "Sora", system-ui, sans-serif;
font-size: clamp(1.2rem, 2.2vw, 1.55rem);
letter-spacing: -0.02em;
color: var(--nw-slate-900, #0f172a);
}
.nawis-energy-calc__head p {
margin: 0;
color: var(--nw-slate-700, #334155);
}
.nawis-energy-calc__panel {
border: 1px solid rgba(148, 163, 184, 0.35);
background: #ffffff;
border-radius: 14px;
padding: clamp(14px, 2.6vw, 22px);
box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.nawis-energy-calc__top {
display: grid;
grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
gap: 14px;
align-items: end;
}
.nawis-energy-calc__field {
display: grid;
gap: 6px;
}
.nawis-energy-calc__field span {
font-size: 0.82rem;
font-weight: 600;
color: var(--nw-slate-700, #334155);
}
.nawis-energy-calc__field select {
min-height: 44px;
border-radius: 10px;
border: 1px solid rgba(148, 163, 184, 0.45);
background: #fff;
padding: 0 12px;
font-size: 0.94rem;
color: #0f172a;
}
.nawis-energy-calc__meta {
display: grid;
gap: 6px;
font-size: 0.92rem;
color: #1e293b;
}
.nawis-energy-calc__slider-wrap {
margin-top: 14px;
}
.nawis-energy-calc__slider-wrap input[type="range"] {
width: 100%;
accent-color: var(--nw-blue, #0066ff);
cursor: pointer;
}
.nawis-energy-calc__zones {
margin-top: 12px;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 8px;
}
.nawis-energy-calc__zones span {
border: 1px solid rgba(148, 163, 184, 0.35);
border-radius: 999px;
min-height: 34px;
display: grid;
place-items: center;
text-align: center;
font-size: 0.78rem;
color: #475569;
background: #f8fafc;
transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.nawis-energy-calc__zones .is-active {
color: #fff;
border-color: transparent;
background: linear-gradient(135deg, #0066ff, #06b6d4);
}
.nawis-energy-calc__batteries {
margin-top: 12px;
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 8px;
}
.nawis-energy-calc__battery {
border: 1px solid rgba(148, 163, 184, 0.45);
background: #fff;
color: #0f172a;
border-radius: 10px;
min-height: 40px;
font-size: 0.84rem;
font-weight: 600;
cursor: pointer;
transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.nawis-energy-calc__battery:hover {
transform: translateY(-1px);
border-color: rgba(0, 102, 255, 0.45);
}
.nawis-energy-calc__battery.is-active {
background: linear-gradient(135deg, #0066ff, #06b6d4);
color: #fff;
border-color: transparent;
}
.nawis-energy-calc__result {
margin-top: 14px;
border: 1px solid rgba(148, 163, 184, 0.35);
border-radius: 12px;
padding: 12px;
background: #f8fafc;
}
.nawis-energy-calc__result-label {
font-size: 0.8rem;
color: #475569;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.nawis-energy-calc__result-value {
margin-top: 4px;
font-size: clamp(1.3rem, 2.5vw, 1.8rem);
font-weight: 800;
color: #0f172a;
letter-spacing: -0.02em;
}
.nawis-energy-calc__result-detail {
margin-top: 4px;
font-size: 0.88rem;
color: #475569;
}
@media (max-width: 900px) {
.nawis-energy-calc__top {
grid-template-columns: 1fr;
align-items: stretch;
}
.nawis-energy-calc__batteries {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (max-width: 560px) {
.nawis-energy-calc__zones {
grid-template-columns: 1fr;
}
.nawis-energy-calc__batteries {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}:root {
--dy-bg:            #f7f5f0;
--dy-surface:       #ffffff;
--dy-surface-2:     #f0ece4;
--dy-ink:           #0a1628;
--dy-ink-2:         #46505e;
--dy-muted:         #67707e;
--dy-border:        #e7e2d8;
--dy-border-strong: #dcd6c9;
--dy-brand:         #0f4da8;
--dy-brand-dark:    #0c3d86;
--dy-steel:         #35608f;
--dy-electric:      #6aa9ec;
--dy-electric-soft: #a9d0f8;
--dy-dark:          #0a1628;
--dy-dark-2:        #0f1f3a;
--dy-r-sm: 2px;
--dy-r-md: 3px;
--dy-r-lg: 4px;
--dy-r-xl: 6px;
--dy-ease: cubic-bezier(0.22, 1, 0.36, 1);
--dy-font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--dy-font);
line-height: 1.7;
color: var(--dy-ink);
background: var(--dy-bg);
font-feature-settings: 'cv11', 'ss01';
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 {
font-family: var(--dy-font);
letter-spacing: -0.02em;
}
html, body {
max-width: 100%;
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
@media (max-width: 768px) {
.container {
padding: 0 18px;
}
} .hero {
position: relative;
background: var(--dy-dark);
color: #fff;
padding: clamp(88px, 11vw, 140px) 0 clamp(80px, 10vw, 128px);
overflow: hidden;
display: flex;
align-items: center;
}
.hero > .container {
width: 100%;
}
.hero::after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 1px;
background: rgba(255, 255, 255, 0.12);
}
.hero-content {
position: relative;
z-index: 1;
max-width: 860px;
margin: 0 auto;
text-align: center;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 12px;
font-size: 0.74rem;
font-weight: 600;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--dy-electric);
margin-bottom: 28px;
}
.hero-badge::before,
.hero-badge::after {
content: '';
width: 26px;
height: 1px;
background: rgba(106, 169, 236, 0.5);
}
.hero h1 {
font-size: clamp(2.2rem, 5vw, 3.6rem);
font-weight: 500;
margin-bottom: 20px;
letter-spacing: -0.03em;
line-height: 1.06;
color: #ffffff;
text-wrap: balance;
}
.hero .subtitle {
font-size: clamp(1.05rem, 1.6vw, 1.25rem);
margin-bottom: 26px;
font-weight: 400;
color: var(--dy-electric-soft);
letter-spacing: 0.01em;
}
.hero .description {
font-size: 1.02rem;
line-height: 1.85;
max-width: 720px;
margin: 0 auto;
color: rgba(226, 232, 240, 0.78);
} .section {
padding: clamp(72px, 9vw, 120px) 0;
}
.section + .section {
padding-top: 0;
}
.section-header {
text-align: center;
max-width: 760px;
margin: 0 auto 64px;
}
.section-header h2 {
font-size: clamp(1.8rem, 3vw, 2.4rem);
font-weight: 550;
color: var(--dy-ink);
margin-bottom: 18px;
letter-spacing: -0.025em;
text-wrap: balance;
}
.section-header p {
font-size: 1.02rem;
color: var(--dy-ink-2);
line-height: 1.8;
} .content-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 20px;
}
.content-card {
background: var(--dy-surface);
border: 1px solid var(--dy-border);
border-radius: var(--dy-r-lg);
padding: 36px 32px;
transition: border-color 0.45s var(--dy-ease), transform 0.45s var(--dy-ease), box-shadow 0.45s var(--dy-ease);
}
.content-card:hover {
transform: translateY(-3px);
border-color: var(--dy-steel);
box-shadow: 0 20px 44px -20px rgba(12, 26, 46, 0.14);
}
.content-card h3 {
font-size: 1.18rem;
font-weight: 600;
color: var(--dy-ink);
margin-bottom: 12px;
line-height: 1.35;
}
.content-card p {
font-size: 0.96rem;
color: var(--dy-ink-2);
line-height: 1.75;
margin-bottom: 20px;
}
.feature-list {
list-style: none;
padding: 0;
margin: 0;
border-top: 1px solid var(--dy-border);
padding-top: 18px;
}
.feature-list li {
font-size: 0.9rem;
color: var(--dy-muted);
margin-bottom: 9px;
padding-left: 24px;
position: relative;
line-height: 1.55;
}
.feature-list li:last-child {
margin-bottom: 0;
}
.feature-list li::before {
content: '';
position: absolute;
left: 0;
top: 0.72em;
width: 14px;
height: 1px;
background: var(--dy-steel);
} .impact-section,
.mission-section,
.tech-intro-section,
.difference-section,
.environmental-section,
.future-section,
.why-section,
.tech-section {
max-width: 780px;
margin: 0 auto;
text-align: center;
}
.impact-section h2,
.mission-section h2,
.tech-intro-section h2,
.difference-section h2,
.why-section h2,
.tech-section h2,
.environmental-section h3,
.future-section h3 {
font-size: clamp(1.6rem, 2.6vw, 2.1rem);
font-weight: 550;
color: var(--dy-ink);
margin-bottom: 26px;
letter-spacing: -0.025em;
text-wrap: balance;
}
.impact-section h2::after,
.mission-section h2::after,
.tech-intro-section h2::after,
.difference-section h2::after,
.why-section h2::after,
.tech-section h2::after,
.environmental-section h3::after,
.future-section h3::after {
content: '';
display: block;
width: 44px;
height: 2px;
background: var(--dy-brand);
margin: 22px auto 0;
}
.impact-section p,
.mission-section p,
.mission-content p,
.tech-intro-section p,
.difference-section p,
.environmental-section p,
.future-section p,
.why-section p,
.tech-section p {
font-size: 1.03rem;
color: var(--dy-ink-2);
line-height: 1.9;
text-align: left;
margin-bottom: 1.2rem;
}
.impact-section p:last-child,
.mission-content p:last-child,
.why-section p:last-child,
.tech-section p:last-child {
margin-bottom: 0;
}
.impact-section .impact-text {
max-width: 720px;
margin: 0 auto;
}
.impact-section .impact-text p {
font-size: 1.02rem;
} .why-choose-section,
.advantage-section {
max-width: 1200px;
margin: 0 auto;
}
.why-choose-section h3,
.advantage-section h2 {
font-size: clamp(1.6rem, 2.6vw, 2.1rem);
font-weight: 550;
color: var(--dy-ink);
margin-bottom: 48px;
text-align: center;
letter-spacing: -0.025em;
}
.why-grid,
.advantage-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}
.why-item,
.advantage-item {
background: transparent;
border-top: 1px solid var(--dy-border-strong);
padding: 24px 4px 0;
transition: border-color 0.45s var(--dy-ease);
}
.why-item:hover,
.advantage-item:hover {
border-top-color: var(--dy-steel);
}
.why-item h4,
.advantage-item h3 {
font-size: 1.06rem;
font-weight: 600;
color: var(--dy-ink);
margin-bottom: 10px;
line-height: 1.4;
}
.why-item p,
.advantage-item p {
font-size: 0.93rem;
color: var(--dy-ink-2);
line-height: 1.7;
} .values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
}
.value-item {
text-align: left;
padding: 24px 4px 0;
background: transparent;
border-top: 1px solid var(--dy-border-strong);
transition: border-color 0.45s var(--dy-ease);
}
.value-item:hover {
border-top-color: var(--dy-steel);
}
.value-icon {
font-size: 1.5rem;
margin-bottom: 14px;
display: block;
filter: grayscale(0.2);
}
.value-item h3 {
font-size: 1.02rem;
font-weight: 600;
color: var(--dy-ink);
margin-bottom: 8px;
}
.value-item p {
font-size: 0.91rem;
color: var(--dy-ink-2);
line-height: 1.7;
} .quote-section {
background: var(--dy-dark);
color: #eef2f7;
padding: clamp(64px, 8vw, 104px) 32px;
text-align: center;
border-radius: var(--dy-r-xl);
}
.quote-content {
max-width: 780px;
margin: 0 auto;
}
.quote-mark {
font-size: 3rem;
color: var(--dy-electric);
line-height: 1;
margin-bottom: 20px;
}
.quote-text {
font-size: clamp(1.25rem, 2.2vw, 1.55rem);
font-weight: 400;
line-height: 1.6;
margin-bottom: 26px;
color: #eef2f7;
letter-spacing: -0.01em;
text-wrap: balance;
}
.quote-author {
font-size: 0.76rem;
font-weight: 600;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--dy-electric);
} .cta-section {
background: var(--dy-dark);
color: #fff;
text-align: center;
padding: clamp(64px, 8vw, 104px) 24px;
border-radius: var(--dy-r-xl);
}
.cta-content {
max-width: 680px;
margin: 0 auto;
}
.cta-section h2 {
font-size: clamp(1.7rem, 2.8vw, 2.2rem);
font-weight: 550;
margin-bottom: 20px;
letter-spacing: -0.02em;
color: #fff;
text-wrap: balance;
}
.cta-section p {
font-size: 1rem;
line-height: 1.85;
margin-bottom: 38px;
color: rgba(226, 232, 240, 0.78);
}
.cta-button,
.cta-button:visited {
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--dy-brand);
color: #fff;
padding: 17px 38px;
border-radius: var(--dy-r-sm);
font-weight: 600;
font-size: 0.82rem;
letter-spacing: 0.14em;
text-transform: uppercase;
transition: background 0.45s var(--dy-ease), transform 0.45s var(--dy-ease);
text-decoration: none !important;
}
.cta-button:hover {
background: var(--dy-brand-dark);
color: #fff;
transform: translateY(-1px);
} @media (max-width: 1024px) {
.content-grid {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 768px) {
.section-header {
margin-bottom: 44px;
}
.content-grid,
.why-grid,
.advantage-grid,
.values-grid {
grid-template-columns: 1fr;
}
.content-card {
padding: 28px 24px;
}
.quote-section,
.cta-section {
padding: 56px 22px;
border-radius: var(--dy-r-lg);
}
}