/* ============================================================
   LATRADE v4 — Stylesheet
   Sections:
   00. Design Tokens
   01. Reset & Base
   02. Layout Utilities
   03. Typography Helpers
   04. Buttons
   05. Animations
   06. Preloader
   07. Mobile Menu
   08. Extras Drawer
   09. Header / Nav
   10. Hero
   11. Marquee
   12. Metrics Strip
   13. Services
   14. Values
   15. Process
   16. Trailers / Fleet
   17. Gallery
   18. Lightbox
   19. Contact
   20. Partners
   21. Footer
   22. Misc
   23. Scrollbar
   24. Responsive
   25. Print
   ============================================================ */


/* ============================================================
   00. DESIGN TOKENS
   ============================================================ */
:root {
    /* Colours */
    --c-bg:       #08111e;
    --c-bg-2:     #0d1b2e;
    --c-bg-3:     #112240;
    --c-navy:     #172a46;
    --c-slate:    #1e3a5f;
    --c-muted:    #5b7fa3;
    --c-fog:      #8ca8c8;
    --c-light:    #c8daf0;
    --c-white:    #ffffff;
    --c-paper:    #f0f4f9;
    --c-paper-2:  #e4ecf5;
    --c-brand:    #0066ff;
    --c-brand-h:  #3385ff;
    --c-brand-d:  #0044bb;
    --c-accent:   #00c4ff;
    --c-green:    #22c55e;

    /* Typography */
    --ff-head: 'Barlow', sans-serif;
    --ff-body: 'Inter', sans-serif;

    /* Layout */
    --nav-h:     72px;
    --container: 1280px;
    --radius:    8px;
    --radius-lg: 16px;

    /* Easing */
    --ease:     cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);

    /* Shadows */
    --shadow:    0 4px 24px rgba(0,0,0,.2);
    --shadow-lg: 0 16px 56px rgba(0,0,0,.35);
}


/* ============================================================
   01. RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--ff-body);
    background: var(--c-bg);
    color: var(--c-white);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

em      { font-style: normal; color: var(--c-brand); }
address { font-style: normal; }


/* ============================================================
   02. LAYOUT UTILITIES
   ============================================================ */
.nx-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 48px;
}


/* ============================================================
   03. TYPOGRAPHY HELPERS
   ============================================================ */
.nx-heading {
    font-family: var(--ff-head);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--c-bg);
    margin-bottom: 20px;
}
.nx-heading--light     { color: var(--c-white); }
.nx-heading em         { color: var(--c-brand); }
.nx-heading--light em  { color: var(--c-accent); }

.nx-tag {
    display: inline-flex;
    align-items: center;
    font-family: var(--ff-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-brand);
    background: rgba(0,102,255,.1);
    border: 1px solid rgba(0,102,255,.25);
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 16px;
}
.nx-tag--light {
    color: var(--c-accent);
    background: rgba(0,196,255,.1);
    border-color: rgba(0,196,255,.25);
}

.nx-section-hd {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}
.nx-section-hd--left {
    text-align: left;
    margin-left: 0;
}
.nx-section-hd__sub {
    color: var(--c-muted);
    font-size: 1rem;
    margin-top: 10px;
    line-height: 1.7;
}


/* ============================================================
   04. BUTTONS
   ============================================================ */
.nx-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-head);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.22s var(--ease);
    white-space: nowrap;
    line-height: 1;
}
.nx-btn:focus-visible {
    outline: 3px solid var(--c-brand);
    outline-offset: 3px;
}
.nx-btn svg {
    flex-shrink: 0;
    transition: transform 0.18s var(--ease);
}
.nx-btn:hover svg { transform: translateX(3px); }

.nx-btn--primary {
    background: var(--c-brand);
    color: #fff;
    border-color: var(--c-brand);
}
.nx-btn--primary:hover {
    background: var(--c-brand-h);
    border-color: var(--c-brand-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,102,255,.4);
    color: #fff;
}

.nx-btn--outline {
    background: transparent;
    color: rgba(255,255,255,.8);
    border-color: rgba(255,255,255,.25);
}
.nx-btn--outline:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
    background: rgba(0,196,255,.06);
}

.nx-btn--white {
    background: #fff;
    color: var(--c-bg);
    border-color: #fff;
}
.nx-btn--white:hover {
    background: var(--c-light);
    border-color: var(--c-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    color: var(--c-bg);
}

.nx-btn--lg   { padding: 15px 34px; font-size: 0.9rem; }
.nx-btn--full { width: 100%; justify-content: center; }


/* ============================================================
   05. ANIMATIONS
   ============================================================ */
.nx-anim {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.nx-anim--visible {
    opacity: 1;
    transform: none;
}

.nx-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.nx-revealed {
    opacity: 1;
    transform: none;
}

.sx-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.sx-revealed {
    opacity: 1;
    transform: none;
}

@keyframes nx-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
    50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

@keyframes nx-load {
    from { width: 0; }
    to   { width: 100%; }
}

@keyframes nx-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes nx-scroll-line {
    0%, 100% { transform: scaleY(1);   opacity: 1;   }
    50%       { transform: scaleY(0.5); opacity: 0.3; }
}

@keyframes nx-modal-bg-in  { from { background: rgba(0,0,0,0) !important; } to { background: rgba(0,0,0,.85) !important; } }
@keyframes nx-modal-bg-out { from { background: rgba(0,0,0,.85) !important; } to { background: rgba(0,0,0,0) !important; } }
@keyframes nx-modal-box-in  { from { opacity: 0; transform: scale(.94) translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes nx-modal-box-out { from { opacity: 1; transform: scale(1) translateY(0); } to { opacity: 0; transform: scale(.94) translateY(20px); } }

@keyframes sx-orb-drift {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(30px,20px) scale(1.08); }
}

@keyframes mob-overlay-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}


/* ============================================================
   06. PRELOADER
   ============================================================ */
.nx-preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--c-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.55s var(--ease), visibility 0.55s;
}
.nx-preloader__inner { text-align: center; }

.nx-preloader__logo-img {
    height: 42px;
    width: auto;
    margin: 0 auto 24px;
    opacity: 0.9;
}
.nx-preloader__logo {
    font-family: var(--ff-head);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: #fff;
    margin-bottom: 24px;
}
.nx-preloader__bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,.08);
    border-radius: 99px;
    overflow: hidden;
    margin: 0 auto 16px;
}
.nx-preloader__fill {
    height: 100%;
    background: var(--c-brand);
    border-radius: 99px;
    animation: nx-load 1s var(--ease) forwards;
}
.nx-preloader__sub {
    font-family: var(--ff-head);
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--c-muted);
}


/* ============================================================
   07. MOBILE MENU
   ============================================================ */
.mob-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 5998;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.mob-menu-overlay--show {
    display: block;
    animation: mob-overlay-in 0.4s var(--ease) forwards;
}

.mob-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(400px, 100vw);
    height: 100%;
    background: var(--c-bg-2);
    border-left: 1px solid rgba(255,255,255,.07);
    z-index: 5999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.48s cubic-bezier(0.77,0,.175,1);
    overflow-y: auto;
}
.mob-menu--open { transform: translateX(0); }

.mob-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    flex-shrink: 0;
}
.mob-menu__brand img { height: 30px; width: auto; }

.mob-menu__close {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}
.mob-menu__close:hover {
    background: var(--c-brand);
    border-color: var(--c-brand);
}
.mob-menu__close span {
    position: absolute;
    display: block;
    width: 18px;
    height: 2px;
    background: rgba(255,255,255,.8);
    border-radius: 2px;
}
.mob-menu__close span:nth-child(1) { transform: rotate(45deg); }
.mob-menu__close span:nth-child(2) { transform: rotate(-45deg); }

.mob-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    flex: 1;
}
.mob-menu__link {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--ff-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255,255,255,.55);
    padding: 14px 28px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    letter-spacing: -0.01em;
    transition: color 0.25s, padding-left 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
}
.mob-menu__link::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--c-brand);
    transform: scaleY(0);
    transition: transform 0.25s var(--ease);
    transform-origin: bottom;
}
.mob-menu__link:hover {
    color: #fff;
    padding-left: 36px;
    background: rgba(255,255,255,.03);
}
.mob-menu__link:hover::before { transform: scaleY(1); }

.mob-menu__num {
    font-family: var(--ff-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--c-brand);
    opacity: 0.6;
    min-width: 24px;
}

.mob-menu__footer {
    padding: 24px 28px;
    border-top: 1px solid rgba(255,255,255,.06);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mob-menu__lang {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-fog);
}
.mob-menu__lang img   { height: 22px; border-radius: 2px; }
.mob-menu__cta .nx-btn { width: 100%; justify-content: center; }


/* ============================================================
   08. EXTRAS DRAWER
   ============================================================ */
.nx-drawer {
    position: fixed;
    top: 0; right: 0;
    height: 100%;
    width: 0;
    max-width: 360px;
    background: var(--c-bg-2);
    border-left: 1px solid rgba(255,255,255,.06);
    z-index: 9000;
    overflow: hidden;
    transition: width 0.45s cubic-bezier(0.77,0,.175,1);
}
.nx-drawer--open { width: min(360px, 90vw); }

.nx-drawer__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 8999;
}
.nx-drawer__overlay--show { display: block; }

.nx-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 28px 24px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    min-width: 340px;
}
.nx-drawer__logo { height: 32px; width: auto; }

.nx-drawer__close {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--c-fog);
    transition: background 0.2s, color 0.2s;
}
.nx-drawer__close:hover {
    background: var(--c-brand);
    color: #fff;
    border-color: var(--c-brand);
}

.nx-drawer__nav {
    display: flex;
    flex-direction: column;
    padding: 24px 28px;
    gap: 2px;
}
.nx-drawer__link {
    font-family: var(--ff-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-fog);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.2s;
}
.nx-drawer__link:hover  { color: #fff; }
.nx-drawer__link--lang img { height: 22px; border-radius: 2px; }

.nx-drawer__footer {
    padding: 24px 28px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.nx-drawer__footer-label {
    font-family: var(--ff-head);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-brand);
    margin-bottom: 12px;
}
.nx-drawer__footer p,
.nx-drawer__footer address p {
    font-size: 0.84rem;
    color: var(--c-muted);
    margin-bottom: 4px;
}
.nx-drawer__footer a { color: var(--c-fog); }

.nx-drawer__ids {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
}
.nx-drawer__ids span   { font-size: 0.78rem; color: var(--c-muted); }
.nx-drawer__ids strong { color: var(--c-fog); margin-left: 4px; }


/* ============================================================
   09. HEADER / NAV
   ============================================================ */
.nx-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 500;
    transition: background 0.3s var(--ease), border-color 0.3s, height 0.3s;
    border-bottom: 1px solid transparent;
}
.nx-nav--scrolled {
    background: rgba(8,17,30,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(255,255,255,.07);
    box-shadow: 0 2px 24px rgba(0,0,0,.4);
    height: 62px;
}

.nx-nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nx-nav__logo  { height: 38px; width: auto; display: block; }

.nx-nav__links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
}
.nx-nav__link {
    font-family: var(--ff-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.52);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
    position: relative;
}
.nx-nav__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--c-brand);
    border-radius: 2px;
    transition: transform 0.25s var(--ease);
}
.nx-nav__link:hover,
.nx-nav__link.active { color: #fff; }
.nx-nav__link:hover::after,
.nx-nav__link.active::after { transform: translateX(-50%) scaleX(1); }

.nx-nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Burger */
.nx-nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;
}
.nx-nav__burger:hover { background: rgba(255,255,255,.1); }
.nx-nav__burger span {
    display: block;
    width: 22px; height: 2px;
    background: rgba(255,255,255,.8);
    border-radius: 2px;
    transition: transform 0.35s var(--ease), opacity 0.35s, width 0.35s;
    transform-origin: center;
}
.nx-burger--open .nx-nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nx-burger--open .nx-nav__burger span:nth-child(2) { opacity: 0; width: 0; }
.nx-burger--open .nx-nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   10. HERO
   ============================================================ */
.nx-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.nx-hero__map {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--c-bg);
}
.nx-hero__veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to right, rgba(8,17,30,.97) 0%, rgba(8,17,30,.88) 50%, rgba(8,17,30,.75) 100%);
}
.nx-hero__body {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    flex: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: calc(var(--nav-h) + 80px) 48px 80px;
    width: 100%;
}

.nx-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-accent);
    background: rgba(0,196,255,.08);
    border: 1px solid rgba(0,196,255,.2);
    padding: 7px 16px;
    border-radius: 99px;
    margin-bottom: 28px;
}
.nx-hero__badge-dot {
    width: 6px; height: 6px;
    background: var(--c-green);
    border-radius: 50%;
    animation: nx-pulse 2s ease-in-out infinite;
}

.nx-hero__headline {
    font-family: var(--ff-head);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 28px;
}
.nx-hero__hl  { color: var(--c-accent); }

.nx-hero__desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,.55);
    max-width: 520px;
    margin-bottom: 40px;
}
.nx-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* KPI grid */
.nx-kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}
.nx-kpi {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    transition: border-color 0.3s, background 0.3s;
}
.nx-kpi:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(0,102,255,.3);
}
.nx-kpi--accent {
    background: rgba(0,102,255,.12);
    border-color: rgba(0,102,255,.25);
}
.nx-kpi__val {
    display: block;
    font-family: var(--ff-head);
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}
.nx-kpi--accent .nx-kpi__val { color: var(--c-accent); }
.nx-kpi__lbl {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-muted);
}

.nx-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--c-fog);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 99px;
    padding: 10px 18px;
}

.nx-hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-head);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-muted);
}
.nx-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--c-brand), transparent);
    animation: nx-scroll-line 2s ease-in-out infinite;
}


/* ============================================================
   11. MARQUEE
   ============================================================ */
.nx-marquee {
    background: var(--c-brand);
    overflow: hidden;
    padding: 11px 0;
    position: relative;
    z-index: 6;
}
.nx-marquee__track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: nx-marquee 30s linear infinite;
}
.nx-marquee__track span {
    font-family: var(--ff-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    padding: 0 20px;
    flex-shrink: 0;
}
.nx-marquee__dot {
    opacity: 0.4;
    font-size: 0.5rem !important;
    padding: 0 4px !important;
}


/* ============================================================
   12. METRICS STRIP
   ============================================================ */
.nx-metrics {
    background: var(--c-paper);
    padding: 60px 0;
    border-bottom: 1px solid var(--c-paper-2);
}
.nx-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2px;
}
.nx-metric {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: #fff;
    border-right: 1px solid var(--c-paper-2);
    transition: background 0.25s;
}
.nx-metric:last-child { border-right: none; }
.nx-metric:hover      { background: var(--c-paper-2); }
.nx-metric__icon      { font-size: 1.6rem; flex-shrink: 0; }
.nx-metric strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--c-bg);
    margin-bottom: 3px;
}
.nx-metric p {
    font-size: 0.78rem;
    color: #6b7f96;
    margin: 0;
    line-height: 1.4;
}


/* ============================================================
   13. SERVICES
   ============================================================ */
.sx-services {
    position: relative;
    background: var(--c-bg-2);
    padding: 110px 0 90px;
    overflow: hidden;
}

/* Background decorations */
.sx-services__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.sx-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
}
.sx-bg-orb--1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, #0066ff 0%, transparent 70%);
    top: -160px; left: -100px;
    animation: sx-orb-drift 14s ease-in-out infinite alternate;
}
.sx-bg-orb--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #00c4ff 0%, transparent 70%);
    bottom: -120px; right: -60px;
    animation: sx-orb-drift 18s ease-in-out infinite alternate-reverse;
}
.sx-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.6) 20%, rgba(0,0,0,.6) 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.6) 20%, rgba(0,0,0,.6) 80%, transparent 100%);
}
.sx-services .nx-container { position: relative; z-index: 1; }

/* Section header */
.sx-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 64px;
}
.sx-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ff-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 20px;
}
.sx-eyebrow__line {
    display: block;
    width: 32px; height: 2px;
    background: var(--c-accent);
    border-radius: 2px;
    flex-shrink: 0;
}
.sx-title {
    font-family: var(--ff-head);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0;
}
.sx-title__accent {
    color: var(--c-accent);
    position: relative;
    display: inline-block;
}
.sx-title__accent::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--c-brand), var(--c-accent));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.4,0,.2,1) 0.4s;
}
.sx-header.sx-revealed .sx-title__accent::after { transform: scaleX(1); }

.sx-header__desc {
    font-size: 0.97rem;
    line-height: 1.78;
    color: var(--c-muted);
    margin-bottom: 24px;
    max-width: 440px;
}
.sx-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-head);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-accent);
    transition: gap 0.2s, opacity 0.2s;
}
.sx-btn-link:hover { gap: 12px; opacity: 0.8; }
.sx-btn-link svg   { flex-shrink: 0; }

/* Cards grid */
.sx-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 48px;
}

/* Card */
.sx-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: default;
    transition: transform 0.4s var(--ease);
}
.sx-card:hover { transform: translateY(-8px); }

.sx-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px 28px 24px;
    background: var(--c-bg-3);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    position: relative;
    z-index: 1;
    transition: border-color 0.4s, background 0.4s;
}
.sx-card:hover .sx-card__inner {
    border-color: rgba(0,102,255,.35);
    background: linear-gradient(160deg,#112240 0%,#0d1e3a 100%);
}

.sx-card__border-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    opacity: 0;
    background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(0,102,255,.4) 60deg, rgba(0,196,255,.5) 120deg, transparent 180deg, transparent 360deg);
    z-index: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    padding: 1px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.sx-card:hover .sx-card__border-glow { opacity: 1; }

/* Card icon */
.sx-card__icon-wrap {
    position: relative;
    width: 64px; height: 64px;
    margin-bottom: 24px;
    flex-shrink: 0;
}
.sx-card__icon {
    width: 64px; height: 64px;
    background: rgba(0,102,255,.1);
    border: 1px solid rgba(0,102,255,.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    position: relative;
    z-index: 1;
    transition: background 0.35s, border-color 0.35s, transform 0.35s;
}
.sx-card:hover .sx-card__icon {
    background: rgba(0,102,255,.2);
    border-color: rgba(0,102,255,.45);
    transform: scale(1.05);
}
.sx-card__icon svg {
    width: 100%; height: 100%;
    color: var(--c-accent);
    transition: color 0.3s;
}
.sx-card:hover .sx-card__icon svg { color: #fff; }

.sx-card__glow {
    position: absolute;
    width: 80px; height: 80px;
    top: -8px; left: -8px;
    background: radial-gradient(circle, rgba(0,102,255,.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.45s;
    pointer-events: none;
}
.sx-card__glow--cold  { background: radial-gradient(circle, rgba(96,208,255,.35) 0%, transparent 70%); }
.sx-card__glow--fast  { background: radial-gradient(circle, rgba(250,200,50,.3) 0%, transparent 70%); }
.sx-card__glow--radar { background: radial-gradient(circle, rgba(0,196,100,.3) 0%, transparent 70%); }
.sx-card:hover .sx-card__glow { opacity: 1; }

/* Card content */
.sx-card__num {
    font-family: var(--ff-head);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--c-brand);
    opacity: 0.65;
    display: block;
    margin-bottom: 8px;
}
.sx-card__title {
    font-family: var(--ff-head);
    font-size: 1.18rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 12px;
}
.sx-card__desc {
    font-size: 0.86rem;
    line-height: 1.72;
    color: var(--c-muted);
    margin-bottom: 18px;
    flex-shrink: 0;
}
.sx-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sx-card__features li {
    font-size: 0.8rem;
    color: var(--c-fog);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}
.sx-card__features li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--c-brand);
    transition: background 0.3s;
}
.sx-card:hover .sx-card__features li::before { background: var(--c-accent); }

/* Card footer */
.sx-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.05);
    transition: border-color 0.35s;
}
.sx-card:hover .sx-card__footer { border-color: rgba(0,102,255,.2); }

.sx-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-head);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-brand);
    transition: gap 0.2s, color 0.2s;
}
.sx-card__cta:hover { gap: 10px; color: var(--c-accent); }
.sx-card__cta svg   { flex-shrink: 0; }

.sx-card__arrow-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(0,102,255,.08);
    border: 1px solid rgba(0,102,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.35);
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}
.sx-card:hover .sx-card__arrow-icon {
    background: var(--c-brand);
    border-color: var(--c-brand);
    color: #fff;
    transform: rotate(-45deg);
}

/* Bottom CTA bar */
.sx-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 36px;
    background: rgba(0,102,255,.06);
    border: 1px solid rgba(0,102,255,.18);
    border-radius: 12px;
    flex-wrap: wrap;
}
.sx-bottom__copy { display: flex; flex-direction: column; gap: 4px; }
.sx-bottom__copy strong {
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.sx-bottom__copy span { font-size: 0.86rem; color: var(--c-muted); }


/* ============================================================
   14. VALUES
   ============================================================ */
.nx-values {
    background: var(--c-paper);
    padding: 100px 0;
}
.nx-values__split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}
.nx-values__left .nx-heading    { color: var(--c-bg); }
.nx-values__left .nx-heading em { color: var(--c-brand); }
.nx-values__left p {
    color: #5a7080;
    font-size: 0.96rem;
    line-height: 1.72;
    margin-bottom: 28px;
}
.nx-values__left .nx-tag {
    color: var(--c-brand-d);
    background: rgba(0,68,187,.08);
    border-color: rgba(0,68,187,.2);
}

.nx-values__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.nx-val {
    background: #fff;
    border: 1px solid var(--c-paper-2);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.nx-val:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    transform: translateY(-4px);
    border-color: rgba(0,102,255,.2);
}
.nx-val__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.nx-val__ico { width: 36px; height: 36px; object-fit: contain; }
.nx-val__num {
    font-family: var(--ff-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--c-brand);
    opacity: 0.5;
}
.nx-val h4 {
    font-family: var(--ff-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-bg);
    margin-bottom: 10px;
}
.nx-val p { font-size: 0.84rem; color: #6b7f96; line-height: 1.65; margin: 0; }


/* ============================================================
   15. PROCESS
   ============================================================ */
.nx-process {
    background: var(--c-bg);
    padding: 100px 0;
}
.nx-process__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    margin-top: 56px;
}
.nx-step { text-align: center; padding: 0 16px; }
.nx-step__circle {
    width: 56px; height: 56px;
    background: var(--c-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.nx-step:hover .nx-step__circle {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(0,102,255,.5);
}
.nx-step h4 {
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.nx-step p { font-size: 0.84rem; color: var(--c-muted); line-height: 1.6; }
.nx-step__arrow {
    font-size: 1.5rem;
    color: var(--c-brand);
    opacity: 0.4;
    padding-top: 16px;
    align-self: center;
}


/* ============================================================
   16. TRAILERS / FLEET
   ============================================================ */
.nx-trailers {
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 100%);
    padding: 110px 0 100px;
    position: relative;
    overflow: hidden;
}
.nx-trailers::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,102,255,.12) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    opacity: 0.5;
}
.nx-trailers::after {
    content: '';
    position: absolute;
    top: -180px; left: -120px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,102,255,.1) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}
.nx-trailers .nx-container { position: relative; z-index: 1; }
.nx-trailers .nx-section-hd { margin-bottom: 64px; }

/* Block */
.trl-block {
    background: var(--c-bg-3);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
    position: relative;
    transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.trl-block:last-of-type { margin-bottom: 40px; }
.trl-block:hover {
    border-color: rgba(0,102,255,.3);
    box-shadow: 0 24px 72px rgba(0,0,0,.3), 0 0 0 1px rgba(0,102,255,.1);
}
.trl-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-brand) 0%, var(--c-accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
    z-index: 2;
}
.trl-block:hover::before { transform: scaleX(1); }

/* Mega variant */
.trl-block--mega::before { background: linear-gradient(90deg,#7c3aed 0%, var(--c-accent) 100%); }
.trl-block--mega:hover {
    border-color: rgba(124,58,237,.3);
    box-shadow: 0 24px 72px rgba(0,0,0,.3), 0 0 0 1px rgba(124,58,237,.1);
}

/* Block header */
.trl-block__header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 36px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.02);
}
.trl-block__header-icon {
    font-size: 2.4rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 12px rgba(0,102,255,.3));
    transition: transform 0.3s var(--ease);
}
.trl-block:hover .trl-block__header-icon { transform: scale(1.1) rotate(-4deg); }
.trl-block__header-copy { flex: 1; }
.trl-block__title {
    font-family: var(--ff-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 4px;
}
.trl-block__subtitle { font-size: 0.82rem; color: var(--c-muted); }

.trl-block__header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-green);
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.22);
    padding: 6px 14px;
    border-radius: 99px;
    flex-shrink: 0;
}
.trl-badge-dot {
    width: 6px; height: 6px;
    background: var(--c-green);
    border-radius: 50%;
    animation: nx-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Block body */
.trl-block__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.trl-block__body--reverse          { direction: rtl; }
.trl-block__body--reverse > *      { direction: ltr; }

/* Visual column */
.trl-block__visual {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-bg-3) 100%);
    border-right: 1px solid rgba(255,255,255,.05);
    position: relative;
    overflow: hidden;
}
.trl-block__body--reverse .trl-block__visual {
    border-right: none;
    border-left: 1px solid rgba(255,255,255,.05);
}
.trl-block__visual::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0,102,255,.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.trl-block__img-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
}
.trl-block__img {
    max-height: 140px;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.2);
    transition: transform 0.6s var(--ease), filter 0.5s;
    position: relative;
    z-index: 1;
}
.trl-block:hover .trl-block__img {
    transform: scale(1.06) translateY(-6px);
    filter: brightness(1.35) drop-shadow(0 8px 28px rgba(0,102,255,.4));
}

.trl-block__img-glow {
    position: absolute;
    width: 220px; height: 80px;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(0,102,255,.25) 0%, transparent 70%);
    filter: blur(16px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}
.trl-block__img-glow--mega { background: radial-gradient(ellipse, rgba(124,58,237,.25) 0%, transparent 70%); }
.trl-block:hover .trl-block__img-glow { opacity: 1; }

/* Highlights */
.trl-block__highlights {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    width: 100%;
}
.trl-highlight {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);
    padding: 14px 10px;
    text-align: center;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.trl-block:hover .trl-highlight {
    background: rgba(0,102,255,.07);
    border-color: rgba(0,102,255,.18);
}
.trl-block--mega:hover .trl-highlight {
    background: rgba(124,58,237,.07);
    border-color: rgba(124,58,237,.18);
}
.trl-highlight:hover { transform: translateY(-2px); }
.trl-highlight strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--c-accent);
    margin-bottom: 3px;
    line-height: 1;
}
.trl-block--mega .trl-highlight strong { color: #c4b5fd; }
.trl-highlight span {
    font-size: 0.68rem;
    color: var(--c-muted);
    letter-spacing: 0.04em;
    line-height: 1.3;
}

/* CTA in visual column */
.trl-block__cta { width: 100%; justify-content: center; }
.trl-block__cta--mega { background: #7c3aed; border-color: #7c3aed; }
.trl-block__cta--mega:hover {
    background: #6d28d9;
    border-color: #6d28d9;
    box-shadow: 0 8px 28px rgba(124,58,237,.45);
}

/* Specs column */
.trl-block__specs {
    padding: 40px 40px 40px 44px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.trl-block__desc {
    font-size: 0.9rem;
    line-height: 1.78;
    color: var(--c-muted);
    margin: 0;
}
.trl-spec-label {
    font-family: var(--ff-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-brand);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,102,255,.2);
}
.trl-block--mega .trl-spec-label {
    color: #a78bfa;
    border-color: rgba(124,58,237,.25);
}

/* Spec rows */
.trl-spec-table { display: flex; flex-direction: column; gap: 10px; }
.trl-spec-row {
    display: grid;
    grid-template-columns: 140px 1fr 60px;
    align-items: center;
    gap: 12px;
}
.trl-spec-row__key  { font-size: 0.8rem; color: var(--c-muted); white-space: nowrap; }
.trl-spec-row__bar-wrap {
    height: 6px;
    background: rgba(255,255,255,.06);
    border-radius: 99px;
    overflow: hidden;
    flex: 1;
}
.trl-spec-row__bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--c-brand) 0%, var(--c-accent) 100%);
    border-radius: 99px;
    transition: width 1.1s cubic-bezier(0.4,0,.2,1);
}
.trl-block--mega .trl-spec-row__bar { background: linear-gradient(90deg,#7c3aed 0%,#a78bfa 100%); }
.nx-revealed .trl-spec-row__bar    { width: var(--w); }
.trl-spec-row__val {
    font-family: var(--ff-head);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    text-align: right;
}

/* Cargo tags */
.trl-cargo-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.trl-cargo-tags span {
    font-family: var(--ff-head);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-fog);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    padding: 5px 12px;
    border-radius: 99px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.trl-cargo-tags span:hover {
    background: rgba(0,102,255,.1);
    border-color: rgba(0,102,255,.25);
    color: var(--c-accent);
}
.trl-block--mega .trl-cargo-tags span:hover {
    background: rgba(124,58,237,.1);
    border-color: rgba(124,58,237,.25);
    color: #c4b5fd;
}

/* Bottom CTA */
.trl-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding: 28px 40px;
    background: rgba(0,102,255,.06);
    border: 1px solid rgba(0,102,255,.18);
    border-radius: var(--radius-lg);
    margin-top: 12px;
}
.trl-footer-cta__copy { display: flex; flex-direction: column; gap: 4px; }
.trl-footer-cta__copy strong {
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.trl-footer-cta__copy span { font-size: 0.87rem; color: var(--c-muted); }


/* ============================================================
   17b. GALLERY — matches HTML class names (.gallery__*)
   ============================================================ */

.gallery {
    background: var(--c-bg);
    padding: 110px 0 90px;
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    bottom: -200px; right: -150px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,196,255,.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gallery__container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 48px;
}

/* Header */
.gallery__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 56px;
}

.gallery__header-right p {
    font-size: 0.96rem;
    line-height: 1.78;
    color: var(--c-muted);
    max-width: 420px;
}

/* Grid */
.gallery__grid {
    columns: 4;
    column-gap: 12px;
}

.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

/* Item */
.gallery__item {
    break-inside: avoid;
    margin-bottom: 12px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: var(--c-bg-3);
    box-shadow: 0 4px 24px rgba(0,0,0,.3);
    transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
    outline: none;
    display: block;
}

.gallery__item:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(0,196,255,.18);
    transform: translateY(-4px);
}

.gallery__item:focus-visible {
    box-shadow: 0 0 0 3px var(--c-brand);
}

/* Image */
.gallery__item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: unset;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.6s var(--ease);
    filter: brightness(0.88) saturate(0.95);
}

.gallery__item:hover img {
    transform: scale(1.03);
    filter: brightness(0.72) saturate(1.05);
}

/* Overlay */
.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,12,28,.88) 0%, rgba(4,12,28,.35) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    padding: 22px 20px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-tag {
    display: inline-flex;
    align-self: flex-start;
    font-family: var(--ff-head);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-accent);
    background: rgba(0,196,255,.12);
    border: 1px solid rgba(0,196,255,.25);
    padding: 3px 10px;
    border-radius: 99px;
}

.gallery__item-caption {
    font-family: var(--ff-head);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    letter-spacing: 0.02em;
    line-height: 1.35;
    margin: 0;
    transform: translateY(8px);
    transition: transform 0.4s var(--ease);
}

.gallery__item:hover .gallery__item-caption {
    transform: translateY(0);
}

/* Footer */
.gallery__footer {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}


/* ============================================================
   18b. LIGHTBOX — matches HTML class names (.lightbox__*)
   ============================================================ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9800;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}

.lightbox--open {
    pointer-events: auto;
    opacity: 1;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4,10,22,.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.lightbox__close {
    position: absolute;
    top: 20px; right: 24px;
    z-index: 10;
    width: 44px; height: 44px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255,255,255,.7);
    transition: background 0.2s, color 0.2s, transform 0.3s;
}

.lightbox__close:hover {
    background: var(--c-brand);
    border-color: var(--c-brand);
    color: #fff;
    transform: rotate(90deg);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px; height: 52px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255,255,255,.7);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.lightbox__nav:hover {
    background: var(--c-brand);
    border-color: var(--c-brand);
    color: #fff;
}

.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(2px); }

.lightbox__stage {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: min(1100px, 90vw);
    width: 100%;
}

.lightbox__img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 32px 80px rgba(0,0,0,.6);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    display: block;
}

.lightbox--transitioning .lightbox__img {
    opacity: 0;
    transform: scale(0.97);
}

.lightbox__meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lightbox__counter {
    font-family: var(--ff-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-brand);
    background: rgba(0,102,255,.12);
    border: 1px solid rgba(0,102,255,.22);
    padding: 4px 12px;
    border-radius: 99px;
    white-space: nowrap;
}

.lightbox__caption {
    font-family: var(--ff-head);
    font-size: 0.86rem;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    margin: 0;
}


/* ============================================================
   Gallery + Lightbox Responsive
   ============================================================ */

@media (max-width: 1200px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 1024px) {
    .gallery__header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    .gallery__header-right p { max-width: 100%; }
    .gallery__container { padding: 0 32px; }
}

@media (max-width: 768px) {
    .gallery { padding: 72px 0 64px; }
    .gallery__container { padding: 0 20px; }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 10px;
    }

    .gallery__item--tall { grid-row: span 1; }

    .gallery__item-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(4,12,28,.72) 0%, transparent 55%);
    }

    .gallery__item-caption { transform: none; }

    .lightbox__nav--prev { left: 10px; }
    .lightbox__nav--next { right: 10px; }
    .lightbox__nav { width: 42px; height: 42px; }
    .lightbox__meta { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
    .gallery__item--wide,
    .gallery__item--tall {
        grid-column: unset;
        grid-row: unset;
    }
}


/* ============================================================
   19. CONTACT
   ============================================================ */
.nx-contact {
    background: var(--c-bg);
    padding: 100px 0;
}
.nx-contact__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: start;
}

/* Map */
.nx-contact__map-col {
    display: flex;
    flex-direction: column;
}
.nx-contact__map {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    border-bottom: none;
}
.nx-contact__map iframe {
    display: block;
    width: 100%;
    height: 440px;
    filter: grayscale(15%) brightness(0.85);
}
.nx-contact__map-info {
    background: var(--c-bg-3);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
}
.nx-contact__info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: background 0.2s;
}
.nx-contact__info-row:last-child { border-bottom: none; }
.nx-contact__info-row:hover      { background: rgba(255,255,255,.03); }
.nx-contact__info-icon { font-size: 1.1rem; line-height: 1.5; flex-shrink: 0; }
.nx-contact__info-row div { display: flex; flex-direction: column; gap: 2px; }
.nx-contact__info-row strong {
    font-family: var(--ff-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-brand);
}
.nx-contact__info-row span,
.nx-contact__info-row a { font-size: 0.88rem; color: var(--c-fog); transition: color 0.2s; }
.nx-contact__info-row a:hover { color: var(--c-brand-h); }

/* Form */
.nx-contact__form { padding-top: 8px; }
.nx-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.nx-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.nx-form__field { display: flex; flex-direction: column; gap: 6px; }
.nx-form__field label {
    font-family: var(--ff-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-muted);
}
.nx-form__field label span { color: var(--c-brand); }

.nx-form input,
.nx-form textarea {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    color: #fff;
    font-family: var(--ff-body);
    font-size: 0.92rem;
    padding: 13px 16px;
    outline: none;
    width: 100%;
    resize: vertical;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.nx-form input::placeholder,
.nx-form textarea::placeholder { color: rgba(255,255,255,.2); }
.nx-form input:focus,
.nx-form textarea:focus {
    border-color: var(--c-brand);
    background: rgba(0,102,255,.04);
    box-shadow: 0 0 0 3px rgba(0,102,255,.12);
}

.nx-captcha-row { display: flex; gap: 12px; align-items: center; }
.nx-captcha-row input { max-width: 120px; }
.nx-captcha-img {
    border-radius: var(--radius);
    height: 44px;
    border: 1px solid rgba(255,255,255,.08);
}


/* ============================================================
   20. PARTNERS
   ============================================================ */
.nx-partners {
    background: var(--c-paper);
    padding: 80px 0;
}
.nx-partners .nx-heading    { color: var(--c-bg); }
.nx-partners .nx-heading em { color: var(--c-brand); }
.nx-partners .nx-tag {
    color: var(--c-brand-d);
    background: rgba(0,68,187,.08);
    border-color: rgba(0,68,187,.2);
}
.nx-partners .nx-section-hd__sub { color: #6b7f96; }

.nx-partners__carousel { margin-top: 48px; overflow: hidden; }
.nx-carousel__track {
    display: flex;
    width: max-content;
    animation: nx-marquee 28s linear infinite;
}
.nx-carousel__slide {
    flex: 0 0 200px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nx-carousel__slide img {
    max-width: 130px;
    height: auto;
    filter: grayscale(100%) opacity(0.3);
    transition: filter 0.3s;
}
.nx-carousel__slide img:hover { filter: grayscale(0%) opacity(0.9); }


/* ============================================================
   21. FOOTER
   ============================================================ */
.nx-footer {
    background: var(--c-bg-2);
    border-top: 1px solid rgba(255,255,255,.06);
}
.nx-footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding: 72px 0 56px;
}
.nx-footer__logo { height: 32px; width: auto; margin-bottom: 16px; }
.nx-footer__brand p {
    font-size: 0.86rem;
    color: var(--c-muted);
    max-width: 280px;
    line-height: 1.7;
}
.nx-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
}
.nx-footer__contacts a {
    font-family: var(--ff-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    transition: color 0.2s;
}
.nx-footer__contacts a:hover { color: var(--c-brand-h); }

.nx-footer__nav-cols {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
}
.nx-footer__col h5 {
    font-family: var(--ff-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-brand);
    margin-bottom: 16px;
}
.nx-footer__col a,
.nx-footer__col p,
.nx-footer__col address p {
    display: block;
    font-size: 0.84rem;
    color: var(--c-muted);
    margin-bottom: 8px;
    line-height: 1.5;
    transition: color 0.2s;
}
.nx-footer__col a:hover { color: #fff; }
.nx-footer__col strong  { color: var(--c-fog); }

.nx-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nx-footer__bottom p { font-size: 0.76rem; color: rgba(255,255,255,.22); }

.nx-footer__langs img {
    height: 22px;
    opacity: 0.45;
    border-radius: 2px;
    transition: opacity 0.2s;
}
.nx-footer__langs img:hover { opacity: 1; }


/* ============================================================
   22. MISC
   ============================================================ */
.truck-marker { pointer-events: none; }


/* ============================================================
   23. SCROLLBAR
   ============================================================ */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-slate); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-brand); }


/* ============================================================
   24. RESPONSIVE
   ============================================================ */

/* --- 1200px --- */
@media (max-width: 1200px) {
    .sx-grid          { grid-template-columns: repeat(2,1fr); }
    .nx-metrics__grid { grid-template-columns: repeat(2,1fr); }
    .nx-metric        { border-bottom: 1px solid var(--c-paper-2); }
    .nx-metric:nth-child(2)              { border-right: none; }
    .nx-metric:nth-child(3),
    .nx-metric:nth-child(4)              { border-bottom: none; }

    .nx-gallery-v2__grid {
        grid-template-columns: repeat(3,1fr);
        grid-auto-rows: 200px;
    }
}

/* --- 1024px --- */
@media (max-width: 1024px) {
    .nx-container  { padding: 0 32px; }
    .nx-nav__inner { padding: 0 24px; }

    /* Hide desktop nav, show burger */
    .nx-nav__links            { display: none; }
    .nx-nav__burger           { display: flex; }
    .nx-nav__actions .nx-btn  { display: none; }

    .nx-hero__body {
        grid-template-columns: 1fr;
        padding: calc(var(--nav-h) + 60px) 32px 60px;
    }
    .nx-hero__right { display: none; }

    .nx-values__split  { grid-template-columns: 1fr; }
    .nx-contact__inner { grid-template-columns: 1fr; }
    .nx-footer__top    { grid-template-columns: 1fr; gap: 48px; }
    .nx-footer__nav-cols { grid-template-columns: repeat(2,1fr); }

    .nx-process__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .nx-step__arrow { display: none; }

    .sx-header { grid-template-columns: 1fr; gap: 24px; }

    /* Trailers */
    .trl-block__body          { grid-template-columns: 1fr; }
    .trl-block__body--reverse { direction: ltr; }
    .trl-block__visual {
        border-right: none;
        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,.05);
        padding: 32px 28px;
    }
    .trl-block__body--reverse .trl-block__visual { border-left: none; }
    .trl-block__specs { padding: 32px 28px; }
    .trl-block__img   { max-height: 120px; }

    /* Gallery */
    .nx-gallery-v2__header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
    .nx-gallery-v2__header-right p { max-width: 100%; }
}

/* --- 768px --- */
@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    .nx-container    { padding: 0 20px; }
    .nx-hero__headline { font-size: clamp(2.4rem, 10vw, 3.8rem); }
    .nx-hero__body   { padding: calc(var(--nav-h) + 48px) 20px 60px; }
    .nx-hero__actions { flex-direction: column; }
    .nx-hero__actions .nx-btn { justify-content: center; }

    .nx-about,
    .nx-values,
    .nx-process,
    .nx-trailers,
    .nx-contact,
    .nx-partners    { padding: 72px 0; }

    .sx-services    { padding: 80px 0 70px; }
    .nx-metrics     { padding: 48px 0; }

    .nx-metrics__grid { grid-template-columns: 1fr; }
    .nx-metric        { border-right: none; border-bottom: 1px solid var(--c-paper-2); }
    .nx-metric:last-child { border-bottom: none; }

    .nx-values__cards  { grid-template-columns: 1fr; }
    .nx-process__grid  { grid-template-columns: 1fr; }

    .sx-grid { grid-template-columns: 1fr; gap: 16px; }
    .sx-title { font-size: clamp(2rem, 8vw, 2.8rem); }
    .sx-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px;
    }
    .sx-bottom .nx-btn { width: 100%; justify-content: center; }
    .sx-card__inner    { padding: 24px 20px 20px; }

    .nx-contact__map iframe { height: 300px; }
    .nx-form__row { grid-template-columns: 1fr; }

    .nx-footer__nav-cols { grid-template-columns: 1fr; }
    .nx-footer__bottom   { flex-direction: column; text-align: center; }
    .nx-footer__top      { padding: 48px 0 36px; }

    /* Trailers */
    .trl-block__header { padding: 20px 24px; gap: 14px; flex-wrap: wrap; }
    .trl-block__header-badge { margin-left: auto; }
    .trl-block__title  { font-size: 1.15rem; }
    .trl-block__visual { padding: 28px 20px; }
    .trl-block__specs  { padding: 28px 20px; gap: 16px; }
    .trl-spec-row      { grid-template-columns: 120px 1fr 56px; gap: 8px; }
    .trl-spec-row__key { font-size: 0.76rem; }
    .trl-spec-row__val { font-size: 0.82rem; }
    .trl-block__highlights { gap: 8px; }
    .trl-highlight         { padding: 12px 8px; }
    .trl-highlight strong  { font-size: 0.9rem; }
    .trl-footer-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px;
    }
    .trl-footer-cta .nx-btn { width: 100%; justify-content: center; }

    /* Gallery */
    .nx-gallery-v2 { padding: 72px 0 64px; }
    .nx-gallery-v2__grid {
        grid-template-columns: repeat(2,1fr);
        grid-auto-rows: 180px;
        gap: 10px;
    }
    .nx-gallery-v2__item--tall { grid-row: span 1; }
    .nx-gallery-v2__overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(4,12,28,.72) 0%, transparent 55%);
    }
    .nx-gallery-v2__overlay-inner { transform: none; }

    /* Lightbox */
    .nx-lightbox__nav--prev { left: 10px; }
    .nx-lightbox__nav--next { right: 10px; }
    .nx-lightbox__nav       { width: 42px; height: 42px; }
    .nx-lightbox__meta      { flex-direction: column; gap: 6px; text-align: center; }
}

/* --- 480px --- */
@media (max-width: 480px) {
    .sx-card:hover { transform: translateY(-4px); }

    .trl-block__header    { padding: 16px 18px; }
    .trl-block__header-icon { font-size: 1.8rem; }
    .trl-spec-row         { grid-template-columns: 100px 1fr 50px; gap: 6px; }
    .trl-block__highlights { grid-template-columns: 1fr 1fr; }
    .trl-block__highlights .trl-highlight:last-child { grid-column: 1 / -1; }
    .trl-block__cta       { font-size: 0.8rem; padding: 13px 18px; }

    .nx-gallery-v2__grid {
        grid-template-columns: repeat(2,1fr);
        grid-auto-rows: 150px;
    }
    .nx-gallery-v2__item--wide { grid-column: span 2; }
    .nx-gallery-v2__item--tall { grid-row: span 1; }
}


/* ============================================================
   25. PRINT
   ============================================================ */
@media print {
    .nx-nav,
    .nx-preloader,
    .nx-marquee,
    .nx-drawer,
    .nx-drawer__overlay,
    .mob-menu,
    .mob-menu-overlay { display: none !important; }
}