﻿:root {
    --blue: #264EFF;
    --blue-light: #4A6EFF;
    --blue-dark: #1A3DD9;
    --orange: #F7A722;
    --white: #FFFFFF;
    --black: #000000;
    --ink: #0E1320;
    --muted: #6B7280;
    --bg: #F3F4FB;
    --bg-light: #FAFBFF;
    --surface: #FFFFFF;
    --line: #E5E7F0;
    --line-light: #F0F2F5;
    --error: #EF4444;
    --font: "Plus Jakarta Sans", system-ui, sans-serif;
    --wrap: 1240px;
    --header-h: 64px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 999px;
    --shadow-xs: 0 1px 3px rgba(15,23,42,.05);
    --shadow-sm: 0 4px 12px rgba(15,23,42,.08);
    --shadow: 0 8px 24px rgba(15,23,42,.12);
    --shadow-lg: 0 20px 48px rgba(15,23,42,.16);
    --shadow-xl: 0 24px 64px rgba(15,23,42,.2);
    --shadow-blue: 0 8px 24px rgba(38,78,255,.22);
    --focus: 0 0 0 3px rgba(38,78,255,.14);
    --t: all .25s cubic-bezier(.4,0,.2,1);
    --t-fast: all .15s cubic-bezier(.4,0,.2,1);
}
@media(max-width:640px) {
    :root {
        --header-h: 52px;
    }
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font);
    background: #fff;
    color: var(--ink);
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    font-family: var(--font);
    cursor: pointer;
}
img {
    max-width: 100%;
    display: block;
}
.ent-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-xs);
    transition: var(--t);
}
    .ent-header.scrolled {
        background: rgba(255,255,255,.98);
        box-shadow: var(--shadow-sm);
    }
.ent-header-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: var(--header-h);
}
.ent-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    transition: var(--t);
}
    .ent-brand:hover {
        opacity: .88;
        transform: translateY(-1px);
    }
    .ent-brand img {
        height: 34px;
        width: auto;
    }
.ent-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}
    .ent-nav > a,
    .ent-nav .ent-dd-trigger {
        padding: 8px 13px;
        border-radius: var(--radius-sm);
        font-size: 13.5px;
        font-weight: 600;
        color: var(--ink);
        white-space: nowrap;
        border: none;
        background: none;
        position: relative;
        cursor: pointer;
        transition: var(--t);
    }
        .ent-nav > a:hover, .ent-nav .ent-dd-trigger:hover {
            color: var(--blue);
        }
        .ent-nav > a::after, .ent-nav .ent-dd-trigger::after {
            content: "";
            position: absolute;
            left: 13px;
            right: 13px;
            bottom: 3px;
            height: 2px;
            background: var(--blue);
            border-radius: 2px;
            transform: scaleX(0);
            transition: var(--t);
        }
        .ent-nav > a:hover::after, .ent-nav > a.active::after,
        .ent-nav .ent-dd.open .ent-dd-trigger::after {
            transform: scaleX(1);
        }
        .ent-nav > a.active, .ent-nav .ent-dd.open .ent-dd-trigger {
            color: var(--blue);
            font-weight: 700;
        }
.ent-dd {
    position: relative;
}
    .ent-dd::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 14px;
        z-index: 999;
    }
.ent-dd-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
    .ent-dd-trigger svg {
        transition: transform var(--t-fast);
    }
.ent-dd.open .ent-dd-trigger svg {
    transform: rotate(180deg);
}
.ent-dd-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    display: none;
    z-index: 1001;
    max-height: min(60vh,400px);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.ent-dd.open .ent-dd-panel {
    display: block;
}
.ent-dd-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
}
    .ent-dd-panel a:hover {
        background: var(--bg-light);
        color: var(--blue);
    }
.ent-svc-dd {
    position: relative;
}
    .ent-svc-dd::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 14px;
        z-index: 999;
    }
.ent-svc-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: min(480px, calc(100vw - 40px));
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 1001;
    overflow: hidden;
    flex-direction: column;
}
.ent-svc-dd.open .ent-svc-panel {
    display: flex;
}
.ent-svc-search-wrap {
    padding: 10px 12px 8px;
    border-bottom: 1px solid var(--line-light);
    background: var(--bg-light);
    flex-shrink: 0;
}
.ent-svc-search {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 9px 12px 9px 34px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    color: var(--ink);
    outline: none;
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236B7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E") no-repeat 10px center;
}
    .ent-svc-search:focus {
        border-color: var(--blue);
        box-shadow: var(--focus);
    }
.ent-svc-scroll {
    max-height: min(400px, 55vh);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px 10px;
}
.ent-svc-group {
    padding-bottom: 6px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--line-light);
}
    .ent-svc-group:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    .ent-svc-group.hidden {
        display: none !important;
    }
.ent-svc-group-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--muted);
    padding: 6px 8px 4px;
}
.ent-svc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    transition: var(--t);
}
    .ent-svc-item:hover {
        background: var(--bg-light);
        color: var(--blue);
    }
    .ent-svc-item.hidden {
        display: none !important;
    }
.ent-svc-empty {
    display: none;
    padding: 20px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
}
.ent-svc-footer {
    flex-shrink: 0;
    padding: 10px 12px;
    border-top: 1px solid var(--line-light);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
    .ent-svc-footer a {
        font-size: 13.5px;
        font-weight: 700;
        color: var(--blue);
    }
        .ent-svc-footer a:hover {
            text-decoration: underline;
        }
        .ent-svc-footer a.sec {
            color: var(--muted);
            font-weight: 600;
        }
.ent-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.ent-country {
    position: relative;
}
.ent-country-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--white);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    transition: var(--t);
}
    .ent-country-btn:hover {
        border-color: var(--blue);
        background: var(--bg-light);
    }
.ent-country-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    display: none;
    z-index: 1002;
    overflow: hidden;
}
    .ent-country-panel.open {
        display: flex;
        flex-direction: column;
    }
.ent-country-search {
    padding: 10px;
    border-bottom: 1px solid var(--line-light);
    background: var(--bg-light);
}
    .ent-country-search input {
        width: 100%;
        border: 1.5px solid var(--line);
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        font-size: 13px;
        font-weight: 600;
        font-family: var(--font);
        color: var(--ink);
        background: var(--white);
        outline: none;
    }
        .ent-country-search input:focus {
            border-color: var(--blue);
            box-shadow: var(--focus);
        }
.ent-country-list {
    max-height: 260px;
    overflow-y: auto;
    padding: 6px;
}
.ent-country-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    border: none;
    background: none;
    font-family: var(--font);
    text-align: left;
    cursor: pointer;
    transition: var(--t-fast);
}
    .ent-country-opt:hover {
        background: var(--bg-light);
        color: var(--blue);
    }
    .ent-country-opt.active {
        background: rgba(38,78,255,.1);
        color: var(--blue);
    }
    .ent-country-opt .flag {
        font-size: 18px;
        line-height: 1;
    }
    .ent-country-opt .code {
        font-size: 11px;
        font-weight: 800;
        color: var(--muted);
        margin-left: auto;
    }
.ent-btn-rfq {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    background: var(--blue);
    color: var(--white);
    font-size: 13.5px;
    font-weight: 700;
    box-shadow: var(--shadow-blue);
    transition: var(--t);
    white-space: nowrap;
}
    .ent-btn-rfq:hover {
        filter: brightness(1.08);
        transform: translateY(-2px);
    }
.ent-btn-signin {
    padding: 9px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    background: var(--white);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    transition: var(--t);
    white-space: nowrap;
}
    .ent-btn-signin:hover {
        border-color: var(--blue);
        color: var(--blue);
    }
.ent-user {
    position: relative;
}
.ent-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
    transition: var(--t);
}
    .ent-user-btn:hover {
        border-color: var(--blue);
        background: var(--bg-light);
    }
.ent-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    overflow: hidden;
}
    .ent-user-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
.ent-user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    min-width: 200px;
    display: none;
    padding: 8px;
    z-index: 1002;
}
    .ent-user-dropdown.open {
        display: block;
    }
    .ent-user-dropdown a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: var(--radius-sm);
        font-size: 13.5px;
        font-weight: 600;
        color: var(--ink);
    }
        .ent-user-dropdown a:hover {
            background: var(--bg-light);
            color: var(--blue);
        }
        .ent-user-dropdown a.danger {
            color: var(--error);
        }
.ent-mob-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--t-fast);
}
    .ent-mob-toggle:hover {
        background: rgba(38,78,255,.06);
        border-color: var(--blue);
        color: var(--blue);
    }
.ent-search-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
}
    .ent-search-modal.open {
        display: flex;
    }
.ent-search-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 90%;
    max-width: 600px;
    padding: 20px;
}
.ent-search-row {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid var(--blue);
    border-radius: var(--radius-md);
    padding: 12px 16px;
}
.ent-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: var(--font);
    color: var(--ink);
}
    .ent-search-input::placeholder {
        color: var(--muted);
    }
.ent-search-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    color: var(--muted);
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.ent-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear .35s;
}
    .ent-drawer.open {
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }
.ent-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14,19,32,.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity .3s ease;
}
.ent-drawer.open .ent-drawer-backdrop {
    opacity: 1;
}
.ent-drawer-panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(100%,400px);
    height: 100dvh;
    background: var(--surface);
    border-left: 1px solid var(--line);
    box-shadow: -12px 0 48px rgba(15,23,42,.12);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    padding-bottom: env(safe-area-inset-bottom,0);
}
.ent-drawer.open .ent-drawer-panel {
    transform: translateX(0);
}
.ent-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: max(14px,env(safe-area-inset-top)) 16px 14px;
    border-bottom: 1px solid var(--line-light);
    flex-shrink: 0;
}
.ent-drawer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -.03em;
    color: var(--blue);
}
    .ent-drawer-brand::before {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--orange);
        flex-shrink: 0;
    }
.ent-drawer-close {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    border: 1px solid var(--line);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t-fast);
}
    .ent-drawer-close:hover {
        border-color: var(--blue);
        color: var(--blue);
    }
.ent-drawer-body {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 14px;
}
.ent-mob-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}
.ent-mob-item {
    display: flex;
    align-items: center;
    padding: 13px 14px;
    border-radius: var(--radius-md);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    background: var(--bg-light);
    border: 1px solid var(--line-light);
    transition: var(--t-fast);
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: var(--font);
}
    .ent-mob-item:hover, .ent-mob-item.active {
        border: 1px solid rgba(38,78,255,.25);
        background: rgba(38,78,255,.06);
        color: var(--blue);
    }
    .ent-mob-item::after {
        content: "";
        display: inline-block;
        width: 7px;
        height: 7px;
        margin-left: auto;
        border-right: 2px solid var(--muted);
        border-bottom: 2px solid var(--muted);
        transform: rotate(45deg);
        transition: transform var(--t-fast);
        flex-shrink: 0;
    }
    .ent-mob-item.expanded::after {
        transform: rotate(-135deg);
        margin-top: 4px;
        border-color: var(--blue);
    }
a.ent-mob-item::after {
    display: none;
}
.ent-mob-sub {
    display: none;
    flex-direction: column;
    gap: 4px;
    margin-top: 5px;
    padding: 0 0 4px 4px;
}
    .ent-mob-sub.open {
        display: flex;
    }
    .ent-mob-sub a {
        display: block;
        padding: 11px 13px;
        border-radius: var(--radius-sm);
        font-size: 13.5px;
        font-weight: 600;
        color: var(--ink);
        background: var(--surface);
        border: 1px solid var(--line-light);
        transition: var(--t-fast);
    }
        .ent-mob-sub a:hover {
            border-color: rgba(38,78,255,.25);
            color: var(--blue);
            background: var(--bg-light);
        }
.ent-mob-services {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.ent-mob-svc-search {
    padding: 11px;
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--bg-light);
    border-bottom: 1px solid var(--line-light);
}
    .ent-mob-svc-search input {
        width: 100%;
        border: 1.5px solid var(--line);
        border-radius: var(--radius-sm);
        padding: 10px 12px 10px 36px;
        font-size: 13.5px;
        font-weight: 600;
        font-family: var(--font);
        color: var(--ink);
        outline: none;
        background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236B7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E") no-repeat 11px center;
    }
        .ent-mob-svc-search input:focus {
            border-color: var(--blue);
            box-shadow: var(--focus);
        }
.ent-mob-svc-list {
    max-height: min(45vh,320px);
    overflow-y: auto;
    padding: 8px 10px 10px;
}
.ent-mob-svc-group {
    padding-bottom: 10px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line-light);
}
    .ent-mob-svc-group:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .ent-mob-svc-group.hidden {
        display: none;
    }
.ent-mob-svc-group-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--muted);
    padding: 4px 6px 6px;
}
.ent-mob-svc-link {
    display: block;
    padding: 9px 10px;
    margin-bottom: 3px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink);
    background: var(--bg-light);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--t-fast);
}
    .ent-mob-svc-link:hover {
        border-color: rgba(38,78,255,.2);
        color: var(--blue);
        background: rgba(38,78,255,.05);
    }
    .ent-mob-svc-link.hidden {
        display: none !important;
    }
.ent-mob-svc-empty {
    display: none;
    padding: 18px 10px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
}
.ent-mob-svc-footer {
    padding: 10px 11px 12px;
    border-top: 1px solid var(--line-light);
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ent-mob-cta {
    display: block;
    padding: 12px 14px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    background: var(--blue);
    color: var(--white);
    transition: var(--t);
}
    .ent-mob-cta:hover {
        filter: brightness(1.08);
    }
    .ent-mob-cta.sec {
        background: var(--white);
        color: var(--blue);
        border: 1.5px solid var(--blue);
    }
.ent-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    margin-top: 4px;
    border-top: 1px solid var(--line-light);
}
.ent-drawer-foot {
    padding: 14px 16px max(14px,env(safe-area-inset-bottom));
    border-top: 1px solid var(--line-light);
    background: var(--bg-light);
    flex-shrink: 0;
}
.ent-drawer-country-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    color: var(--ink);
    font-weight: 700;
    font-size: 13.5px;
    box-shadow: var(--shadow-xs);
    transition: var(--t-fast);
    cursor: pointer;
    font-family: var(--font);
}
    .ent-drawer-country-btn:hover {
        border-color: var(--blue);
    }
    .ent-drawer-country-btn svg {
        margin-left: auto;
        color: var(--muted);
        flex-shrink: 0;
    }
.ent-flag-lg {
    font-size: 20px;
    line-height: 1;
}
.ent-country-sheet {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 10001;
    max-height: min(72vh,500px);
    background: var(--surface);
    color: var(--ink);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border: 1px solid var(--line);
    border-bottom: none;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    padding-bottom: env(safe-area-inset-bottom,0);
}
    .ent-country-sheet.open {
        transform: translateY(0);
    }
.ent-country-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--line-light);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.02em;
}
.ent-country-sheet-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--t-fast);
}
    .ent-country-sheet-close:hover {
        border-color: var(--blue);
        color: var(--blue);
    }
.ent-country-sheet-search {
    padding: 12px 16px;
}
    .ent-country-sheet-search input {
        width: 100%;
        border: 1.5px solid var(--line);
        border-radius: var(--radius-sm);
        padding: 11px 13px;
        font-size: 14px;
        font-weight: 600;
        font-family: var(--font);
        color: var(--ink);
        background: var(--white);
        outline: none;
    }
        .ent-country-sheet-search input:focus {
            border-color: var(--blue);
            box-shadow: var(--focus);
        }
.ent-country-sheet-list {
    flex: 1;
    overflow-y: auto;
    padding: 4px 12px 14px;
}
.ent-country-sheet-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    background: var(--bg-light);
    border: 1px solid var(--line-light);
    margin-bottom: 7px;
    cursor: pointer;
    transition: var(--t-fast);
    font-family: var(--font);
    text-align: left;
}
    .ent-country-sheet-opt:hover, .ent-country-sheet-opt.active {
        background: rgba(38,78,255,.08);
        border-color: rgba(38,78,255,.25);
        color: var(--blue);
    }
    .ent-country-sheet-opt .code {
        font-size: 11px;
        font-weight: 800;
        color: var(--muted);
        margin-left: auto;
    }
    .ent-country-sheet-opt.hidden {
        display: none !important;
    }
.ent-lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    background: none;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 7px 11px;
    transition: var(--t-fast);
    font-family: var(--font);
}
    .ent-lang:hover {
        border-color: var(--blue);
        color: var(--blue);
    }
    .ent-lang img {
        width: 22px;
        height: 22px;
        border-radius: 50%;
    }
.ent-main {
    min-height: 70vh;
}
.ent-footer {
    background: #0f172a;
    color: #fff;
    margin-top: 60px;
}
.ent-footer-wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 50px 20px;
}
.ent-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.ent-footer-title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -.01em;
}
.ent-footer-desc {
    font-size: 13px;
    line-height: 1.75;
    color: #cbd5e1;
}
.ent-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
    .ent-footer-links a {
        color: #cbd5e1;
        font-size: 13px;
        font-weight: 500;
        transition: var(--t-fast);
    }
        .ent-footer-links a:hover {
            color: #fff;
        }
.ent-nl {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}
    .ent-nl input {
        flex: 1;
        min-width: 160px;
        padding: 10px 13px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255,255,255,.15);
        background: rgba(255,255,255,.07);
        color: #fff;
        font-size: 13px;
        font-family: var(--font);
        outline: none;
    }
        .ent-nl input::placeholder {
            color: #94a3b8;
        }
        .ent-nl input:focus {
            border-color: rgba(38,78,255,.6);
        }
    .ent-nl button {
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--blue);
        color: #fff;
        border: none;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        font-family: var(--font);
        transition: var(--t-fast);
    }
        .ent-nl button:hover {
            filter: brightness(1.1);
        }
.ent-float-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: none;
}
    .ent-float-cta a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 13px 20px;
        border-radius: var(--radius-pill);
        background: var(--blue);
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        box-shadow: var(--shadow-blue);
        transition: var(--t);
    }
        .ent-float-cta a:hover {
            filter: brightness(1.08);
            transform: translateY(-2px);
        }
@media(max-width:1024px) {
    .ent-nav, .ent-country, .ent-btn-signin {
        display: none;
    }
    .ent-mob-toggle {
        display: flex;
    }
}
@media(max-width:768px) {
    .ent-header-inner {
        padding: 0 14px;
        gap: 10px;
    }
    .ent-btn-rfq .ent-rfq-label {
        display: none;
    }
    .ent-btn-rfq {
        padding: 10px 13px;
    }
    .ent-footer-grid {
        grid-template-columns: 1fr;
    }
    .ent-float-cta {
        display: block;
    }
}
@media(max-width:400px) {
    .ent-drawer-panel {
        width: 100%;
    }
    .ent-drawer-body {
        padding: 11px;
    }
}
@media(min-width:1025px) {
    .ent-float-cta {
        display: none !important;
    }
}
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
/* Global reset safety */
* {
    max-width: 100%;
    box-sizing: border-box;
}
/* Images safety */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
/* Inputs full responsive */
input, select, textarea {
    width: 100%;
    font-family: var(--font);
    font-size: 14px;
}
/* Tables fix (most common break issue) */
table {
    width: 100%;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}
/* Flex overflow fix */
.flex,
.d-flex {
    min-width: 0;
}
/* Grid safety */
.grid {
    display: grid;
    max-width: 100%;
}
/* Prevent horizontal scroll from hidden elements */
body {
    overflow-x: hidden;
}
/* Optional utility helpers (useful for pages later) */
.hide {
    display: none !important;
}
.w-100 {
    width: 100% !important;
}
.text-center {
    text-align: center !important;
}
