/* ============================================================
   DCX Header CSS
   Two BEM namespaces:
   - .dcx-header-pro         (transparent, used on front page)
   - .dcx-header-sticky-pro  (sticky / all other pages)
   ============================================================ */

/* Plus Jakarta Sans — loaded only if not already in global.css */

/* ============================================================
   Scroll-state & positioning utilities
   ============================================================ */

/* Sticky header on inner pages: stays at top in flow */
.dcx-header-sticky-pro {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* On front page: both headers are fixed, wrapper has no height */
.home #dcx-header {
    height: 0;
    overflow: visible;
}

.home #dcx-header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

/* On front page: sticky header is hidden behind the transparent header */
/* JS adds .is-visible to show it, .is-hidden to remove transparent */
.home #dcx-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
    transform: translateY(-100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.home #dcx-header-sticky.is-visible {
    transform: translateY(0);
}

.home #dcx-header-transparent.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* ============================================================
   TRANSPARENT HEADER — dcx-header-pro
   ============================================================ */

.dcx-header-pro,
.dcx-header-pro * {
    box-sizing: border-box;
}

.dcx-header-pro {
    --dcx-text-dark: #1d293d;
    --dcx-text-muted: #62748e;
    --dcx-red-1: #b10d28;
    --dcx-red-2: #ed1a3b;
    --dcx-border: rgba(15, 23, 43, 0.08);
    --dcx-shadow: 0 18px 40px rgba(15, 23, 43, 0.08);
    width: 100%;
    font-family: "Plus Jakarta Sans", sans-serif;
    transition: opacity 0.22s ease;
}

.dcx-header-pro__bar {
    position: relative;
    width: 100%;
    background: transparent;
    z-index: 20;
}

.dcx-header-pro__bar-bg {
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.22s ease, box-shadow 0.22s ease;
    z-index: 1;
}

.dcx-header-pro__bar-bg::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--dcx-border);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.dcx-header-pro__inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 102px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 28px;
}

.dcx-header-pro__logo {
    justify-self: start;
    align-self: center;
    text-decoration: none;
    line-height: 0;
}

.dcx-header-pro__logo-stack {
    position: relative;
    display: block;
    width: 128px;
    height: 44px;
}

.dcx-header-pro__logo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    transition: opacity 0.2s ease;
}

.dcx-header-pro__logo-img--red {
    opacity: 0;
}

.dcx-header-pro__nav {
    justify-self: center;
    position: static;
}

.dcx-header-pro__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.dcx-header-pro__item {
    position: static;
}

.dcx-header-pro__item--mega {
    position: relative;
}

.dcx-header-pro__item--mega::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    height: 30px;
}

.dcx-header-pro__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 72px;
    padding: 0 6px;
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 72px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
    transition: color 0.18s ease, opacity 0.18s ease;
}

.dcx-header-pro__link::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    opacity: 0;
    transform: scaleX(0.72);
    transform-origin: center;
    transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.dcx-header-pro__item:hover > .dcx-header-pro__link {
    color: #fff;
    opacity: 1;
}

.dcx-header-pro__item:hover > .dcx-header-pro__link::after {
    opacity: 1;
    transform: scaleX(1);
}

.dcx-header-pro__chevron {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    transform: translateY(1px);
}

.dcx-header-pro__utilities {
    justify-self: end;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.dcx-header-pro__lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.dcx-header-pro__lang:hover {
    transform: translateY(-1px);
    opacity: 0.86;
}

.dcx-header-pro__lang img {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.dcx-header-pro__login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: color 0.18s ease, opacity 0.18s ease;
}

.dcx-header-pro__login svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    fill: #ffffff;
    transition: fill 0.18s ease;
}

.dcx-header-pro__login:hover {
    color: rgba(255, 255, 255, 0.82);
}

.dcx-header-pro__login:hover svg {
    fill: rgba(255, 255, 255, 0.82);
}

/* Hover state: header turns white */
.dcx-header-pro:hover .dcx-header-pro__bar-bg {
    background: #fff !important;
    box-shadow: none;
}

.dcx-header-pro:hover .dcx-header-pro__bar-bg::after {
    opacity: 1;
}

.dcx-header-pro:hover .dcx-header-pro__logo-img--white {
    opacity: 0;
}

.dcx-header-pro:hover .dcx-header-pro__logo-img--red {
    opacity: 1;
}

.dcx-header-pro:hover .dcx-header-pro__link {
    color: var(--dcx-text-dark);
    text-shadow: none;
}

.dcx-header-pro:hover .dcx-header-pro__link::after {
    background: var(--dcx-red-2);
}

.dcx-header-pro:hover .dcx-header-pro__item:hover > .dcx-header-pro__link {
    color: var(--dcx-red-2);
}

.dcx-header-pro:hover .dcx-header-pro__login {
    color: var(--dcx-text-dark);
}

.dcx-header-pro:hover .dcx-header-pro__login svg {
    fill: var(--dcx-text-dark);
}

.dcx-header-pro:hover .dcx-header-pro__login:hover {
    color: var(--dcx-red-2);
}

.dcx-header-pro:hover .dcx-header-pro__login:hover svg {
    fill: var(--dcx-red-2);
}

.dcx-header-pro:hover .dcx-header-pro__lang img {
    box-shadow: 0 0 0 1px rgba(15, 23, 43, 0.10);
}

/* Mega menu — transparent header */
.dcx-header-pro__mega {
    position: fixed;
    left: 0;
    right: 0;
    top: 102px;
    width: 100vw;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 1200;
}

.dcx-header-pro__item--mega:hover .dcx-header-pro__mega,
.dcx-header-pro__mega:hover {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

/* While hovering the whole header (white bg), reset + re-enable mega on its own item */
.dcx-header-pro:hover .dcx-header-pro__mega {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
}

.dcx-header-pro:hover .dcx-header-pro__item--mega:hover .dcx-header-pro__mega,
.dcx-header-pro:hover .dcx-header-pro__mega:hover {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

/* ============================================================
   STICKY HEADER — dcx-header-sticky-pro
   ============================================================ */

.dcx-header-sticky-pro,
.dcx-header-sticky-pro * {
    box-sizing: border-box;
}

.dcx-header-sticky-pro {
    --dcx-text-dark: #1d293d;
    --dcx-text-muted: #62748e;
    --dcx-red-1: #b10d28;
    --dcx-red-2: #ed1a3b;
    --dcx-border: rgba(15, 23, 43, 0.08);
    --dcx-shadow: 0 18px 40px rgba(15, 23, 43, 0.08);
    width: 100%;
    font-family: "Plus Jakarta Sans", sans-serif;
    transition: opacity 0.22s ease;
}

.dcx-header-sticky-pro__bar {
    position: relative;
    width: 100%;
    background: #fff;
    z-index: 20;
}

.dcx-header-sticky-pro__bar-bg {
    position: absolute;
    inset: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 43, 0.05);
    z-index: 1;
}

.dcx-header-sticky-pro__bar-bg::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--dcx-border);
    opacity: 1;
}

.dcx-header-sticky-pro__inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 28px;
}

.dcx-header-sticky-pro__logo {
    justify-self: start;
    align-self: center;
    text-decoration: none;
    line-height: 0;
}

.dcx-header-sticky-pro__logo-stack {
    position: relative;
    display: block;
    width: 128px;
    height: 44px;
}

.dcx-header-sticky-pro__logo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    transition: opacity 0.2s ease;
}

.dcx-header-sticky-pro__logo-img--white {
    opacity: 0;
}

.dcx-header-sticky-pro__logo-img--red {
    opacity: 1;
}

.dcx-header-sticky-pro__nav {
    justify-self: center;
    position: static;
}

.dcx-header-sticky-pro__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.dcx-header-sticky-pro__item {
    position: static;
}

.dcx-header-sticky-pro__item--mega {
    position: relative;
}

.dcx-header-sticky-pro__item--mega::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    height: 24px;
}

.dcx-header-sticky-pro__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 60px;
    padding: 0 6px;
    color: var(--dcx-text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 60px;
    text-shadow: none;
    transition: color 0.18s ease, opacity 0.18s ease;
}

.dcx-header-sticky-pro__link::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: 14px;
    height: 2px;
    border-radius: 999px;
    background: var(--dcx-red-2);
    opacity: 0;
    transform: scaleX(0.72);
    transform-origin: center;
    transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.dcx-header-sticky-pro__item:hover > .dcx-header-sticky-pro__link {
    color: var(--dcx-red-2);
    opacity: 1;
}

.dcx-header-sticky-pro__item:hover > .dcx-header-sticky-pro__link::after {
    opacity: 1;
    transform: scaleX(1);
}

.dcx-header-sticky-pro__chevron {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    transform: translateY(1px);
}

.dcx-header-sticky-pro__utilities {
    justify-self: end;
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.dcx-header-sticky-pro__lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.dcx-header-sticky-pro__lang:hover {
    transform: translateY(-1px);
    opacity: 0.86;
}

.dcx-header-sticky-pro__lang img {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
    box-shadow: 0 0 0 1px rgba(15, 23, 43, 0.10);
}

.dcx-header-sticky-pro__login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--dcx-text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: color 0.18s ease, opacity 0.18s ease;
}

.dcx-header-sticky-pro__login svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    fill: var(--dcx-text-dark);
    transition: fill 0.18s ease;
}

.dcx-header-sticky-pro__login:hover {
    color: var(--dcx-red-2);
}

.dcx-header-sticky-pro__login:hover svg {
    fill: var(--dcx-red-2);
}

/* Mega menu — sticky header */
.dcx-header-sticky-pro__mega {
    position: fixed;
    left: 0;
    right: 0;
    top: 84px;
    width: 100vw;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 1200;
}

.dcx-header-sticky-pro__item--mega:hover .dcx-header-sticky-pro__mega,
.dcx-header-sticky-pro__mega:hover {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

/* ============================================================
   Mega menu shared styles (used by both prefixes)
   ============================================================ */

.dcx-header-pro__mega-bg,
.dcx-header-sticky-pro__mega-bg {
    width: 100%;
    background: #fff;
    border-top: 1px solid rgba(15, 23, 43, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 43, 0.10);
}

.dcx-header-pro__mega-inner,
.dcx-header-sticky-pro__mega-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 20px 30px;
}

.dcx-header-pro__mega-grid,
.dcx-header-sticky-pro__mega-grid {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 0;
}

.dcx-header-pro__mega-left,
.dcx-header-sticky-pro__mega-left {
    padding-right: 28px;
}

.dcx-header-pro__mega-items,
.dcx-header-sticky-pro__mega-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    margin-bottom: 18px;
}

.dcx-header-pro__mega-card,
.dcx-header-sticky-pro__mega-card {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 14px;
    border-radius: 18px;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease;
}

.dcx-header-pro__mega-card:hover,
.dcx-header-sticky-pro__mega-card:hover {
    background: rgba(237, 26, 59, 0.05);
    transform: translateY(-1px);
}

.dcx-header-pro__mega-icon,
.dcx-header-sticky-pro__mega-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ed1a3b;
}

.dcx-header-pro__mega-icon svg,
.dcx-header-sticky-pro__mega-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.dcx-header-pro__mega-title,
.dcx-header-sticky-pro__mega-title {
    color: #111827;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 6px;
}

.dcx-header-pro__mega-desc,
.dcx-header-sticky-pro__mega-desc {
    color: #62748e;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.dcx-header-pro__mega-band,
.dcx-header-sticky-pro__mega-band {
    border-radius: 22px;
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(237, 26, 59, 0.10) 0%, rgba(177, 13, 40, 0.06) 100%);
}

.dcx-header-pro__mega-band-eyebrow,
.dcx-header-sticky-pro__mega-band-eyebrow {
    color: #ed1a3b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.dcx-header-pro__mega-band-title,
.dcx-header-sticky-pro__mega-band-title {
    color: #0f172b;
    font-size: 24px;
    line-height: 1.14;
    font-weight: 800;
    margin-bottom: 10px;
}

.dcx-header-pro__mega-band-text,
.dcx-header-sticky-pro__mega-band-text {
    color: #45556c;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.dcx-header-pro__mega-right,
.dcx-header-sticky-pro__mega-right {
    border-left: 1px solid rgba(15, 23, 43, 0.08);
    padding-left: 28px;
    display: flex;
    align-items: stretch;
}

.dcx-header-pro__testimonial,
.dcx-header-sticky-pro__testimonial {
    width: 100%;
    border-radius: 24px;
    padding: 24px;
    background: #fff;
}

.dcx-header-pro__testimonial-label,
.dcx-header-sticky-pro__testimonial-label {
    color: #1d293d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.dcx-header-pro__testimonial-brand,
.dcx-header-sticky-pro__testimonial-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
}

.dcx-header-pro__testimonial-brand img,
.dcx-header-sticky-pro__testimonial-brand img {
    max-width: 150px;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.dcx-header-pro__stars,
.dcx-header-sticky-pro__stars {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.dcx-header-pro__stars span,
.dcx-header-sticky-pro__stars span {
    width: 18px;
    height: 18px;
    display: inline-block;
    background: linear-gradient(88deg, #b10d28 0.47%, #ed1a3b 98.23%);
    clip-path: polygon(50% 0%, 63% 38%, 100% 38%, 70% 59%, 82% 100%, 50% 74%, 18% 100%, 30% 59%, 0% 38%, 37% 38%);
}

.dcx-header-pro__testimonial-text,
.dcx-header-sticky-pro__testimonial-text {
    color: #45556c;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
    margin: 0 0 10px;
}

.dcx-header-pro__testimonial-text strong,
.dcx-header-sticky-pro__testimonial-text strong {
    color: #1d293d;
    font-weight: 700;
}

.dcx-header-pro__testimonial-author,
.dcx-header-sticky-pro__testimonial-author {
    color: #1d293d;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}



/* ============================================================
   Mobile header
   ============================================================ */
.dcx-mobile-header,
.dcx-mobile-header * {
    box-sizing: border-box;
}

.dcx-mobile-header {
    --dcx-text-dark: #1d293d;
    --dcx-text-muted: #62748e;
    --dcx-red-1: #b10d28;
    --dcx-red-2: #ed1a3b;
    --dcx-border: rgba(15, 23, 43, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    display: none;
    font-family: Plus Jakarta Sans, sans-serif;
}

.dcx-mobile-header__bar { position: relative; }
.dcx-mobile-header__bg {
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.22s ease, box-shadow 0.22s ease;
}
.dcx-mobile-header__inner {
    position: relative;
    z-index: 2;
    min-height: 78px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}
.dcx-mobile-header__logo { line-height: 0; text-decoration: none; }
.dcx-mobile-header__logo-stack {
    position: relative;
    display: block;
    width: 116px;
    height: 40px;
}
.dcx-mobile-header__logo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    transition: opacity 0.2s ease;
}
.dcx-mobile-header__logo-img--red { opacity: 0; }
.dcx-mobile-header__toggle {
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.dcx-mobile-header__burger {
    position: relative;
    width: 22px;
    height: 16px;
}
.dcx-mobile-header__burger span {
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.22s ease, opacity 0.22s ease, background 0.22s ease;
}
.dcx-mobile-header__burger span:nth-child(1) { top: 0; }
.dcx-mobile-header__burger span:nth-child(2) { top: 7px; }
.dcx-mobile-header__burger span:nth-child(3) { top: 14px; }
.dcx-mobile-header.is-scrolled .dcx-mobile-header__bg,
.dcx-mobile-header.is-open .dcx-mobile-header__bg {
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 43, 0.06);
}
.dcx-mobile-header.is-scrolled .dcx-mobile-header__logo-img--white,
.dcx-mobile-header.is-open .dcx-mobile-header__logo-img--white { opacity: 0; }
.dcx-mobile-header.is-scrolled .dcx-mobile-header__logo-img--red,
.dcx-mobile-header.is-open .dcx-mobile-header__logo-img--red { opacity: 1; }
.dcx-mobile-header.is-scrolled .dcx-mobile-header__burger span,
.dcx-mobile-header.is-open .dcx-mobile-header__burger span { background: #1d293d; }
.dcx-mobile-header.is-open .dcx-mobile-header__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.dcx-mobile-header.is-open .dcx-mobile-header__burger span:nth-child(2) { opacity: 0; }
.dcx-mobile-header.is-open .dcx-mobile-header__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.dcx-mobile-header__overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 43, 0.38);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}
.dcx-mobile-header__panel {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    border-top: 1px solid var(--dcx-border);
    box-shadow: 0 20px 50px rgba(15, 23, 43, 0.10);
}
.dcx-mobile-header.is-open,
.dcx-mobile-header.is-open .dcx-mobile-header__bar,
.dcx-mobile-header.is-open .dcx-mobile-header__inner,
.dcx-mobile-header.is-open .dcx-mobile-header__bg {
    background: #fff;
}

.dcx-mobile-header.is-open .dcx-mobile-header__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.dcx-mobile-header.is-open .dcx-mobile-header__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.dcx-mobile-header__nav { padding: 14px 16px 18px; }
.dcx-mobile-header__menu { list-style: none; margin: 0; padding: 0; }
.dcx-mobile-header__item { border-bottom: 1px solid rgba(15, 23, 43, 0.06); }
.dcx-mobile-header__link,
.dcx-mobile-header__accordion-toggle {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1d293d !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    text-align: left;
    box-shadow: none !important;
}
.dcx-mobile-header__link span,
.dcx-mobile-header__accordion-toggle span { color: #1d293d !important; }
.dcx-mobile-header__accordion-toggle svg {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}
.dcx-mobile-header__item.is-open .dcx-mobile-header__accordion-toggle svg {
    transform: rotate(180deg);
}
.dcx-mobile-header__submenu { display: none; padding: 0 0 12px; }
.dcx-mobile-header__item.is-open .dcx-mobile-header__submenu { display: block; }
.dcx-mobile-header__subcard {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    margin-left: 0 !important;
}
.dcx-mobile-header__subtitle {
    color: #111827 !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 4px;
}
.dcx-mobile-header__subdesc {
    color: #62748e !important;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
}
.dcx-mobile-header__footer {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dcx-mobile-header__lang,
.dcx-mobile-header__login {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    text-decoration: none;
    color: #1d293d !important;
    font-size: 15px;
    font-weight: 700;
}
.dcx-mobile-header__lang img {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
}
.dcx-mobile-header__login svg {
    width: 22px;
    height: 22px;
    fill: #1d293d;
    flex: 0 0 auto;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1180px) {
    .dcx-header-pro__inner,
    .dcx-header-sticky-pro__inner {
        column-gap: 16px;
    }

    .dcx-header-pro__menu,
    .dcx-header-sticky-pro__menu {
        gap: 12px;
    }

    .dcx-header-pro__link,
    .dcx-header-sticky-pro__link {
        font-size: 14px;
    }

    .dcx-header-pro__mega-grid,
    .dcx-header-sticky-pro__mega-grid {
        grid-template-columns: 1fr;
    }

    .dcx-header-pro__mega-right,
    .dcx-header-sticky-pro__mega-right {
        border-left: 0;
        border-top: 1px solid rgba(15, 23, 43, 0.08);
        padding-left: 0;
        padding-top: 28px;
        margin-top: 28px;
    }
}

@media (max-width: 1120px) {
    .dcx-header-pro,
    .dcx-header-sticky-pro {
        display: none;
    }
}

@media (max-width: 1120px) {
    .dcx-mobile-header { display: block; }
}
