/* GoTrackAsap — landing SaaS fleet, sin imágenes de marketing */

:root {
    --gt-bg: #0b1422;
    --gt-bg-deep: #060c14;
    --gt-surface: #0f1a2e;
    --gt-surface-2: #121f35;
    --gt-border: rgba(255, 255, 255, 0.07);
    --gt-text: #e8eef5;
    --gt-muted: #7a94b0;
    --gt-accent: #22d3ee;
    --gt-accent-deep: #0891b2;
    --gt-blue: #2563eb;
    --gt-blue-deep: #1e40af;
    --gt-font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --gt-cyan: var(--gt-accent);
    --gt-asap-gradient: linear-gradient(135deg, #22d3ee 0%, #38bdf8 45%, #2563eb 100%);
    --gt-asap-gradient-hover: linear-gradient(135deg, #38bdf8 0%, #22d3ee 30%, #3b82f6 100%);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.gt-landing {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--gt-bg-deep);
    background-image:
        linear-gradient(180deg,
            rgba(6, 12, 20, 0.72) 0%,
            rgba(6, 12, 20, 0.62) 50%,
            rgba(6, 12, 20, 0.68) 100%),
        url('/assets/img/gotrackasap/gotrackasap-map-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: var(--gt-text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Desktop: fondo fijo */
@media (min-width: 901px) and (hover: hover) {
    body.gt-landing {
        background-attachment: fixed;
    }
}

/* Móvil: recorte vertical propio — no estirar el horizontal */
@media (max-width: 900px) {
    body.gt-landing {
        background-image:
            linear-gradient(180deg,
                rgba(6, 12, 20, 0.78) 0%,
                rgba(6, 12, 20, 0.65) 50%,
                rgba(6, 12, 20, 0.72) 100%),
            url('/assets/img/gotrackasap/gotrackasap-map-bg-mobile.webp');
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }
}

body.gt-nav-open { overflow: hidden; }

/* Sin pseudo-elementos — iOS Safari los rompe con fixed */
body.gt-landing::before,
body.gt-landing::after {
    display: none;
}

.gt-nav,
.gt-hero,
.gt-section,
.gt-cta,
.gt-footer {
    position: relative;
    z-index: 1;
}

.gt-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.gt-nav {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    height: 84px;
    background: rgba(6, 12, 20, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gt-border);
    transition: background .25s, box-shadow .25s;
}
.gt-nav.is-scrolled {
    background: rgba(6, 12, 20, 0.48);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.gt-nav__inner {
    height: 100%; display: flex; align-items: center; gap: 20px;
    justify-content: space-between;
}

/* Logo integrado HTML/CSS */
.gt-brand {
    display: inline-flex; align-items: center;
    text-decoration: none; flex-shrink: 0;
    color: inherit;
}
.gt-brand--footer { margin-bottom: 14px; display: block; }

.gt-lockup {
    display: inline-flex; align-items: center;
}
.gt-lockup__text {
    display: flex; flex-direction: column; gap: 2px;
    min-width: 0;
}
.gt-lockup__name {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--gt-font-display);
    font-size: 1.35rem; font-weight: 800;
    letter-spacing: -0.025em; line-height: 1.1;
    color: #fff; white-space: nowrap;
}
.gt-lockup__asap {
    background: var(--gt-asap-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gt-lockup__signal {
    flex-shrink: 0;
    color: var(--gt-accent);
    opacity: 0.9;
}
.gt-lockup__tagline {
    font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gt-muted); line-height: 1.2;
}
.gt-lockup--footer .gt-lockup__name { font-size: 1.5rem; }
.gt-lockup--footer .gt-lockup__tagline { font-size: 0.75rem; }

@media (max-width: 640px) {
    .gt-lockup__name { font-size: 1.15rem; }
    .gt-lockup__tagline { font-size: 0.5625rem; letter-spacing: 0.07em; }
}

.gt-nav__cta-m.gt-btn { display: none; }

.gt-nav__links { display: flex; align-items: center; gap: 28px; }
.gt-nav__links a:not(.gt-btn) {
    color: var(--gt-muted); font-size: 0.875rem; font-weight: 500;
    text-decoration: none; transition: color .2s;
}
.gt-nav__links a:not(.gt-btn):hover { color: #fff; }
.gt-nav__wa { color: #25d366 !important; font-weight: 600; }

.gt-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 20px; border-radius: 10px; font-weight: 700; font-size: 0.875rem;
    text-decoration: none; border: none; cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s;
    letter-spacing: 0.01em;
}
.gt-btn--primary {
    background: var(--gt-asap-gradient);
    color: #fff !important;
    border: 1px solid rgba(34, 211, 238, 0.5);
    box-shadow:
        0 4px 20px rgba(34, 211, 238, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.gt-btn--primary:hover {
    color: #fff !important;
    transform: translateY(-1px);
    background: var(--gt-asap-gradient-hover);
    border-color: rgba(34, 211, 238, 0.7);
    box-shadow:
        0 8px 28px rgba(34, 211, 238, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.gt-nav__cta-d.gt-btn--primary,
.gt-nav__links .gt-btn--primary {
    padding: 11px 20px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff !important;
    white-space: nowrap;
}
.gt-nav__cta-d.gt-btn--primary:hover,
.gt-nav__links .gt-btn--primary:hover {
    color: #fff !important;
}
.gt-btn--line {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.gt-btn--line:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
}
.gt-btn--dark { background: #1e3a5f; color: #fff; }
.gt-btn--dark:hover { background: #152a45; }
.gt-btn--blue {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}
.gt-btn--blue:hover { background: linear-gradient(135deg, #1d4ed8, #1e40af); }
.gt-btn--lg { padding: 14px 28px; font-size: 0.9375rem; }
.gt-btn--block { width: 100%; }

.gt-burger {
    display: none; background: none; border: 0; cursor: pointer; padding: 8px;
    z-index: 160;
    position: relative;
}
.gt-burger span {
    display: block; width: 22px; height: 2px; background: #fff;
    margin: 5px 0; border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}
.gt-nav.is-menu-open .gt-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.gt-nav.is-menu-open .gt-burger span:nth-child(2) {
    opacity: 0;
}
.gt-nav.is-menu-open .gt-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .gt-nav__links {
        position: fixed;
        inset: 0;
        z-index: 150;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        margin: 0;
        padding: calc(84px + 20px) 24px max(32px, env(safe-area-inset-bottom));
        background: rgba(6, 12, 20, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: none;
        box-shadow: none;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease,
                    visibility 0.3s;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .gt-nav__links.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .gt-nav__links a:not(.gt-btn) {
        font-size: 1.125rem;
        font-weight: 600;
        color: #fff;
        padding: 18px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .gt-nav__links a:not(.gt-btn):active {
        color: var(--gt-accent);
    }
    .gt-nav__cta-d { display: none; }
    .gt-nav__cta-m.gt-btn {
        display: inline-flex !important;
        justify-content: center;
        margin-top: 28px;
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }
    .gt-nav.is-menu-open {
        background: rgba(6, 12, 20, 0.98);
        backdrop-filter: none;
    }
    .gt-burger { display: block; }
}

/* ── Hero ── */
.gt-hero {
    position: relative;
    padding: calc(84px + 64px) 0 80px;
    min-height: min(90vh, 860px);
    display: flex; align-items: center;
    overflow: hidden;
}
.gt-hero__bg,
.gt-hero__overlay { display: none; }

.gt-hero__grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}

.gt-kicker {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gt-muted); margin: 0 0 20px;
}
.gt-kicker--cyan { color: var(--gt-cyan); }

.gt-hero__title {
    font-family: var(--gt-font-display);
    font-size: clamp(2rem, 3.8vw, 2.85rem);
    font-weight: 800; line-height: 1.15; letter-spacing: -0.03em;
    margin: 0 0 20px; color: #fff;
    max-width: 520px;
}
.gt-hero__lead {
    font-size: 1.05rem; line-height: 1.65; color: var(--gt-muted);
    margin: 0 0 32px; max-width: 460px;
}
.gt-hero__actions {
    display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px;
}
.gt-hero__facts {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.gt-hero__facts li {
    font-size: 0.875rem; color: var(--gt-muted);
    padding-left: 16px; position: relative;
}
.gt-hero__facts li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gt-cyan);
}
.gt-hero__facts span { color: #fff; font-weight: 600; }

.gt-hero__visual { min-width: 0; }

@media (max-width: 900px) {
    .gt-hero { min-height: auto; padding-bottom: 56px; }
    .gt-hero__grid { grid-template-columns: 1fr; }
    .gt-hero__visual { order: -1; }
    .gt-hero__lead { max-width: none; }
}

/* Imágenes integradas al fondo navy — sin caja flotante */
.gt-visual {
    position: relative;
    border-radius: 0;
    overflow: visible;
    line-height: 0;
    background: transparent;
}
.gt-visual::before,
.gt-visual::after { display: none; }
.gt-visual img {
    position: relative; z-index: 2;
    width: 100%; height: auto; display: block;
    border-radius: 12px;
    background: transparent;
}
.gt-visual picture {
    display: block;
    width: 100%;
    line-height: 0;
}
.gt-visual--hero {
    box-shadow: none;
    filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.35));
}
.gt-visual--hero img {
    border-radius: 14px;
    outline: 1px solid rgba(255, 255, 255, 0.04);
}
.gt-visual--product,
.gt-visual--card {
    box-shadow: none;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.3));
}
.gt-visual--card img,
.gt-visual--splash img {
    outline: 1px solid rgba(255, 255, 255, 0.04);
}
.gt-visual__caption {
    margin: 14px 0 0;
    font-size: 0.875rem;
    color: var(--gt-muted);
    text-align: center;
    line-height: 1.5;
}

.gt-showcase {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 28px; margin-bottom: 48px;
}
.gt-showcase__card { margin: 0; }
.gt-showcase__card figcaption {
    margin-top: 14px;
    font-size: 0.875rem;
    color: var(--gt-muted);
    text-align: center;
    line-height: 1.5;
}
@media (max-width: 860px) {
    .gt-showcase { grid-template-columns: 1fr; }
}

.gt-visual--splash {
    max-width: none;
    width: 100%;
    margin: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}
.gt-visual--splash::before { display: none; }
.gt-visual--splash::after {
    inset: -15%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 65%);
}
.gt-visual--splash img {
    border-radius: 16px;
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

/* App section — texto con aire, imagen contenida */
.gt-app-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}
.gt-app-head .gt-lead { margin-left: auto; margin-right: auto; }

.gt-app-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}
.gt-app-layout__visual {
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gt-app-layout__features {
    min-width: 0;
    display: flex;
    align-items: center;
}
.gt-app-layout__features .gt-app-grid {
    width: 100%;
}

.gt-app-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.gt-app-grid li {
    padding: 18px 20px; border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}
.gt-app-grid strong {
    display: block; font-size: 0.9375rem; color: #fff;
    margin-bottom: 6px;
}
.gt-app-grid span {
    font-size: 0.875rem; color: var(--gt-muted); line-height: 1.5;
}

@media (max-width: 900px) {
    .gt-app-layout { grid-template-columns: 1fr; }
    .gt-app-layout__visual { order: -1; }
    .gt-visual--splash img { max-width: 280px; }
}
@media (max-width: 560px) {
    .gt-app-grid { grid-template-columns: 1fr; }
}

.gt-split__visual { min-width: 0; }

/* ── UI mocks (HTML/CSS — distintos por sección) ── */
.gt-mock {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 48px rgba(37, 99, 235, 0.06);
    background: #0a1220;
    font-size: 11px;
}

.gt-mock__bar {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px;
    background: #0f1828;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.gt-mock__bar--sm { padding: 8px 14px; }
.gt-mock__dot { width: 8px; height: 8px; border-radius: 50%; }
.gt-mock__dot--r { background: #ff5f57; }
.gt-mock__dot--y { background: #febc2e; }
.gt-mock__dot--g { background: #28c840; }
.gt-mock__url {
    flex: 1; margin-left: 6px;
    padding: 4px 10px; border-radius: 6px;
    background: rgba(0, 0, 0, 0.35);
    color: #64748b; font-size: 0.82em;
    font-family: 'Consolas', 'SF Mono', monospace;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gt-mock__pill {
    padding: 3px 10px; border-radius: 999px;
    font-size: 0.72em; font-weight: 700; letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.06); color: #94a3b8;
    white-space: nowrap;
}
.gt-mock__pill--live { color: #34d399; background: rgba(52, 211, 153, 0.12); display: flex; align-items: center; gap: 5px; }
.gt-mock__pill--live i { width: 6px; height: 6px; border-radius: 50%; background: #34d399; animation: gt-pulse 2s ease infinite; }
.gt-mock__pill--gps { color: #22d3ee; background: rgba(34, 211, 238, 0.12); display: inline-flex; align-items: center; gap: 5px; font-size: 0.65rem; }
.gt-mock__pill--gps i { width: 5px; height: 5px; border-radius: 50%; background: #22d3ee; }
.gt-mock__pill--ok { color: #34d399; background: rgba(52, 211, 153, 0.12); }
@keyframes gt-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Dashboard hero */
.gt-mock__body--dash { display: flex; min-height: 300px; }
.gt-mock__nav {
    width: 118px; flex-shrink: 0; padding: 14px 10px;
    background: #0c1422; border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.gt-mock__nav-logo {
    font-family: var(--gt-font-display); font-size: 0.75em; font-weight: 800;
    color: #fff; margin-bottom: 16px; padding: 0 4px;
}
.gt-mock__nav-logo em { font-style: normal; color: var(--gt-cyan); }
.gt-mock__nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 3px; }
.gt-mock__nav li {
    padding: 6px 8px; border-radius: 6px; font-size: 0.82em;
    color: #64748b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gt-mock__nav li.on { background: rgba(37, 99, 235, 0.18); color: #93c5fd; }

.gt-mock__main { flex: 1; padding: 12px; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.gt-mock__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gt-mock__kpis div {
    padding: 10px; border-radius: 8px;
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05);
}
.gt-mock__kpis b { display: block; font-family: var(--gt-font-display); font-size: 1.35em; color: #fff; }
.gt-mock__kpis span { font-size: 0.72em; color: #64748b; }

.gt-mock__maplive {
    flex: 1; position: relative; border-radius: 8px; overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05); min-height: 180px;
}
.gt-mock__maplive svg { width: 100%; height: 100%; display: block; }
.gt-mock__path { stroke-dasharray: 500; stroke-dashoffset: 500; animation: gt-draw 2.5s ease forwards; }
.gt-mock__path--d2 { animation-delay: 0.4s; }
.gt-mock__path--d3 { animation-delay: 0.8s; }
@keyframes gt-draw { to { stroke-dashoffset: 0; } }
.gt-mock__veh { animation: gt-veh-pulse 3s ease-in-out infinite; }
.gt-mock__veh--2 { animation-delay: 0.7s; }
.gt-mock__veh--3 { animation-delay: 1.4s; }
@keyframes gt-veh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.65; transform: scale(1.1); } }

.gt-mock__maplive-tags {
    position: absolute; bottom: 8px; left: 8px; right: 8px;
    display: flex; flex-wrap: wrap; gap: 6px;
}
.gt-mock__maplive-tags span {
    padding: 3px 8px; border-radius: 4px; font-size: 0.68em;
    background: rgba(6, 13, 24, 0.85); color: #94a3b8; border: 1px solid rgba(255,255,255,0.06);
}

.gt-mock__fleet {
    width: 130px; flex-shrink: 0; padding: 12px 10px;
    background: #0c1422; border-left: 1px solid rgba(255, 255, 255, 0.05);
}
.gt-mock__fleet header {
    font-size: 0.72em; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: #64748b; margin-bottom: 10px;
}
.gt-mock__fleet ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.gt-mock__fleet li {
    font-size: 0.78em; color: #cbd5e1; display: flex; align-items: center; gap: 6px;
}
.gt-mock__fleet li small { display: block; color: #64748b; font-size: 0.9em; margin-left: auto; }
.gt-mock__status { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.gt-mock__status--ok { background: #34d399; }
.gt-mock__status--warn { background: #f97316; }

@media (max-width: 900px) {
    .gt-mock__fleet { display: none; }
    .gt-mock__nav { width: 90px; }
}

/* Mobile app */
.gt-mock--mobile {
    display: flex; align-items: center; gap: 28px;
    padding: 28px 32px; background: linear-gradient(145deg, #0a1220, #0f1a2e);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.gt-mock__phone {
    width: 220px; flex-shrink: 0;
    background: #1a1a1a; border-radius: 28px; padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.gt-mock__phone-notch {
    width: 60px; height: 5px; background: #333; border-radius: 3px;
    margin: 0 auto 8px;
}
.gt-mock__phone-screen {
    background: #0d1520; border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.gt-mock__app-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 14px; background: #0f1828;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85em; font-weight: 700; color: #fff;
}
.gt-mock__app-map { height: 90px; }
.gt-mock__app-map svg { width: 100%; height: 100%; display: block; }
.gt-mock__app-progress {
    padding: 8px 14px; font-size: 0.68em; color: #64748b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.gt-mock__app-progress-bar {
    height: 4px; background: linear-gradient(90deg, #22d3ee, #3b82f6);
    border-radius: 2px; margin-bottom: 4px;
}
.gt-mock__app-stops {
    list-style: none; padding: 8px 10px; margin: 0;
    display: grid; gap: 6px; max-height: 140px; overflow: hidden;
}
.gt-mock__app-stops li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.72em; color: #64748b; padding: 5px 6px; border-radius: 6px;
}
.gt-mock__app-stops li.done { color: #94a3b8; }
.gt-mock__app-stops li.current {
    background: rgba(37, 99, 235, 0.15); color: #fff;
    border: 1px solid rgba(59, 130, 246, 0.3);
}
.gt-mock__app-num {
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
    font-size: 0.85em; font-weight: 700; flex-shrink: 0;
}
.gt-mock__app-stops li.current .gt-mock__app-num { background: #2563eb; color: #fff; }
.gt-mock__app-stops li small { margin-left: auto; font-size: 0.9em; white-space: nowrap; }
.gt-mock__app-actions {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
    padding: 10px; border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.gt-mock__app-actions button {
    padding: 8px; border-radius: 6px; border: none; font-size: 0.68em; font-weight: 600;
    background: var(--gt-accent); color: #fff; cursor: default;
}
.gt-mock__app-actions button.ghost {
    background: transparent; color: #94a3b8; border: 1px solid rgba(255,255,255,0.1);
}
.gt-mock__mobile-caption {
    flex: 1; display: flex; flex-direction: column; gap: 8px;
}
.gt-mock__mobile-caption strong {
    font-family: var(--gt-font-display); font-size: 1.15em; color: #fff;
}
.gt-mock__mobile-caption span { font-size: 0.9em; color: var(--gt-muted); line-height: 1.5; }

@media (max-width: 700px) {
    .gt-mock--mobile { flex-direction: column; padding: 20px; text-align: center; }
}

/* Telemetry */
.gt-mock__body--tel { padding: 16px; }
.gt-mock__tel-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.gt-mock__tel-head strong { display: block; font-size: 1.1em; color: #fff; }
.gt-mock__tel-head span { font-size: 0.82em; color: #64748b; }
.gt-mock__tel-score {
    font-family: var(--gt-font-display); font-size: 2em; font-weight: 800; color: var(--gt-accent);
}
.gt-mock__tel-score small { font-size: 0.45em; color: #64748b; font-weight: 600; }

.gt-mock__tel-bars { display: grid; gap: 10px; margin-bottom: 16px; }
.gt-mock__tel-bars > div {
    display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto;
    gap: 4px 10px; align-items: center;
}
.gt-mock__tel-bars label { grid-column: 1; font-size: 0.78em; color: #94a3b8; }
.gt-mock__tel-bars span { grid-column: 2; grid-row: 1 / 3; font-size: 0.82em; font-weight: 700; color: #fff; }
.gt-mock__tel-bars .bar {
    grid-column: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden;
}
.gt-mock__tel-bars .bar i {
    display: block; height: 100%; border-radius: 3px;
    background: linear-gradient(90deg, #22d3ee, #3b82f6);
}

.gt-mock__tel-timeline { display: grid; gap: 8px; }
.gt-mock__tel-event {
    display: flex; gap: 12px; align-items: center;
    padding: 8px 10px; border-radius: 6px; font-size: 0.82em; color: #94a3b8;
    background: rgba(255, 255, 255, 0.02);
}
.gt-mock__tel-event.on {
    background: rgba(37, 99, 235, 0.12); color: #fff;
    border: 1px solid rgba(59, 130, 246, 0.25);
}
.gt-mock__tel-event time {
    font-family: monospace; font-size: 0.9em; color: var(--gt-cyan); min-width: 42px;
}

/* Excel import */
.gt-mock__body--excel { padding: 14px; }
.gt-mock__excel-drop {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 18px; margin-bottom: 12px; border-radius: 10px;
    border: 1px dashed rgba(34, 211, 238, 0.35);
    background: rgba(34, 211, 238, 0.04);
    text-align: center;
}
.gt-mock__excel-drop span { font-weight: 700; color: #fff; font-size: 0.95em; }
.gt-mock__excel-drop small { color: #64748b; font-size: 0.82em; }
.gt-mock__excel-table {
    width: 100%; border-collapse: collapse; font-size: 0.78em;
}
.gt-mock__excel-table th {
    text-align: left; padding: 6px 8px; color: #64748b; font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.gt-mock__excel-table td {
    padding: 7px 8px; color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.gt-mock__excel-table td.ok { color: #34d399; font-weight: 600; }
.gt-mock__excel-table td.warn { color: #f97316; font-weight: 600; }
.gt-mock__excel-foot { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }

/* ── Sections ── */
.gt-section { padding: clamp(72px, 9vw, 112px) 0; }
.gt-section--dark { background: transparent; }
.gt-section--slate { background: transparent; }
.gt-section--light {
    background: rgba(244, 246, 249, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #1e293b;
    position: relative;
    z-index: 2;
}

.gt-section-head { text-align: center; margin-bottom: 48px; }
.gt-section-head .gt-lead { margin-left: auto; margin-right: auto; }

.gt-h2 {
    font-family: var(--gt-font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800; line-height: 1.15; letter-spacing: -0.025em;
    margin: 0 0 14px;
}
.gt-h2--dark { color: #1e3a5f; }
.gt-lead {
    font-size: 1.02rem; line-height: 1.65; color: var(--gt-muted);
    max-width: 540px; margin: 0 0 32px;
}
.gt-lead--center { text-align: center; }
.gt-lead--dark { color: #64748b; }

/* Split product */
.gt-split {
    display: grid; grid-template-columns: 1fr 1.15fr;
    gap: clamp(32px, 5vw, 64px); align-items: center;
}
.gt-split__text .gt-lead { margin-bottom: 24px; }

.gt-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 14px;
}
.gt-list li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 0.9375rem; color: var(--gt-muted); line-height: 1.5;
    padding-left: 0;
}
.gt-list li::before {
    content: ''; flex: 0 0 20px; height: 20px; margin-top: 2px;
    border-radius: 4px;
    background: rgba(34, 211, 238, 0.12);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322d3ee' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center; background-size: 11px;
}

@media (max-width: 860px) {
    .gt-split { grid-template-columns: 1fr; }
    .gt-split__visual { order: -1; }
}

/* App section */
/* Modules grid */
.gt-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gt-border);
    border: 1px solid var(--gt-border);
    border-radius: 12px;
    overflow: hidden;
}
.gt-module {
    padding: 28px 24px;
    background: var(--gt-surface-2);
    transition: background .2s;
}
.gt-module:hover { background: #131f32; }
.gt-module__num {
    display: block; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.12em; color: var(--gt-cyan);
    margin-bottom: 12px;
}
.gt-module h3 {
    font-family: var(--gt-font-display);
    font-size: 1rem; font-weight: 700;
    margin: 0 0 8px; color: #fff;
}
.gt-module p {
    margin: 0; font-size: 0.875rem;
    color: var(--gt-muted); line-height: 1.55;
}

@media (max-width: 768px) {
    .gt-modules { grid-template-columns: 1fr; }
}

/* Plans */
.gt-plans {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; align-items: stretch;
}
.gt-plan {
    position: relative;
    background: #fff; border-radius: 14px;
    border: 1px solid #e2e8f0;
    display: flex; flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.gt-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(30, 58, 95, 0.08);
}
.gt-plan--featured {
    border-color: #3b82f6;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}
.gt-plan__badge {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    padding: 4px 14px; border-radius: 999px;
    background: #2563eb; color: #fff;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    white-space: nowrap;
}
.gt-plan__head {
    padding: 28px 24px 20px;
    border-bottom: 1px solid #f1f5f9;
}
.gt-plan--featured .gt-plan__head {
    background: linear-gradient(180deg, #eff6ff, #fff);
    padding-top: 32px;
}
.gt-plan__tier {
    display: block;
    font-family: var(--gt-font-display);
    font-size: 1.4rem; font-weight: 800; color: #1e3a5f;
    margin-bottom: 6px;
}
.gt-plan__head p {
    margin: 0; font-size: 0.875rem; color: #64748b; line-height: 1.5;
}
.gt-plan__list {
    list-style: none; padding: 20px 24px; margin: 0; flex: 1;
    display: grid; gap: 10px;
}
.gt-plan__list li {
    font-size: 0.875rem; display: flex; gap: 8px;
    align-items: flex-start; line-height: 1.4;
}
.gt-plan__list li.on { color: #334155; }
.gt-plan__list li.on::before { content: '✓'; color: #059669; font-weight: 700; flex-shrink: 0; }
.gt-plan__list li.off { color: #94a3b8; }
.gt-plan__list li.off::before { content: '—'; color: #cbd5e1; flex-shrink: 0; }

.gt-plan__btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin: 0 24px 24px; padding: 15px 22px;
    border-radius: 12px; font-weight: 700; font-size: 0.9375rem;
    text-decoration: none; border: none;
    background: linear-gradient(135deg, #1e3a5f 0%, #152a45 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.2);
    transition: transform .22s, box-shadow .22s, filter .22s;
}
.gt-plan__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30, 58, 95, 0.28);
    filter: brightness(1.06);
}
.gt-plan__btn--featured {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 45%, #3b82f6 100%);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.35);
    color: #fff;
}
.gt-plan__btn--featured:hover {
    box-shadow: 0 10px 36px rgba(37, 99, 235, 0.45);
}
.gt-plan__btn--premium {
    background: linear-gradient(135deg, #0f1f35 0%, #1e3a5f 50%, #2563eb 100%);
    box-shadow: 0 4px 20px rgba(15, 31, 53, 0.25);
}
.gt-plan__btn svg { flex-shrink: 0; opacity: 0.9; }

@media (max-width: 900px) {
    .gt-plans { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* CTA */
.gt-cta {
    padding: 80px 0; text-align: center;
    background: transparent;
    border-block: 1px solid var(--gt-border);
}
.gt-cta h2 {
    font-family: var(--gt-font-display);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 800; margin: 0 0 12px;
}
.gt-cta p { color: var(--gt-muted); margin: 0 0 28px; }
.gt-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Contact */
.gt-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.gt-contact__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }

.gt-address {
    font-style: normal; font-size: 0.9rem;
    color: #64748b; line-height: 1.7;
}
.gt-address strong { color: #1e3a5f; display: block; margin-bottom: 4px; }
.gt-address a { color: #2563eb; text-decoration: none; }
.gt-address a:hover { text-decoration: underline; }

.gt-form {
    background: #fff; padding: 32px; border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(30, 58, 95, 0.05);
}
.gt-form label {
    display: block; margin-bottom: 14px;
    font-size: 0.85rem; font-weight: 600; color: #334155;
}
.gt-form input,
.gt-form textarea {
    width: 100%; margin-top: 6px; padding: 12px 14px;
    border-radius: 8px; border: 1px solid #e2e8f0;
    font: inherit; background: #f8fafc;
    transition: border-color .2s, box-shadow .2s;
}
.gt-form input:focus,
.gt-form textarea:focus {
    outline: none; border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15); background: #fff;
}

/* Botón del formulario — mismo estilo que Acceso Consola */
.gt-form .gt-btn--primary {
    margin-top: 6px;
}
.gt-form .gt-btn--primary svg {
    flex-shrink: 0;
    opacity: 0.95;
}

.gt-wa {
    display: inline-flex; align-items: center;
    padding: 12px 20px; background: #25d366; color: #fff;
    border-radius: 8px; font-weight: 600; text-decoration: none;
    transition: filter .2s;
}
.gt-wa:hover { filter: brightness(1.06); }
.gt-phone {
    display: inline-flex; padding: 12px 20px;
    border: 2px solid #1e3a5f; border-radius: 8px;
    font-weight: 600; color: #1e3a5f; text-decoration: none;
}
.gt-phone:hover { background: #f1f5f9; }

@media (max-width: 860px) { .gt-contact { grid-template-columns: 1fr; } }

/* Footer */
.gt-footer {
    padding: 56px 0 0;
    background: transparent;
    border-top: 1px solid var(--gt-border);
}
.gt-footer__grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px; padding-bottom: 40px;
}
.gt-footer__note { color: var(--gt-muted); font-size: 0.875rem; margin: 0; }
.gt-footer a {
    color: var(--gt-muted); text-decoration: none;
    font-size: 0.875rem; display: block; padding: 3px 0;
    transition: color .2s;
}
.gt-footer a:hover { color: var(--gt-cyan); }
.gt-footer h4 {
    color: #fff; font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.1em; margin: 0 0 12px; font-weight: 700;
}
.gt-footer__legal { font-size: 0.8rem; color: var(--gt-muted); margin: 0; line-height: 1.5; }
.gt-footer__bar {
    padding: 20px 0; border-top: 1px solid var(--gt-border);
    font-size: 0.8rem; color: #64748b;
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
}
@media (max-width: 768px) { .gt-footer__grid { grid-template-columns: 1fr 1fr; } }

/* WA fab */
.gt-wa-fab {
    position: fixed; right: 20px; bottom: 20px; z-index: 200;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none; transition: transform .2s;
}
.gt-wa-fab:hover { transform: scale(1.05); }

/* Reveal */
[data-reveal] {
    opacity: 0; transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; }
    .gt-mock__path, .gt-mock__veh, .gt-mock__pill--live i { animation: none; }
    .gt-mock__path { stroke-dashoffset: 0; }
}
