: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 {
--nw-dark: #0a1628;
--nw-blue: #0f4da8;
--nw-cyan: #6aa9ec;
--nw-teal: #35608f;
--nw-light: #f0f4f9;
--nw-font-display: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
--nw-font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
--nw-font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
} .nw-hero {
position: relative;
display: flex;
align-items: center;
justify-content: center;
background: var(--nw-dark);
margin-bottom: 0;
padding: clamp(88px, 11vw, 140px) 0 clamp(80px, 10vw, 120px);
box-sizing: border-box;
}
.nw-hero::after {
content: '';
position: absolute;
left: 0; right: 0; bottom: 0;
height: 1px;
background: rgba(255, 255, 255, 0.12);
}
.nw-hero-bg { display: none; }
.nw-hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 820px; margin: 0 auto; }
.nw-hero-badge {
display: inline-flex; align-items: center; gap: 12px;
font-family: var(--nw-font-body);
font-size: 0.74rem; font-weight: 600; color: var(--nw-cyan);
letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 28px;
}
.nw-hero-badge::before,
.nw-hero-badge::after {
content: '';
width: 26px; height: 1px;
background: rgba(106, 169, 236, 0.5);
}
.nw-badge-dot { display: none; }
.nw-hero-title {
font-family: var(--nw-font-display); font-size: clamp(2.1rem, 4.6vw, 3.4rem);
font-weight: 500; color: #ffffff; line-height: 1.08; margin-bottom: 20px; letter-spacing: -0.03em;
text-wrap: balance;
}
.nw-title-accent {
color: #a9d0f8;
}
.nw-hero-desc {
font-family: var(--nw-font-body); font-size: clamp(0.98rem, 1.8vw, 1.1rem);
font-weight: 400; color: rgba(226, 232, 240, 0.78); line-height: 1.8; max-width: 600px; margin: 0 auto;
} .hc {
position: relative;
font-family: var(--nw-font-body);
color: #334155;
background:
radial-gradient(900px 500px at 88% -2%, rgba(106, 169, 236, 0.08), transparent 60%),
radial-gradient(820px 520px at -5% 30%, rgba(15, 77, 168, 0.06), transparent 60%),
linear-gradient(180deg, #f7f9fc 0%, #eef2f8 60%, #eef2f8 100%);
overflow: hidden;
} .hc::before {
content: '';
position: absolute; inset: 0;
background-image: radial-gradient(circle at 1px 1px, rgba(10, 22, 40, 0.045) 1px, transparent 0);
background-size: 24px 24px;
-webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
pointer-events: none; z-index: 0;
}
.hc-inner {
position: relative; z-index: 1;
max-width: 1200px; margin: 0 auto; padding: 72px 28px 96px;
} .hc-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.hc-head-kicker {
display: inline-flex; align-items: center; gap: 9px;
font-family: var(--nw-font-mono); font-size: 0.72rem; font-weight: 500;
letter-spacing: 0.22em; text-transform: uppercase; color: var(--nw-teal);
margin-bottom: 18px;
}
.hc-head-kicker::before {
content: ''; width: 26px; height: 1px;
background: linear-gradient(90deg, transparent, var(--nw-cyan));
}
.hc-head-kicker::after {
content: ''; width: 26px; height: 1px;
background: linear-gradient(90deg, var(--nw-cyan), transparent);
}
.hc-head h2 {
font-family: var(--nw-font-display); font-weight: 600;
font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.15;
letter-spacing: -0.03em; color: var(--nw-dark); margin: 0 0 26px;
}
.hc-head h2 em { font-style: normal; color: var(--nw-blue); }
.hc-search { position: relative; max-width: 600px; margin: 0 auto; }
.hc-search-icon {
position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
width: 21px; height: 21px; color: #98a0ac; stroke-width: 2.2; pointer-events: none; z-index: 2;
}
.hc-search input {
width: 100%; box-sizing: border-box;
font-family: var(--nw-font-body); font-size: 1.04rem; font-weight: 500; color: var(--nw-dark);
background: #ffffff; border: 1px solid #e2e8f1; border-radius: 4px;
padding: 18px 54px 18px 52px; outline: none;
box-shadow: 0 18px 40px -26px rgba(10, 22, 40, 0.5);
transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.hc-search input::placeholder { color: #98a0ac; font-weight: 400; }
.hc-search input:focus {
border-color: rgba(106, 169, 236, 0.55);
box-shadow: 0 0 0 4px rgba(106, 169, 236, 0.12), 0 18px 40px -22px rgba(106, 169, 236, 0.4);
}
.hc-search-clear {
position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
width: 34px; height: 34px; border: 0; border-radius: 3px;
background: #f0ece4; color: #67707e; cursor: pointer;
display: none; align-items: center; justify-content: center; z-index: 2;
transition: background 0.2s ease, color 0.2s ease;
}
.hc-search-clear:hover { background: #e2e8f1; color: var(--nw-dark); }
.hc-search.has-value .hc-search-clear { display: inline-flex; }
.hc-chips { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin-top: 18px; }
.hc-chips-label { font-family: var(--nw-font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: #98a0ac; margin-right: 4px; }
.hc-chip {
font-family: var(--nw-font-body); font-size: 0.82rem; font-weight: 600;
color: #46505e; background: rgba(255, 255, 255, 0.7); border: 1px solid #e2e8f1;
border-radius: 999px; padding: 6px 14px; cursor: pointer;
transition: all 0.2s ease;
}
.hc-chip:hover { color: var(--nw-blue); border-color: rgba(15, 77, 168, 0.35); transform: translateY(-1px); } .hc-layout { display: grid; grid-template-columns: 248px 1fr; gap: 60px; align-items: start; } .hc-rail { position: sticky; top: 96px; align-self: start; }
.hc-rail-title {
font-family: var(--nw-font-mono); font-size: 0.7rem; font-weight: 500;
letter-spacing: 0.2em; text-transform: uppercase; color: #98a0ac;
padding: 0 0 14px 18px; margin-bottom: 6px;
}
.hc-rail-list { position: relative; display: flex; flex-direction: column; } .hc-rail-list::before {
content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px;
background: linear-gradient(180deg, rgba(15,23,42,0.08), rgba(15,23,42,0.04));
border-radius: 2px;
}
.hc-rail-item {
position: relative; display: flex; align-items: center; gap: 12px;
padding: 11px 14px 11px 18px; border: 0; background: none; width: 100%;
text-align: left; cursor: pointer; border-radius: 3px;
color: #67707e; transition: color 0.2s ease, background 0.2s ease;
}
.hc-rail-item::before {
content: ''; position: absolute; left: -1px; top: 50%; transform: translateY(-50%) scaleY(0);
width: 4px; height: 22px; border-radius: 4px;
background: linear-gradient(180deg, var(--nw-blue), var(--nw-cyan));
transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.hc-rail-no { font-family: var(--nw-font-mono); font-size: 0.74rem; font-weight: 500; color: #dcd6c9; transition: color 0.2s ease; }
.hc-rail-name { font-size: 0.92rem; font-weight: 600; line-height: 1.3; flex: 1; }
.hc-rail-count {
font-family: var(--nw-font-mono); font-size: 0.68rem; color: #dcd6c9;
background: rgba(15,23,42,0.04); border-radius: 6px; padding: 2px 6px; transition: all 0.2s ease;
}
.hc-rail-item:hover { color: var(--nw-dark); background: rgba(255,255,255,0.6); }
.hc-rail-item:hover .hc-rail-no { color: var(--nw-cyan); }
.hc-rail-item.is-active { color: var(--nw-dark); }
.hc-rail-item.is-active::before { transform: translateY(-50%) scaleY(1); }
.hc-rail-item.is-active .hc-rail-no { color: var(--nw-blue); }
.hc-rail-item.is-active .hc-rail-name { font-weight: 600; }
.hc-rail-item.is-active .hc-rail-count { background: rgba(15, 77, 168,0.1); color: var(--nw-blue); }
.hc-rail-item.is-dim { opacity: 0.35; } .hc-content { min-width: 0; }
.hc-bar {
display: flex; align-items: center; justify-content: space-between; gap: 16px;
padding: 0 2px 14px; margin-bottom: 8px; flex-wrap: wrap;
}
.hc-bar-count { font-family: var(--nw-font-mono); font-size: 0.76rem; letter-spacing: 0.03em; color: #67707e; }
.hc-bar-count strong { color: var(--nw-dark); }
.hc-expand {
display: inline-flex; align-items: center; gap: 8px;
font-family: var(--nw-font-body); font-size: 0.82rem; font-weight: 600; color: #46505e;
background: #ffffff; border: 1px solid #e2e8f1; border-radius: 999px; padding: 8px 15px; cursor: pointer;
transition: all 0.2s ease;
}
.hc-expand:hover { color: var(--nw-blue); border-color: rgba(15, 77, 168,0.3); }
.hc-expand svg { width: 14px; height: 14px; stroke-width: 2.4; transition: transform 0.3s ease; }
.hc-expand.all-open svg { transform: rotate(180deg); } .hc-cat { scroll-margin-top: 92px; padding-top: 52px; }
.hc-cat:first-of-type { padding-top: 22px; }
.hc-cat-head { position: relative; display: flex; align-items: flex-start; gap: 22px; margin-bottom: 10px; }
.hc-cat-index {
font-family: var(--nw-font-display); font-weight: 550; font-size: 3.4rem; line-height: 0.82;
letter-spacing: -0.04em; color: rgba(106, 169, 236,0.12);
-webkit-text-stroke: 1.4px rgba(106, 169, 236,0.45); flex-shrink: 0;
transform: translateY(-2px);
}
.hc-cat-meta { padding-top: 4px; min-width: 0; }
.hc-cat-kicker { font-family: var(--nw-font-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--nw-teal); }
.hc-cat-title {
font-family: var(--nw-font-display); font-weight: 600; font-size: clamp(1.45rem, 2.5vw, 1.95rem);
letter-spacing: -0.03em; color: var(--nw-dark); margin: 6px 0 8px; line-height: 1.12;
}
.hc-cat-sub { font-size: 0.97rem; color: #67707e; line-height: 1.6; max-width: 58ch; margin: 0; } .hc-list { margin-top: 26px; }
.hc-item { border-top: 1px solid rgba(15,23,42,0.09); }
.hc-item:last-child { border-bottom: 1px solid rgba(15,23,42,0.09); }
.hc-item.is-hidden { display: none; }
.hc-q {
display: flex; align-items: center; gap: 18px; width: 100%;
background: none; border: 0; padding: 21px 6px; cursor: pointer; text-align: left;
}
.hc-q-no {
font-family: var(--nw-font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.02em;
color: #98a0ac; flex-shrink: 0; width: 30px; padding-top: 2px; transition: color 0.2s ease;
}
.hc-q-text {
flex: 1; min-width: 0; overflow-wrap: break-word;
font-family: var(--nw-font-display); font-weight: 600; font-size: 1.04rem;
letter-spacing: -0.012em; color: var(--nw-dark); line-height: 1.45;
transition: color 0.2s ease;
}
.hc-q-toggle {
flex-shrink: 0; position: relative; width: 34px; height: 34px; border-radius: 50%;
border: 1px solid #d8e0ec; background: #ffffff;
transition: border-color 0.25s ease, background 0.3s ease, transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.hc-q-toggle::before, .hc-q-toggle::after {
content: ''; position: absolute; left: 50%; top: 50%; background: #46505e; border-radius: 2px;
transition: background 0.25s ease, transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.hc-q-toggle::before { width: 11px; height: 1.6px; transform: translate(-50%, -50%); }
.hc-q-toggle::after  { width: 1.6px; height: 11px; transform: translate(-50%, -50%); }
.hc-q:hover .hc-q-no { color: var(--nw-cyan); }
.hc-q:hover .hc-q-text { color: var(--nw-blue); }
.hc-q:hover .hc-q-toggle { border-color: var(--nw-cyan); }
.hc-item.is-open .hc-q-text { color: var(--nw-blue); }
.hc-item.is-open .hc-q-no { color: var(--nw-blue); }
.hc-item.is-open .hc-q-toggle {
border-color: transparent; transform: rotate(180deg);
background: linear-gradient(135deg, var(--nw-blue), var(--nw-cyan));
box-shadow: 0 8px 18px -7px rgba(15, 77, 168,0.6);
}
.hc-item.is-open .hc-q-toggle::before, .hc-item.is-open .hc-q-toggle::after { background: #ffffff; }
.hc-item.is-open .hc-q-toggle::after { transform: translate(-50%, -50%) scaleY(0); } .hc-a { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease; }
.hc-item.is-open .hc-a { opacity: 1; }
.hc-a-in {
position: relative; padding: 2px 6px 26px 48px; font-size: 0.99rem; line-height: 1.78; color: #3f4d61;
}
.hc-a-in::before {
content: ''; position: absolute; left: 22px; top: 4px; bottom: 26px; width: 1.5px; border-radius: 2px;
background: linear-gradient(180deg, var(--nw-cyan), rgba(106, 169, 236,0));
}
.hc-a-in p { margin: 0 0 13px; }
.hc-a-in p:last-child { margin-bottom: 0; }
.hc-a-in strong { color: var(--nw-dark); font-weight: 600; }
.hc-a-in a {
color: var(--nw-blue); font-weight: 600; text-decoration: none !important;
background-image: linear-gradient(180deg, transparent 92%, rgba(15, 77, 168,0.32) 92%);
transition: background-image 0.25s ease;
}
.hc-a-in a:hover { background-image: linear-gradient(180deg, transparent 84%, rgba(15, 77, 168,0.5) 84%); }
.hc-a-in ul { margin: 12px 0 14px; padding: 0; list-style: none; }
.hc-a-in ul li { position: relative; padding-left: 20px; margin-bottom: 9px; list-style: none !important; }
.hc-a-in ul li::marker { content: '' !important; }
.hc-a-in ul li::before {
content: ''; position: absolute; left: 2px; top: 10px; width: 6px; height: 6px; border-radius: 50%;
background: linear-gradient(135deg, var(--nw-blue), var(--nw-cyan));
}
.hc-tag {
display: inline-block; font-family: var(--nw-font-mono); font-size: 0.72rem; font-weight: 600;
color: var(--nw-blue); background: rgba(15, 77, 168,0.08); border-radius: 5px; padding: 2px 8px; margin-right: 6px;
} .hc-note {
display: flex; gap: 11px; margin: 15px 0 4px; padding: 13px 15px; border-radius: 3px;
background: linear-gradient(135deg, rgba(15, 77, 168,0.05), rgba(106, 169, 236,0.05));
border: 1px solid rgba(106, 169, 236,0.18); font-size: 0.92rem; line-height: 1.6;
}
.hc-note svg { flex-shrink: 0; width: 17px; height: 17px; color: var(--nw-blue); margin-top: 2px; stroke-width: 2.2; } .hc-empty { display: none; text-align: center; padding: 56px 24px; max-width: 460px; margin: 0 auto; }
.hc.is-empty .hc-empty { display: block; }
.hc.is-empty .hc-bar { border-color: transparent; }
.hc-empty-icon {
width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 4px; background: #ffffff;
border: 1px solid #e2e8f1; display: flex; align-items: center; justify-content: center; color: #98a0ac;
}
.hc-empty-icon svg { width: 28px; height: 28px; stroke-width: 1.8; }
.hc-empty h3 { font-family: var(--nw-font-display); font-size: 1.2rem; font-weight: 600; color: var(--nw-dark); margin: 0 0 8px; }
.hc-empty p { color: #67707e; font-size: 0.96rem; line-height: 1.6; margin: 0 0 22px; }
.hc-empty-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.hc-btn {
display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px;
font-family: var(--nw-font-body); font-size: 0.9rem; font-weight: 600; cursor: pointer;
text-decoration: none !important; border: 0; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hc-btn-primary { background: linear-gradient(135deg, var(--nw-blue), var(--nw-cyan)); color: #fff; box-shadow: 0 12px 26px -10px rgba(15, 77, 168,0.5); }
.hc-btn-primary:hover { transform: translateY(-2px); }
.hc-btn-ghost { background: #fff; color: #46505e; border: 1px solid #e2e8f1; } .hc-cta {
margin-top: 80px; padding: 44px;
border-radius: 6px;
background:
radial-gradient(circle at 0 0, rgba(42, 98, 196,0.2), transparent 55%),
radial-gradient(circle at 100% 100%, rgba(45,212,191,0.2), transparent 55%),
linear-gradient(145deg, #020617, #020f2a 40%, #0b1f4a 100%);
color: #e5edff; display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center;
box-shadow: 0 30px 60px -24px rgba(2,12,40,0.7); border: 1px solid rgba(148,163,184,0.22);
position: relative; overflow: hidden;
}
.hc-cta::before {
content: ''; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px;
border: 1px solid rgba(106, 169, 236,0.18); border-radius: 50%;
}
.hc-cta::after {
content: ''; position: absolute; right: 10px; top: 10px; width: 130px; height: 130px;
border: 1px solid rgba(106, 169, 236,0.12); border-radius: 50%;
}
.hc-cta-text { position: relative; z-index: 1; }
.hc-cta-kicker { font-family: var(--nw-font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--nw-cyan); }
.hc-cta h3 { font-family: var(--nw-font-display); font-size: 1.45rem; font-weight: 600; color: #fff; margin: 10px 0 8px; letter-spacing: -0.01em; }
.hc-cta p { margin: 0; color: rgba(226,232,240,0.82); font-size: 0.97rem; line-height: 1.6; max-width: 520px; }
.hc-cta-actions { position: relative; z-index: 1; display: flex; gap: 12px; flex-wrap: wrap; }
.hc-cta-btn {
display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 999px;
font-family: var(--nw-font-body); font-size: 0.94rem; font-weight: 600; white-space: nowrap;
text-decoration: none !important; border: 0; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.hc-cta-btn-primary { background: linear-gradient(135deg, var(--nw-blue), var(--nw-cyan)); color: #fff; box-shadow: 0 14px 28px -10px rgba(15, 77, 168,0.55); }
.hc-cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(15, 77, 168,0.65); }
.hc-cta-btn-ghost { background: rgba(255,255,255,0.08); color: #e5edff; border: 1px solid rgba(255,255,255,0.2); }
.hc-cta-btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.hc-cta-btn-wa { background: #25d366; color: #fff; box-shadow: 0 14px 28px -10px rgba(37,211,102,0.5); }
.hc-cta-btn-wa:hover { background: #20bd5a; transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(37,211,102,0.6); } @keyframes hcRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hc-head, .hc-rail, .hc-bar { animation: hcRise 0.6s cubic-bezier(0.16,1,0.3,1) both; }
.hc-rail { animation-delay: 0.08s; }
.hc-bar { animation-delay: 0.12s; }
@media (prefers-reduced-motion: reduce) {
.hc-head, .hc-rail, .hc-bar { animation: none; }
} #hc .hc-q {
display: flex !important; width: 100% !important; max-width: 100%;
box-sizing: border-box; min-width: 0; min-height: 0;
white-space: normal !important; text-transform: none !important; letter-spacing: normal;
-webkit-appearance: none; appearance: none;
}
#hc .hc-q-text {
white-space: normal !important; text-transform: none !important;
overflow-wrap: break-word; word-break: break-word; min-width: 0; text-align: left;
}
#hc .hc-cat-title,
#hc .hc-cat-sub {
text-transform: none !important; overflow-wrap: break-word;
}
#hc .hc-a-in,
#hc .hc-a-in p,
#hc .hc-a-in li,
#hc .hc-a-in a {
text-transform: none !important; overflow-wrap: break-word; word-break: break-word;
} @media (max-width: 960px) {
.hc-inner { padding: 56px 18px 80px; }
.hc-layout { grid-template-columns: minmax(0, 1fr); gap: 24px; }
.hc-rail {
position: sticky; top: 0; z-index: 20; margin: 0 -18px; min-width: 0;
padding: 12px 4px; background: rgba(247,249,252,0.92);
backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(15,23,42,0.07);
}
.hc-rail-title { display: none; }
.hc-rail-list { flex-direction: row; overflow-x: auto; gap: 6px; padding: 0 14px; scrollbar-width: none; }
.hc-rail-list::-webkit-scrollbar { display: none; }
.hc-rail-list::before { display: none; }
.hc-rail-item { flex-shrink: 0; width: auto; padding: 8px 14px; border-radius: 999px; border: 1px solid #e2e8f1; background: #fff; gap: 8px; }
.hc-rail-item::before { display: none; }
.hc-rail-name { white-space: nowrap; }
.hc-rail-count { display: none; }
.hc-rail-item.is-active { background: linear-gradient(135deg, rgba(15, 77, 168,0.1), rgba(106, 169, 236,0.1)); border-color: rgba(15, 77, 168,0.3); }
.hc-cat:first-of-type { padding-top: 28px; }
.hc-cat-index { font-size: 2.6rem; }
.hc-cta { grid-template-columns: 1fr; padding: 30px; }
.hc-cta-actions { width: 100%; }
.hc-cta-btn { flex: 1; justify-content: center; }
}
@media (max-width: 560px) {
.hc-cat-head { gap: 14px; }
.hc-cat-index { font-size: 2.1rem; }
.hc-q { gap: 12px; padding: 18px 2px; }
.hc-q-no { width: 26px; font-size: 0.68rem; }
.hc-q-text { font-size: 0.98rem; }
.hc-a-in { padding-left: 32px; }
.hc-a-in::before { left: 12px; }
}