/* =========================================================
   VARIABLES · PALETA, RADIOS Y TRANSICIONES
   ========================================================= */

:root {
    --navy: #031229;
    --navy2: #061b3a;
    --ink: #091322;
    --blue: #087cf0;
    --blue2: #39a7ff;
    --ice: #eaf5ff;
    --white: #fff;
    --muted: #6c7b8e;
    --line: rgba(255, 255, 255, .13);
    --darkline: #dbe6f1;
    --radius: 26px;
    --ease: cubic-bezier(.2, .75, .2, 1)
}

/* =========================================================
   BASE · REINICIO Y MODELO DE CAJA
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 82px
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: #fff;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

img {
    display: block;
    width: 100%
}

button,
input,
select,
textarea {
    font: inherit
}

.container {
    width: min(1280px, calc(100% - 72px));
    margin: auto
}

.page-progress {
    height: 3px;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    background: linear-gradient(90deg, var(--blue), var(--blue2));
    z-index: 9999
}

/* =========================================================
   NAVEGACIÓN · BARRA SUPERIOR
   ========================================================= */

.topbar {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 84px;
    display: flex;
    align-items: center;
    padding: 0 42px;
    gap: 36px;
    color: white;
    transition: .35s var(--ease);
    border-bottom: 1px solid transparent
}

.topbar.scrolled {
    height: 72px;
    background: rgba(3, 18, 41, .93);
    backdrop-filter: blur(18px);
    border-color: var(--line)
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content
}

.logo img {
    width: 44px;
    height: 44px;
    object-fit: contain
}

.logo span {
    display: flex;
    flex-direction: column;
    line-height: .95
}

.logo b {
    font: 800 13px Montserrat;
    letter-spacing: .16em
}

.logo small {
    font: 800 11.3px Montserrat;
    letter-spacing: .02em;
    color: var(--blue2)
}

.nav {
    margin-left: auto;
    display: flex;
    gap: 28px
}

.nav a {
    font-size: 13px;
    font-weight: 700;
    color: #d7e3f0
}

.nav a:hover {
    color: #fff
}

.nav-end {
    display: flex;
    align-items: center;
    gap: 18px
}

.phone {
    font-size: 12px;
    color: #dce7f3
}

.phone i {
    color: var(--blue2);
    margin-right: 6px
}

.nav-cta {
    padding: 12px 17px;
    border-radius: 999px;
    background: white;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800
}

.nav-cta i {
    font-size: 10px;
    margin-left: 5px
}

.menu {
    display: none;
    border: 0;
    background: none;
    width: 40px
}

.menu span {
    display: block;
    height: 2px;
    background: white;
    margin: 8px 0
}

/* =========================================================
   HERO · PORTADA PRINCIPAL
   ========================================================= */

.hero {
    height: 100svh;
    min-height: 760px;
    position: relative;
    background: var(--navy);
    color: #fff;
    overflow: hidden
}

.hero-video {
    position: absolute;
    inset: -8%;
    pointer-events: none
}

.hero-video iframe {
    width: 116%;
    height: 116%;
    border: 0;
    opacity: .58;
    filter: saturate(.65) contrast(1.08)
}

.hero-cover {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 18, 41, .96) 0%, rgba(3, 18, 41, .75) 42%, rgba(3, 18, 41, .3) 72%, rgba(3, 18, 41, .7) 100%), linear-gradient(0deg, rgba(3, 18, 41, .95) 0%, transparent 40%)
}

.hero-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, transparent calc(25% - 1px), rgba(255, 255, 255, .08) 25%, transparent calc(25% + 1px)), linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .08) 50%, transparent calc(50% + 1px)), linear-gradient(90deg, transparent calc(75% - 1px), rgba(255, 255, 255, .08) 75%, transparent calc(75% + 1px));
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 72px));
    height: 100%;
    margin: auto;
    padding-top: 175px;
    display: flex;
    flex-direction: column
}

.overline,
.eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
    color: #a8d7ff
}

.hero h1 {
    font: 900 clamp(76px, 10.8vw, 166px)/.75 Montserrat, sans-serif;
    letter-spacing: -.075em;
    margin-top: 38px
}

.hero h1 span {
    color: transparent;
    -webkit-text-stroke: 2px #fff
}

.hero-bottom {
    margin-top: auto;
    margin-bottom: 132px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end
}

.hero-bottom>p {
    max-width: 610px;
    font-size: 19px;
    line-height: 1.65;
    color: #d3dfeb
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end
}

.btn {
    border: 0;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    cursor: pointer
}

.primary {
    background: linear-gradient(135deg, var(--blue2), var(--blue));
    color: #fff;
    box-shadow: 0 18px 40px rgba(8, 124, 240, .3)
}

.video-btn {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(12px)
}

.hero-data {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-left: calc((100% - min(1280px, calc(100% - 72px)))/2);
    padding-right: calc((100% - min(1280px, calc(100% - 72px)))/2);
    border-top: 1px solid var(--line);
    background: rgba(3, 18, 41, .25);
    backdrop-filter: blur(8px)
}

.hero-data div {
    padding: 20px 28px;
    border-right: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 14px
}

.hero-data strong {
    font: 800 26px Montserrat;
    color: #fff
}

.hero-data span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: #9fb1c4
}

/* =========================================================
   CLIENTES · BLOQUE BASE DE LOGOTIPOS
   ========================================================= */

.trust-strip {
    height: 126px;
    display: grid;
    grid-template-columns: 330px 1fr;
    align-items: center;
    border-bottom: 1px solid #e6edf4;
    overflow: hidden;
    padding-left: max(36px, calc((100% - 1280px)/2))
}

.trust-strip>span {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #6c7a89
}

.logo-flow {
    display: flex;
    gap: 52px;
    align-items: center;
    width: max-content;
    animation: marquee 28s linear infinite
}

.logo-flow img {
    width: 112px;
    height: 48px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .5
}

/* =========================================================
   EMPRESA · PRESENTACIÓN, HISTORIA Y PRINCIPIOS
   ========================================================= */

.company {
    padding: 130px 0 0;
    background: #fff
}

.company-intro {
    display: grid;
    grid-template-columns: 160px 1.2fr .8fr;
    gap: 55px;
    align-items: start
}

.company-index,
.section-num {
    font: 700 11px Montserrat;
    letter-spacing: .15em;
    color: #7b8b9c
}

.company-head h2,
.section-title h2,
.fleet-head h2,
.coverage-copy h2,
.contact-copy h2 {
    font: 800 clamp(42px, 5vw, 72px)/1.02 Montserrat;
    letter-spacing: -.05em
}

.company-head h2 {
    margin-top: 16px
}

.company-head h2 span,
.section-title em,
.fleet-head em,
.contact-copy em {
    color: var(--blue);
    font-style: normal
}

.company-copy {
    padding-top: 35px
}

.company-copy p {
    font-size: 16px;
    line-height: 1.75;
    color: #647486;
    margin-bottom: 18px
}

.company-copy p:first-child {
    font-weight: 700;
    color: #23354a
}

.storyboard {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 720px
}

.story-main {
    position: relative;
    overflow: hidden
}

.story-main img {
    height: 100%;
    object-fit: cover
}

.story-main:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 18, 41, .82), transparent 55%)
}

.story-main figcaption {
    position: absolute;
    z-index: 2;
    left: 48px;
    bottom: 42px;
    color: #fff
}

.story-main b {
    font: 800 64px Montserrat;
    display: block
}

.story-main span {
    display: block;
    max-width: 260px;
    color: #d8e6f4
}

.principles {
    background: var(--navy);
    color: white
}

.principle {
    min-height: 240px;
    padding: 34px 38px;
    display: grid;
    grid-template-columns: 38px 42px 1fr;
    gap: 25px;
    border-bottom: 1px solid var(--line);
    align-items: start
}

.principle-no {
    font: 700 11px Montserrat;
    color: #64809f
}

.principle>i {
    font-size: 24px;
    color: var(--blue2);
    padding-top: 4px
}

.principle small {
    font: 800 10px Montserrat;
    letter-spacing: .2em;
    color: var(--blue2)
}

.principle h3 {
    font: 700 22px/1.25 Montserrat;
    margin: 9px 0 10px
}

.principle p {
    font-size: 13px;
    color: #9eb0c4;
    line-height: 1.65
}

/* =========================================================
   DIFERENCIADORES · SEGURIDAD Y OPERACIÓN
   ========================================================= */

.assurance {
    background: linear-gradient(110deg, #087cf0, #035ab5);
    color: #fff
}

.assurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.assurance article {
    position: relative;
    padding: 54px 42px;
    border-right: 1px solid rgba(255, 255, 255, .18)
}

.assurance article>span {
    position: absolute;
    right: 26px;
    top: 23px;
    font: 700 10px Montserrat;
    color: rgba(255, 255, 255, .55)
}

.assurance i {
    font-size: 31px;
    margin-bottom: 32px
}

.assurance h3 {
    font: 700 22px Montserrat;
    margin-bottom: 10px
}

.assurance p {
    font-size: 13px;
    color: #dceeff;
    line-height: 1.6
}

/* =========================================================
   SERVICIOS · CATÁLOGO VISUAL
   ========================================================= */

.services {
    padding: 135px 0;
    background: #f3f7fb
}

.section-title {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: end;
    margin-bottom: 58px
}

.section-title span,
.fleet-head>span,
.contact-copy>span {
    font: 700 11px Montserrat;
    color: #78899b;
    letter-spacing: .16em
}

.section-title h2 {
    margin-top: 17px
}

.section-title p {
    color: #6e7d8f;
    line-height: 1.7
}

.service-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

.service-panel {
    height: 610px;
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: #fff
}

.service-panel img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease)
}

.service-panel:hover img {
    transform: scale(1.045)
}

.service-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 18, 41, .97), rgba(3, 18, 41, .12) 68%), linear-gradient(90deg, rgba(3, 18, 41, .5), transparent)
}

.service-top {
    position: absolute;
    top: 30px;
    left: 32px;
    right: 32px;
    display: flex;
    justify-content: space-between
}

.service-top span {
    font: 800 12px Montserrat
}

.service-top i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px)
}

.service-info {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px
}

.service-info small {
    font: 800 10px Montserrat;
    letter-spacing: .18em;
    color: #75c4ff
}

.service-info h3 {
    font: 800 44px/1 Montserrat;
    letter-spacing: -.04em;
    margin: 12px 0
}

.service-info p {
    max-width: 430px;
    font-size: 14px;
    color: #b9c8d7
}

.service-info a {
    margin-top: 22px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 800;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding-bottom: 5px
}

/* =========================================================
   FLOTA · UNIDADES Y PRESENTACIÓN TÉCNICA
   ========================================================= */

.fleet {
    padding: 125px 0;
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden
}

.fleet-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 30%, rgba(8, 124, 240, .18), transparent 35%), linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: auto, 70px 70px, 70px 70px
}

.fleet-head {
    position: relative
}

.fleet-head h2 {
    margin: 18px 0 55px;
    max-width: 780px
}

.fleet-track {
    position: relative;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-left: max(36px, calc((100vw - 1280px)/2));
    padding-right: 36px;
    scrollbar-width: none
}

.fleet-track::-webkit-scrollbar {
    display: none
}

.fleet-track figure {
    flex: 0 0 min(430px, 78vw);
    height: 520px;
    position: relative;
    overflow: hidden
}

.fleet-track img {
    height: 100%;
    object-fit: cover;
    filter: saturate(.82)
}

.fleet-track figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    color: #fff;
    background: linear-gradient(0deg, rgba(3, 18, 41, .92), transparent);
    font: 700 17px Montserrat;
    display: flex;
    justify-content: space-between
}

.fleet-track figcaption span {
    color: #76c4ff;
    font-size: 11px
}

/* =========================================================
   COBERTURA · PRESENCIA NACIONAL
   ========================================================= */

.coverage {
    padding: 135px 0 55px;
    background: white
}

.coverage-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 80px;
    align-items: center
}

.coverage-copy .eyebrow {
    color: var(--blue);
    margin: 24px 0 13px
}

.coverage-copy h2 {
    max-width: 540px
}

.coverage-copy>p:not(.eyebrow) {
    color: #69798a;
    line-height: 1.7;
    margin: 22px 0 30px;
    max-width: 490px
}

.coverage-map {
    height: 590px;
    position: relative;
    border-radius: 40px;
    background: radial-gradient(circle at 58% 50%, #d9efff 0 2%, transparent 2.2%), radial-gradient(circle at 47% 48%, #c4e5ff, transparent 50%), linear-gradient(145deg, #edf7ff, #f8fbff);
    overflow: hidden;
    border: 1px solid #dceaf6
}

.coverage-map:after {
    content: "";
    position: absolute;
    inset: 45px;
    background: linear-gradient(135deg, transparent 0 22%, rgba(8, 124, 240, .08) 22% 23%, transparent 23% 45%, rgba(8, 124, 240, .08) 45% 46%, transparent 46%);
    clip-path: polygon(6% 12%, 38% 2%, 65% 12%, 85% 32%, 72% 50%, 91% 66%, 68% 90%, 39% 96%, 23% 76%, 8% 56%);
    border: 2px solid #8fbae0
}

.mexico-mark {
    position: absolute;
    z-index: 3;
    left: 45%;
    top: 42%;
    font: 900 78px Montserrat;
    color: rgba(8, 124, 240, .12)
}

.pin {
    position: absolute;
    z-index: 4;
    font-size: 10px;
    font-weight: 800;
    color: #16518a;
    background: white;
    padding: 7px 9px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(20, 76, 125, .12)
}

.pin:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    display: inline-block;
    margin-right: 5px
}

.p1 {
    right: 12%;
    top: 12%
}

.p2 {
    left: 12%;
    top: 29%
}

.p3 {
    left: 20%;
    top: 59%
}

.p4 {
    left: 42%;
    top: 28%
}

.p5 {
    left: 48%;
    top: 47%
}

.p6 {
    left: 50%;
    top: 61%
}

.p7 {
    right: 20%;
    top: 55%
}

.p8 {
    right: 8%;
    top: 44%
}

.p9 {
    right: 23%;
    bottom: 15%
}

.states {
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid #dfe9f2;
    color: #758596;
    font-size: 12px;
    line-height: 2;
    text-transform: uppercase;
    letter-spacing: .08em
}

/* =========================================================
   CONTACTO · INFORMACIÓN Y FORMULARIO DE COTIZACIÓN
   ========================================================= */

.contact {
    padding: 120px 0;
    background: #eaf4fc
}

.contact-shell {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    background: var(--navy);
    color: #fff;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(3, 18, 41, .18)
}

.contact-copy {
    padding: 70px
}

.contact-copy h2 {
    margin: 20px 0
}

.contact-copy>p {
    color: #a9bbcc;
    line-height: 1.7;
    max-width: 480px
}

.contact-direct {
    margin-top: 46px;
    display: grid;
    gap: 15px
}

.contact-direct a {
    border-top: 1px solid var(--line);
    padding-top: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.contact-direct small {
    font-size: 9px;
    letter-spacing: .15em;
    color: #6f91b4
}

.contact-direct b {
    font-size: 13px
}

.quote-form {
    background: #fff;
    color: var(--ink);
    padding: 62px;
    display: grid;
    gap: 20px
}

.quote-form label {
    display: grid;
    gap: 8px
}

.quote-form label span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #617183
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #cbd8e4;
    padding: 12px 0;
    outline: 0;
    background: transparent;
    color: #1b2b3e
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--blue)
}

.quote-form textarea {
    resize: vertical
}

.form-submit {
    height: 58px;
    border: 0;
    background: var(--blue);
    color: white;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border-radius: 50px;
}

.form-status {
    font-size: 12px;
    min-height: 18px
}

.form-status.error {
    color: #c73535
}

.form-status.success {
    color: #14864b
}

footer {
    padding: 55px 0;
    background: #020b16;
    color: #fff
}

/* =========================================================
   PIE DE PÁGINA · NAVEGACIÓN Y FIRMA
   ========================================================= */

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr .8fr 1fr;
    gap: 40px;
    align-items: center
}

.footer-grid>p,
.footer-grid>span {
    font-size: 11px;
    color: #73869a;
    line-height: 1.8
}

.footer-grid>div {
    display: grid;
    gap: 7px
}

.footer-grid>div a {
    font-size: 11px;
    color: #9eb0c3
}

/* =========================================================
   CONTACTO FLOTANTE · WHATSAPP
   ========================================================= */

.wa-float {
    position: fixed;
    z-index: 999;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .25)
}

/* =========================================================
   MODAL · PRESENTACIÓN EN VIDEO
   ========================================================= */

.video-modal {
    position: fixed;
    z-index: 3000;
    inset: 0;
    background: rgba(1, 8, 18, .92);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.video-modal.active {
    opacity: 1;
    visibility: visible
}

.video-modal>button {
    position: absolute;
    top: 30px;
    right: 34px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer
}

.video-frame {
    width: min(1000px, 88vw);
    aspect-ratio: 16/9
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0
}

/* =========================================================
   ANIMACIONES · REVELADO DE ELEMENTOS
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.delay-1 {
    transition-delay: .08s
}

.delay-2 {
    transition-delay: .16s
}

.delay-3 {
    transition-delay: .24s
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

@media(max-width:1080px) {

    .nav,
    .phone {
        display: none
    }

    .menu {
        display: block
    }

    .nav.open {
        display: flex;
        position: fixed;
        inset: 72px 0 0;
        background: var(--navy);
        flex-direction: column;
        padding: 50px 36px;
        font-size: 22px
    }

    .nav.open a {
        font-size: 22px
    }

    .hero h1 {
        font-size: clamp(70px, 12vw, 120px)
    }

    .company-intro {
        grid-template-columns: 90px 1fr
    }

    .company-copy {
        grid-column: 2
    }

    .storyboard {
        grid-template-columns: 1fr
    }

    .story-main {
        height: 620px
    }

    .section-title {
        grid-template-columns: 1fr
    }

    .coverage-layout {
        grid-template-columns: 1fr
    }

    .coverage-map {
        height: 540px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-shell {
        grid-template-columns: 1fr
    }

    .contact-copy {
        padding: 55px 50px
    }
}

@media(max-width:760px) {
    .container {
        width: min(100% - 34px, 1280px)
    }

    .topbar {
        height: 70px;
        padding: 0 17px
    }

    .topbar .logo small {
        font-size: 15px
    }

    .topbar .logo img {
        width: 38px;
        height: 38px
    }

    .nav-cta {
        display: none
    }

    .hero {
        min-height: 720px
    }

    .hero-video {
        inset: 0
    }

    .hero-video iframe {
        width: 180%;
        height: 100%;
        margin-left: -40%
    }

    .hero-content {
        width: calc(100% - 34px);
        padding-top: 145px
    }

    .overline {
        font-size: 9px
    }

    .hero h1 {
        font-size: clamp(58px, 19vw, 92px);
        line-height: .82;
        margin-top: 28px
    }

    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 154px
    }

    .hero-bottom>p {
        font-size: 15px
    }

    .hero-actions {
        justify-content: flex-start;
        flex-wrap: wrap
    }

    .hero-data {
        grid-template-columns: repeat(2, 1fr);
        padding: 0
    }

    .hero-data div {
        padding: 13px 17px
    }

    .hero-data strong {
        font-size: 20px
    }

    .hero-data span {
        font-size: 8px
    }

    .trust-strip {
        height: 110px;
        grid-template-columns: 1fr;
        padding-left: 17px
    }

    .trust-strip>span {
        display: none
    }

    .company {
        padding-top: 90px
    }

    .company-intro {
        display: block
    }

    .company-index {
        margin-bottom: 30px
    }

    .company-head h2,
    .section-title h2,
    .fleet-head h2,
    .coverage-copy h2,
    .contact-copy h2 {
        font-size: 40px
    }

    .company-copy {
        padding-top: 25px
    }

    .storyboard {
        width: 100%;
        margin-top: 55px
    }

    .story-main {
        height: 520px
    }

    .story-main figcaption {
        left: 24px;
        bottom: 24px
    }

    .story-main b {
        font-size: 48px
    }

    .principle {
        grid-template-columns: 30px 32px 1fr;
        padding: 28px 20px;
        gap: 15px
    }

    .principle h3 {
        font-size: 18px
    }

    .assurance-grid {
        grid-template-columns: 1fr
    }

    .assurance article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
        padding: 38px 20px
    }

    .services,
    .fleet,
    .coverage {
        padding-top: 90px
    }

    .section-title {
        gap: 25px;
        margin-bottom: 40px
    }

    .service-showcase {
        grid-template-columns: 1fr
    }

    .service-panel {
        height: 500px
    }

    .service-info h3 {
        font-size: 38px
    }

    .fleet-track figure {
        height: 450px
    }

    .coverage-map {
        height: 500px
    }

    .pin {
        font-size: 8px;
        padding: 6px
    }

    .mexico-mark {
        font-size: 52px
    }

    .contact {
        padding: 70px 0
    }

    .contact-shell {
        width: calc(100% - 24px);
        border-radius: 22px
    }

    .contact-copy,
    .quote-form {
        padding: 38px 24px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .contact-direct a {
        align-items: flex-start;
        gap: 15px;
        flex-direction: column
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .video-frame {
        width: 94vw
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

/* =========================================================
   COMPONENTES AVANZADOS · CLIENTES, FLOTA Y MAPA
   ========================================================= */
/* =========================================================
   CLIENTES · ESTRUCTURA DE LOGOTIPOS
   ========================================================= */

.client-wall {
    padding: 76px 0;
    background: #fff;
    border-bottom: 1px solid #e4edf5
}

.client-wall-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 68px;
    align-items: center
}

.client-wall-copy>span {
    font: 800 10px Montserrat;
    letter-spacing: .18em;
    color: var(--blue)
}

.client-wall-copy h2 {
    font: 800 clamp(30px, 3.4vw, 48px)/1.05 Montserrat;
    letter-spacing: -.045em;
    margin: 14px 0 16px;
    color: #102036
}

.client-wall-copy h2 em {
    font-style: normal;
    color: var(--blue)
}

.client-wall-copy p {
    color: #6e7d8d;
    line-height: 1.7;
    max-width: 470px
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #dfe8f1;
    background: #f8fbfe;
    box-shadow: 0 22px 55px rgba(6, 27, 58, .07)
}

.client-logo {
    height: 112px;
    display: grid;
    place-items: center;
    padding: 22px;
    border-right: 1px solid #e4ecf4;
    border-bottom: 1px solid #e4ecf4;
    position: relative;
    overflow: hidden
}

.client-logo:nth-child(4n) {
    border-right: 0
}

.client-logo:nth-child(n+5) {
    border-bottom: 0
}

.client-logo:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 124, 240, .08), transparent 55%);
    opacity: 0;
    transition: .3s
}

.client-logo:hover:before {
    opacity: 1
}

.client-logo img {
    max-width: 120px;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .58;
    transition: .3s
}

.client-logo:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.04)
}

/* =========================================================
   FLOTA INTERACTIVA · CONSOLA Y FICHA TÉCNICA
   ========================================================= */

.fleet-lab {
    padding-bottom: 110px
}

.fleet-head h2 {
    margin-bottom: 20px
}

.fleet-lead {
    position: relative;
    max-width: 720px;
    color: #89a0b8;
    line-height: 1.75;
    margin-bottom: 54px
}

.fleet-console {
    position: relative
}

.fleet-stage {
    height: 690px;
    position: relative;
    display: grid;
    place-items: center;
    perspective: 1400px;
    border: 1px solid rgba(128, 196, 255, .16);
    background: radial-gradient(circle at 50% 54%, rgba(38, 151, 255, .20), transparent 32%), linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .006));
    overflow: hidden;
    isolation: isolate
}

.fleet-stage:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(85, 178, 255, .1);
    box-shadow: 0 0 100px rgba(8, 124, 240, .08) inset
}

.unit-glow {
    position: absolute;
    left: 50%;
    bottom: 110px;
    width: 440px;
    height: 90px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(48, 164, 255, .48), rgba(48, 164, 255, .08) 45%, transparent 72%);
    filter: blur(14px)
}

.unit-main-image {
    position: relative;
    z-index: 3;
    width: min(620px, 54vw);
    height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 42px 38px rgba(0, 0, 0, .55));
    transform: translateY(12px);
    transition: opacity .25s, transform .45s var(--ease)
}

.fleet-stage.changing .unit-main-image {
    opacity: .18;
    transform: translateY(18px) scale(.97)
}

.fleet-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(89, 181, 255, .18);
    z-index: 1
}

.orbit-one {
    width: 520px;
    height: 520px
}

.orbit-two {
    width: 620px;
    height: 300px;
    transform: rotateX(72deg);
    border-style: dashed;
    animation: fleetSpin 24s linear infinite
}

.tech-panel {
    position: absolute;
    z-index: 6;
    width: 265px;
    min-height: 128px;
    padding: 18px 20px;
    border: 1px solid rgba(125, 200, 255, .25);
    background: linear-gradient(135deg, rgba(12, 45, 78, .82), rgba(3, 18, 41, .67));
    box-shadow: 0 28px 60px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
    transform-style: preserve-3d;
    transition: transform .35s var(--ease), border-color .3s
}

.tech-panel:hover {
    border-color: rgba(118, 202, 255, .58)
}

.panel-a {
    left: 4.5%;
    top: 18%;
    transform: rotateY(15deg) rotateX(2deg)
}

.panel-b {
    right: 4.5%;
    top: 24%;
    transform: rotateY(-15deg) rotateX(2deg)
}

.panel-c {
    left: 6.5%;
    bottom: 10%;
    width: 300px;
    transform: rotateY(12deg) rotateX(-2deg)
}

.panel-code {
    display: block;
    font: 800 8px Montserrat;
    letter-spacing: .16em;
    color: #5db9ff;
    margin-bottom: 12px
}

.tech-panel strong {
    display: block;
    font: 800 22px/1.12 Montserrat;
    letter-spacing: -.025em;
    color: #fff
}

.tech-panel>small {
    display: block;
    color: #91a8bf;
    font-size: 11px;
    line-height: 1.5;
    margin-top: 8px
}

.status-row {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 7px;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.status-row:last-child {
    border-bottom: 0
}

.status-row i {
    color: #61bdff;
    font-size: 12px
}

.status-row b {
    font-size: 10px;
    color: #dcecff
}

.status-row em {
    font-style: normal;
    font-size: 9px;
    color: #71c4ff;
    font-weight: 800
}

.fleet-model-label {
    position: absolute;
    right: 6.5%;
    bottom: 10%;
    z-index: 5;
    text-align: right
}

.fleet-model-label span {
    display: block;
    font: 800 8px Montserrat;
    letter-spacing: .18em;
    color: #6585a3
}

.fleet-model-label strong {
    display: block;
    font: 900 clamp(24px, 3vw, 42px) Montserrat;
    letter-spacing: -.04em;
    margin-top: 4px
}

.fleet-model-label small {
    font: 800 10px Montserrat;
    color: #55b8ff;
    letter-spacing: .14em
}

.unit-selector {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid rgba(255, 255, 255, .12);
    border-top: 0;
    background: #04152d
}

.unit-option {
    min-height: 84px;
    padding: 16px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .1);
    background: transparent;
    color: #8299b1;
    display: flex;
    align-items: center;
    gap: 11px;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
    cursor: pointer;
    transition: .28s
}

.unit-option:last-child {
    border-right: 0
}

.unit-option span {
    font: 800 9px Montserrat;
    color: #4b6a89
}

.unit-option:hover,
.unit-option.active {
    background: linear-gradient(180deg, rgba(8, 124, 240, .16), rgba(8, 124, 240, .05));
    color: #fff;
    box-shadow: inset 0 3px 0 var(--blue2)
}

.unit-option.active span {
    color: #63c1ff
}

@keyframes fleetSpin {
    to {
        transform: rotateX(72deg) rotateZ(360deg)
    }
}

/* =========================================================
   MAPA · CONTENEDOR, LEYENDA Y MARCADORES
   ========================================================= */

.coverage-map-shell {
    border: 1px solid #dce8f2;
    border-radius: 34px;
    overflow: hidden;
    background: #f7fbff;
    box-shadow: 0 28px 70px rgba(3, 18, 41, .10)
}

.map-head {
    height: 52px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #061b3a;
    color: #fff
}

.map-head span {
    font: 800 9px Montserrat;
    letter-spacing: .16em
}

.map-head span i {
    font-size: 7px;
    color: #51b8ff;
    margin-right: 8px;
    box-shadow: 0 0 0 5px rgba(81, 184, 255, .12);
    border-radius: 50%
}

.map-head small {
    font-size: 10px;
    color: #7992ac
}

.coverage-map {
    height: 570px;
    border: 0;
    border-radius: 0;
    background: #eaf4fc;
    z-index: 1
}

.coverage-map:after {
    display: none
}

.map-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-top: 1px solid #e3edf5
}

.map-legend>div {
    display: flex;
    gap: 13px;
    padding: 18px 20px;
    align-items: flex-start
}

.map-legend>div:first-child {
    border-right: 1px solid #e3edf5
}

.map-legend p {
    display: grid;
    gap: 3px
}

.map-legend b {
    font-size: 11px;
    color: #16304d
}

.map-legend small {
    font-size: 9px;
    line-height: 1.45;
    color: #7890a6
}

.legend-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 6px rgba(8, 124, 240, .12);
    margin-top: 5px;
    flex: 0 0 auto
}

.legend-ring {
    width: 18px;
    height: 18px;
    border: 2px solid #48b1ff;
    border-radius: 50%;
    margin-top: 2px;
    flex: 0 0 auto
}

.leaflet-container {
    font-family: 'DM Sans', sans-serif
}

.leaflet-control-zoom a {
    color: #08325c !important
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(4, 31, 58, .18)
}

.kasteloz-marker {
    background: transparent;
    border: 0
}

.kasteloz-marker span {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #087cf0;
    border: 3px solid #fff;
    box-shadow: 0 0 0 5px rgba(8, 124, 240, .18), 0 7px 20px rgba(3, 18, 41, .28)
}

@media(max-width:1080px) {
    .hero {
        height: auto;
        min-height: 100svh;
        display: flex;
        flex-direction: column
    }

    .hero-content {
        height: auto;
        min-height: 720px;
        padding-top: 150px;
        padding-bottom: 58px
    }

    .hero-bottom {
        margin-top: auto;
        margin-bottom: 0
    }

    .hero-data {
        position: relative;
        left: auto;
        bottom: auto;
        padding: 0 36px
    }

    .hero-data div {
        min-height: 72px
    }

    .client-wall-layout {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .client-wall-copy {
        max-width: 700px
    }

    .client-logo-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .fleet-stage {
        height: 650px
    }

    .unit-main-image {
        width: min(620px, 62vw)
    }

    .panel-a {
        left: 2%
    }

    .panel-b {
        right: 2%
    }

    .panel-c {
        left: 3%;
        bottom: 7%
    }

    .fleet-model-label {
        right: 3%;
        bottom: 7%
    }

    .coverage-layout {
        gap: 45px
    }

    .coverage-map {
        height: 520px
    }
}

@media(max-width:760px) {
    .hero {
        height: auto;
        min-height: 100svh;
        overflow: hidden
    }

    .hero-video {
        inset: 0
    }

    .hero-video iframe {
        width: 190%;
        height: 100%;
        margin-left: -45%
    }

    .hero-content {
        min-height: 0;
        width: calc(100% - 34px);
        padding: 125px 0 48px
    }

    .hero h1 {
        font-size: clamp(52px, 18vw, 78px);
        line-height: .86;
        overflow-wrap: normal
    }

    .hero-bottom {
        margin-top: 46px;
        margin-bottom: 0;
        gap: 22px
    }

    .hero-actions .btn {
        min-height: 50px;
        padding: 0 17px;
        font-size: 12px
    }

    .hero-data {
        position: relative;
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        background: rgba(3, 18, 41, .72);
        backdrop-filter: blur(12px)
    }

    .hero-data div {
        min-height: 68px;
        padding: 12px 17px
    }

    .hero-data div:nth-child(2n) {
        border-right: 0
    }

    .client-wall {
        padding: 58px 0
    }

    .client-wall-layout {
        gap: 30px
    }

    .client-wall-copy h2 {
        font-size: 34px
    }

    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .client-logo {
        height: 96px;
        padding: 18px
    }

    .client-logo:nth-child(4n) {
        border-right: 1px solid #e4ecf4
    }

    .client-logo:nth-child(2n) {
        border-right: 0
    }

    .client-logo:nth-child(n+5) {
        border-bottom: 1px solid #e4ecf4
    }

    .client-logo:nth-child(n+7) {
        border-bottom: 0
    }

    .client-logo img {
        max-width: 102px;
        max-height: 46px
    }

    .fleet-lab {
        padding-bottom: 75px
    }

    .fleet-lead {
        font-size: 13px;
        margin-bottom: 34px
    }

    .fleet-console {
        width: 100%
    }

    .fleet-stage {
        height: auto;
        min-height: 760px;
        padding: 34px 17px 28px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 14px;
        perspective: none
    }

    .fleet-stage:before,
    .fleet-orbit {
        display: none
    }

    .unit-glow {
        top: 225px;
        bottom: auto;
        width: 280px
    }

    .unit-main-image {
        order: 1;
        width: 100%;
        height: 300px;
        object-fit: contain;
        transform: none;
        margin-top: 12px
    }

    .tech-panel,
    .panel-a,
    .panel-b,
    .panel-c {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none !important;
        width: 100%;
        min-height: auto;
        order: 2;
        padding: 16px 17px
    }

    .panel-c {
        order: 3
    }

    .fleet-model-label {
        position: relative;
        right: auto;
        bottom: auto;
        order: 0;
        width: 100%;
        text-align: left;
        padding: 0 3px
    }

    .fleet-model-label strong {
        font-size: 28px
    }

    .unit-selector {
        grid-template-columns: 1fr;
        overflow: hidden
    }

    .unit-option {
        min-height: 56px;
        justify-content: flex-start;
        padding: 0 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .unit-option:last-child {
        border-bottom: 0
    }

    .coverage-map-shell {
        border-radius: 22px
    }

    .coverage-map {
        height: 460px
    }

    .map-legend {
        grid-template-columns: 1fr
    }

    .map-legend>div:first-child {
        border-right: 0;
        border-bottom: 1px solid #e3edf5
    }

    .states {
        font-size: 9px;
        line-height: 1.9
    }

    .coverage-layout {
        gap: 32px
    }
}

@media(max-width:420px) {
    .hero h1 {
        font-size: clamp(46px, 17.5vw, 68px)
    }

    .hero-content {
        padding-top: 112px
    }

    .hero-bottom>p {
        font-size: 14px
    }

    .hero-data strong {
        font-size: 18px
    }

    .client-wall-copy h2 {
        font-size: 30px
    }

    .coverage-map {
        height: 410px
    }
}

/* =========================================================
   HERO · TÍTULO PRINCIPAL
   ========================================================= */

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: .78 !important;
}

.hero h1 .hero-title-line {
    display: block;
    color: #fff;
    -webkit-text-stroke: 0;
}

.hero h1 .mexico-title {
    display: block;
    margin-top: 50px;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}

@media (max-width: 1080px) {
    .hero h1 .mexico-title {
        margin-top: 35px;
    }
}

@media (max-width: 760px) {
    .hero-title {
        line-height: .84 !important;
    }

    .hero h1 .mexico-title {
        margin-top: 25px;
        -webkit-text-stroke-width: 1.5px;
    }
}

/* =========================================================
   CLIENTES · CINTA CORPORATIVA INFINITA
   ========================================================= */

.client-marquee-section {
    position: relative;
    padding: 0 !important;
    min-height: 92px;
    background:
        radial-gradient(circle at 50% -140%, rgba(57, 167, 255, .16), transparent 58%),
        linear-gradient(180deg, #04182f 0%, #031229 100%) !important;
    border-top: 1px solid rgba(57, 167, 255, .18) !important;
    border-bottom: 1px solid rgba(57, 167, 255, .22) !important;
    overflow: hidden;
    isolation: isolate;
}

.client-marquee-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(8, 124, 240, .04) 25%,
            rgba(57, 167, 255, .075) 50%,
            rgba(8, 124, 240, .04) 75%,
            transparent 100%);
}

.client-marquee {
    position: relative;
    width: 100%;
    height: 92px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.client-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 0 !important;
    will-change: transform;
    animation: clientTickerKasteloz 34s linear infinite !important;
}

.client-group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0 !important;
    padding-left: 0 !important;
}

.client-card {
    position: relative;
    width: 205px !important;
    height: 92px !important;
    flex: 0 0 205px !important;
    display: grid;
    place-items: center;
    padding: 22px 34px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
    overflow: visible !important;
}

.client-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1px;
    width: 2px;
    height: 38px;
    border-radius: 999px;
    background:
        linear-gradient(180deg,
            rgba(57, 167, 255, 0),
            rgba(57, 167, 255, .92) 46%,
            rgba(8, 124, 240, .92) 54%,
            rgba(57, 167, 255, 0));
    transform: translateY(-50%) rotate(14deg);
    box-shadow: 0 0 15px rgba(8, 124, 240, .26);
}

.client-card img,
.client-card:hover img {
    display: block;
    width: 100% !important;
    height: 48px !important;
    object-fit: contain;
    object-position: center;
    filter: none !important;
    mix-blend-mode: normal !important;
    opacity: .92 !important;
    transform: none !important;
    transition: none !important;
}

.client-card:hover {
    transform: none !important;
    border: 0 !important;
    box-shadow: none !important;
}

.client-marquee:hover .client-track {
    animation-play-state: running !important;
}

.client-marquee-fade {
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 0;
    width: clamp(42px, 7vw, 118px) !important;
    pointer-events: none;
}

.client-marquee-fade-left {
    left: 0;
    background:
        linear-gradient(90deg,
            #031229 0%,
            rgba(3, 18, 41, .96) 24%,
            rgba(3, 18, 41, .52) 64%,
            rgba(3, 18, 41, 0) 100%) !important;
}

.client-marquee-fade-right {
    right: 0;
    background:
        linear-gradient(270deg,
            #031229 0%,
            rgba(3, 18, 41, .96) 24%,
            rgba(3, 18, 41, .52) 64%,
            rgba(3, 18, 41, 0) 100%) !important;
}

@keyframes clientTickerKasteloz {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 1080px) {

    .client-marquee-section,
    .client-marquee {
        min-height: 82px;
        height: 82px;
    }

    .client-card {
        width: 180px !important;
        height: 82px !important;
        flex-basis: 180px !important;
        padding: 19px 29px !important;
    }

    .client-card img,
    .client-card:hover img {
        height: 43px !important;
    }
}

@media (max-width: 760px) {

    .client-marquee-section,
    .client-marquee {
        min-height: 72px;
        height: 72px;
    }

    .client-track {
        animation-duration: 27s !important;
    }

    .client-card {
        width: 154px !important;
        height: 72px !important;
        flex-basis: 154px !important;
        padding: 16px 24px !important;
    }

    .client-card img,
    .client-card:hover img {
        height: 36px !important;
    }

    .client-card::after {
        height: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .client-track {
        animation: none !important;
        transform: none !important;
    }
}

/* =========================================================
   SCROLL · BARRA DE DESPLAZAMIENTO Y PROGRESO
   ========================================================= */

html {
    scrollbar-width: thin;
    scrollbar-color: #1596ff #031229;
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: #031229;
    border-left: 1px solid rgba(255, 255, 255, .055);
}

body::-webkit-scrollbar-thumb {
    min-height: 72px;
    border: 3px solid #031229;
    border-radius: 999px;
    background:
        linear-gradient(180deg,
            #55bdff 0%,
            #1596ff 42%,
            #087cf0 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .16),
        0 0 18px rgba(8, 124, 240, .42);
}

body::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(180deg,
            #70c8ff 0%,
            #2aa4ff 42%,
            #0c86f7 100%);
}

.page-progress {
    height: 3px !important;
    background:
        linear-gradient(90deg,
            #087cf0,
            #39a7ff,
            #80d0ff) !important;
    box-shadow: 0 0 14px rgba(57, 167, 255, .55);
}