    :root {
      --bg: #030712;
      --surface: #07111f;
      --line: rgba(148, 163, 184, 0.16);
      --text: #f8fbff;
      --muted: #a7b4c7;
      --muted-2: #7e8ea6;
      --blue: #2f80ff;
      --cyan: #57e8ff;
      --green: #20e3b2;
      --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
      --radius-lg: 24px;
      --max: 1180px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    *:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; border-radius: 4px; }
    html { scroll-behavior: smooth; }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 20% 0%, rgba(47, 128, 255, 0.22), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(87, 232, 255, 0.13), transparent 25%),
        var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }

    .container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 13px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 0.94rem;
      font-weight: 800;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
      white-space: nowrap;
    }

    .btn-primary {
      color: #00111f;
      background: linear-gradient(135deg, var(--cyan), var(--blue));
      box-shadow: 0 18px 42px rgba(47, 128, 255, 0.32);
    }

    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 60px rgba(47, 128, 255, 0.42); }

    .btn-secondary {
      color: var(--text);
      border-color: rgba(255, 255, 255, 0.13);
      background: rgba(255, 255, 255, 0.055);
      backdrop-filter: blur(16px);
    }

    .btn-secondary:hover { transform: translateY(-3px); border-color: rgba(87, 232, 255, 0.45); background: rgba(87, 232, 255, 0.09); }

    .btn-whatsapp {
      color: white;
      background: linear-gradient(135deg, #25d366, #1ebe5d);
      border: none;
      box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
    }

    .btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 28px 60px rgba(37, 211, 102, 0.45); }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      color: var(--cyan);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 32px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--cyan), var(--blue));
    }

    .section { padding: 104px 0; position: relative; }

    .section-title {
      max-width: 800px;
      font-size: clamp(2.1rem, 4vw, 4rem);
      line-height: 1.02;
      letter-spacing: 0.01em;
      word-spacing: 0.05em;
      margin-bottom: 18px;
    }

    .section-copy { max-width: 680px; color: var(--muted); font-size: 1.05rem; }

    .nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 80;
      background: rgba(3, 7, 18, 0.72);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(22px);
    }

    .nav-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      font-size: 1.35rem;
      letter-spacing: -0.045em;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      background: linear-gradient(135deg, rgba(87, 232, 255, 0.95), rgba(47, 128, 255, 0.95));
      color: #00111f;
      box-shadow: 0 16px 35px rgba(47, 128, 255, 0.35);
    }

    .nav-links { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 0.92rem; font-weight: 750; }
    .nav-links a:not(.btn):hover { color: var(--cyan); }

    .hero { min-height: 100vh; padding: 132px 0 72px; position: relative; overflow: hidden; }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
      background-size: 70px 70px;
      mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
      -webkit-mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
      pointer-events: none;
    }

    .hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 58px; align-items: center; }

    .hero-badge {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      padding: 9px 14px;
      border-radius: 999px;
      color: var(--cyan);
      border: 1px solid rgba(87, 232, 255, 0.28);
      background: rgba(87, 232, 255, 0.08);
      font-size: 0.8rem;
      font-weight: 850;
    }

    .pulse {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 rgba(32, 227, 178, 0.5);
      animation: pulse 1.7s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(32, 227, 178, 0.52); }
      70% { box-shadow: 0 0 0 13px rgba(32, 227, 178, 0); }
      100% { box-shadow: 0 0 0 0 rgba(32, 227, 178, 0); }
    }

    .hero h1 {
      max-width: 760px;
      font-size: clamp(3.2rem, 7.2vw, 7rem);
      line-height: 0.98;
      letter-spacing: 0.01em;
      word-spacing: 0.04em;
      margin-bottom: 26px;
    }

    .gradient-text {
      background: linear-gradient(135deg, #ffffff 0%, #ddf8ff 42%, var(--cyan) 72%, var(--blue) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p { max-width: 620px; color: var(--muted); font-size: 1.14rem; margin-bottom: 34px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

    .mini-proof { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--muted-2); font-size: 0.88rem; font-weight: 750; }
    .mini-proof strong { color: var(--text); }
    .avatar-row { display: flex; align-items: center; }
    .avatar { width: 34px; height: 34px; margin-left: -8px; border-radius: 50%; border: 2px solid var(--bg); background: linear-gradient(135deg, var(--cyan), var(--blue)); }
    .avatar:first-child { margin-left: 0; }

    .product-shot { position: relative; min-height: 600px; }

    .dashboard {
      position: relative;
      z-index: 2;
      border-radius: 36px;
      background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: var(--shadow);
      overflow: hidden;
      backdrop-filter: blur(22px);
    }

    .dashboard-top { height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.05); }
    .window-dots { display: flex; gap: 7px; }
    .window-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.22); }
    .dashboard-status { color: var(--green); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
    .dashboard-body { padding: 18px; display: grid; grid-template-columns: 1fr 0.9fr; gap: 16px; }

    .map-card { position: relative; min-height: 430px; border-radius: 28px; overflow: hidden; background: var(--surface); border: 1px solid rgba(255, 255, 255, 0.1); }
    .map-card img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; filter: saturate(0.95) contrast(1.05) brightness(0.76); }
    .lima-map-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    .map-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 42%, rgba(87, 232, 255, 0.18), transparent 18%), linear-gradient(180deg, rgba(3, 7, 18, 0.04), rgba(3, 7, 18, 0.42)); }
    .route-svg { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; pointer-events: none; }

    .vehicle-chip {
      position: absolute;
      z-index: 4;
      left: 24px;
      bottom: 24px;
      right: 24px;
      padding: 15px;
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 13px;
      border-radius: 22px;
      background: rgba(3, 7, 18, 0.74);
      border: 1px solid rgba(87, 232, 255, 0.24);
      backdrop-filter: blur(18px);
    }

    .vehicle-chip img { width: 58px; height: 58px; min-height: 58px; object-fit: cover; border-radius: 16px; filter: none; }
    .vehicle-chip strong { display: block; margin-bottom: 3px; letter-spacing: -0.02em; }
    .vehicle-chip span { color: var(--muted); font-size: 0.84rem; font-weight: 700; }

    .side-panel { display: grid; gap: 14px; }
    .metric-card { padding: 18px; border-radius: 24px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); }
    .metric-label { color: var(--muted-2); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
    .metric-value { font-size: 1.8rem; font-weight: 900; letter-spacing: -0.055em; margin-bottom: 8px; }
    .metric-note { color: var(--muted); font-size: 0.84rem; font-weight: 650; }
    .progress { height: 8px; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, 0.1); margin-top: 12px; }
    .progress span { display: block; width: 82%; height: 100%; background: linear-gradient(90deg, var(--green), var(--cyan), var(--blue)); border-radius: 999px; }

    .trust-strip { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.025); }
    .trust-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
    .trust-label { color: var(--muted-2); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; white-space: nowrap; }
    
    /* Desktop default: keep original layout without marquee effect */
    .marquee-wrapper, .marquee-track { display: contents; }
    .pill.mobile-duplicate { display: none !important; }

    .pill {
      padding: 10px 15px;
      border-radius: 999px;
      color: var(--muted);
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
      font-size: 0.82rem;
      font-weight: 800;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
      will-change: transform;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }

    .pill:hover,
    .pill:focus-visible {
      transform: translateY(-6px);
      box-shadow: 0 14px 36px rgba(2,6,23,0.45);
      border-color: rgba(87,232,255,0.12);
      background: rgba(255,255,255,0.055);
      color: var(--text);
      outline: none;
    }

    /* Mobile: activate smooth marquee */
    @media (max-width: 768px) {
      .trust-strip { overflow: hidden; }
      .trust-strip .container { flex-direction: column; align-items: flex-start; gap: 16px; width: 100%; padding-inline: 0; }
      .trust-strip .trust-label { padding-inline: 20px; }
      
      .marquee-wrapper {
        display: flex;
        width: 100%;
        overflow: hidden;
        /* Premium mask for smooth fade out at edges */
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
      }
      
      .marquee-track {
        display: flex;
        gap: 12px;
        padding-left: 20px;
        width: max-content;
        animation: marquee-scroll 24s linear infinite;
        will-change: transform;
      }
      
      .pill.mobile-duplicate { display: inline-flex !important; }
      
      @keyframes marquee-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 6px)); } /* Half width + half gap */
      }
    }

    .pill:active {
      transform: translateY(-2px) scale(0.997);
      box-shadow: 0 10px 20px rgba(2,6,23,0.35);
    }

    .services { background: radial-gradient(circle at 85% 10%, rgba(47, 128, 255, 0.13), transparent 28%), linear-gradient(180deg, var(--bg), #050b16); }
    .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 46px; }

    .service-card {
      min-height: 342px;
      padding: 24px;
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    }

    .service-card:hover { transform: translateY(-9px); border-color: rgba(87, 232, 255, 0.38); box-shadow: 0 26px 80px rgba(47, 128, 255, 0.15); will-change: transform; }
    .service-card::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: 0.28s ease; background: radial-gradient(circle at 80% 0%, rgba(87, 232, 255, 0.22), transparent 34%); pointer-events: none; }
    .service-card:hover::before { opacity: 1; }

    .feature-item { position: relative; }
    .feature-item .item-inner {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 16px;
      padding: 18px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(255, 255, 255, 0.09);
      transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
      align-items: center;
      text-align: center;
    }

    .feature-item .item-inner > div { display: block; }

    .feature-item .item-inner { transition: transform 0.28s ease; will-change: transform; }
    .feature-item:hover .item-inner { transform: translateY(-6px); border-color: rgba(87, 232, 255, 0.28); box-shadow: 0 18px 40px rgba(47, 128, 255, 0.08); }
    .feature-item::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: 0.28s ease; background: radial-gradient(circle at 80% 0%, rgba(87, 232, 255, 0.12), transparent 34%); pointer-events: none; }
    .feature-item:hover::before { opacity: 1; }

    .process-card {
      padding: 28px;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .process-card { position: relative; }
    .process-card .card-inner { transition: transform 0.28s ease; will-change: transform; }
    .process-card:hover .card-inner { transform: translateY(-6px); }
    .process-card:hover { border-color: rgba(87, 232, 255, 0.28); box-shadow: 0 18px 40px rgba(47, 128, 255, 0.08); }
    .process-card::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: 0.28s ease; background: radial-gradient(circle at 80% 0%, rgba(87, 232, 255, 0.12), transparent 34%); pointer-events: none; }
    .process-card:hover::before { opacity: 1; }

    .service-image { position: relative; z-index: 1; width: 100%; height: 210px; margin-bottom: 20px; border-radius: 18px; overflow: hidden; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03); }
    .service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3, 7, 18, 0.02), rgba(3, 7, 18, 0.24)), radial-gradient(circle at 70% 20%, rgba(87, 232, 255, 0.18), transparent 36%); pointer-events: none; }
    .service-image img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.01); transition: transform 0.45s ease, filter 0.45s ease; filter: saturate(1.04) contrast(1.02) brightness(0.94); }
    .service-card:hover .service-image img { transform: scale(1.075); filter: saturate(1.12) contrast(1.04) brightness(1); }

    .service-card h3, .service-card p, .service-card ul { position: relative; z-index: 1; }
    .service-card h3 { margin-bottom: 12px; font-size: 1.14rem; letter-spacing: -0.035em; }
    .service-card p { margin-bottom: 18px; color: var(--muted); font-size: 0.94rem; }
    .service-card ul { display: grid; gap: 8px; list-style: none; color: var(--muted-2); font-size: 0.86rem; font-weight: 700; }
    .service-card li::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 900; }

    .showcase { background: linear-gradient(180deg, #050b16, var(--bg)); }
    .showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
    .fleet-gallery { display: grid; grid-template-columns: 1fr 0.75fr; gap: 16px; min-height: 540px; }
    .fleet-photo { position: relative; overflow: hidden; border-radius: 32px; border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: var(--shadow); background: var(--surface); }
    .fleet-photo.large { min-height: 540px; }
    .fleet-column { display: grid; gap: 16px; }
    .fleet-photo.small { min-height: 262px; }
    .fleet-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02) contrast(1.02) brightness(0.86); }
    .fleet-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(3, 7, 18, 0.58)); }

    .feature-list { display: grid; gap: 15px; margin-top: 34px; }
    .feature-item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 18px; border-radius: 24px; background: rgba(255, 255, 255, 0.055); border: 1px solid rgba(255, 255, 255, 0.09); }
    .feature-check { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 17px; color: var(--green); background: rgba(32, 227, 178, 0.09); border: 1px solid rgba(32, 227, 178, 0.2); font-weight: 950; }
    .feature-item h3 { margin-bottom: 4px; font-size: 1rem; letter-spacing: -0.025em; }
    .feature-item p { color: var(--muted); font-size: 0.94rem; text-align: left; }
    .feature-item h3 { color: var(--text); text-align: left; }

    .process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
    .process-card { padding: 28px; border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035)); border: 1px solid rgba(255, 255, 255, 0.1); }
    .step { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 16px; color: #00111f; background: linear-gradient(135deg, var(--cyan), var(--blue)); font-weight: 950; box-shadow: 0 16px 30px rgba(47, 128, 255, 0.28); }
    .process-card h3 { margin-bottom: 10px; font-size: 1.18rem; letter-spacing: -0.035em; }
    .process-card p { color: var(--muted); font-size: 0.95rem; }

    .cta { padding: 104px 0; background: radial-gradient(circle at 50% 0%, rgba(47, 128, 255, 0.25), transparent 35%), linear-gradient(180deg, var(--bg), #01040c); }
    .cta-box { display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: center; gap: 38px; padding: 38px; border-radius: 38px; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)); border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: var(--shadow); overflow: hidden; }
    .cta-box h2 { margin-bottom: 16px; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.02; letter-spacing: 0.01em; word-spacing: 0.05em; }
    .cta-strong { color: var(--cyan); font-weight: 900; }
    .cta-box p { max-width: 620px; margin-bottom: 26px; color: var(--muted); font-size: 1.03rem; }

    .contact-form { padding: 22px; border-radius: 30px; background: rgba(3, 7, 18, 0.68); border: 1px solid rgba(255, 255, 255, 0.12); backdrop-filter: blur(18px); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .field { margin-bottom: 12px; }
    .field label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 0.79rem; font-weight: 850; }
    input, select, textarea { width: 100%; padding: 13px 14px; color: var(--text); outline: none; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.06); }
    select option { color: #0f172a; background: #f8fafc; }
    textarea { min-height: 98px; resize: vertical; }
    input:focus, select:focus, textarea:focus { border-color: rgba(87, 232, 255, 0.58); box-shadow: 0 0 0 4px rgba(87, 232, 255, 0.1); }
    .submit { width: 100%; margin-top: 6px; border: 0; }

    .footer { padding: 36px 0; background: #01040c; border-top: 1px solid var(--line); color: var(--muted-2); }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
    .footer-links { display: flex; gap: 18px; flex-wrap: wrap; font-weight: 800; font-size: 0.9rem; }
    .footer-links a:hover { color: var(--cyan); }

    .whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: white; background: #25d366; font-size: 1.65rem; box-shadow: 0 18px 46px rgba(37, 211, 102, 0.36); transition: transform 0.2s ease; }
    .whatsapp-float:hover { transform: scale(1.1); }

    /* Mobile sticky CTA removed: styles and element cleaned up for mobile */

    /* Reveal animations (used with IntersectionObserver) */
    .reveal { opacity: 0; transform: translateY(12px); will-change: transform, opacity; transition: opacity .72s cubic-bezier(.2,.9,.2,1), transform .72s cubic-bezier(.2,.9,.2,1); }
    .reveal--visible { opacity: 1; transform: translateY(0); }

    /* Route & GPS animations */
    .route-path { stroke-dasharray: 18 12; stroke-dashoffset: 0; animation: dash 2.6s linear infinite; transition: stroke 0.3s ease; }
    @keyframes dash { to { stroke-dashoffset: -30; } }

    .gps-pulse { fill-opacity: 0.12; animation: gpsPulse 1.8s ease-out infinite; transform-origin: center; }
    @keyframes gpsPulse { 0% { r: 6; fill-opacity: 0.18; } 60% { r: 14; fill-opacity: 0.06; } 100% { r: 20; fill-opacity: 0; } }

    @media (max-width: 1060px) {
      .hero-layout, .showcase-grid, .cta-box { grid-template-columns: 1fr; }
      .product-shot { min-height: auto; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 760px) {
      .nav-inner { height: 68px; }
      .nav-links a:not(.btn) { display: none; }
      .nav-links { gap: 0; }
      .nav-links .btn { padding: 11px 14px; min-height: 42px; font-size: 0.82rem; }
      .brand { font-size: 1.18rem; }
      .brand-mark { width: 38px; height: 38px; }
      .hero { padding: 106px 0 56px; }
      .hero h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
      .hero p { font-size: 1.02rem; }
      .hero-actions .btn { width: 100%; }
      .dashboard-body { grid-template-columns: 1fr; }
      .map-card, .map-card img { min-height: 330px; }
      .services-grid { grid-template-columns: 1fr; }
      .service-image { height: 230px; }
      .fleet-gallery { grid-template-columns: 1fr; min-height: auto; }
      .fleet-photo.large, .fleet-photo.small { min-height: 280px; }
      .form-row { grid-template-columns: 1fr; }
      .section { padding: 76px 0; }
      .cta-box { padding: 24px; border-radius: 30px; }

      /* Mobile sticky CTA removed to declutter mobile footer; keep whatsapp float hidden on mobile */
      .whatsapp-float { display: none; }
    }

    /* Mobile: hide the floating tracking card by default, allow it to be shown
       when `.show-mobile` is added (toggle button will add/remove this class) */
    @media (max-width: 768px) {
      .vehicle-chip {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
      }
      .vehicle-chip.show-mobile {
        display: grid !important;
        visibility: visible !important;
        pointer-events: auto !important;
      }
      /* keep map visuals intact */
      .map-card { border-radius: 24px; }
      .map-card .lima-map-img { border-radius: 24px; }

      /* mobile toggle button */
      .mobile-toggle {
        display: inline-flex;
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 6;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(3, 7, 18, 0.72);
        border: 1px solid rgba(255,255,255,0.06);
        color: var(--text);
        font-weight: 700;
        font-size: 0.9rem;
        cursor: pointer;
      }
    }

    /* Extra safeguard for narrow phones (~390px width like iPhone 13/14) */
    @media (max-width: 400px) {
      .vehicle-chip { display: none !important; visibility: hidden !important; }
      .vehicle-chip.show-mobile { display: grid !important; visibility: visible !important; pointer-events: auto !important; }
    }

    /* --- Refactor: Balanced showcase / beneficios styles --- */
    .showcase-refactor {
      background: linear-gradient(180deg, #050b16, var(--bg));
      padding: 64px 0;
    }
    .showcase-refactor .container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
    .showcase-grid-ref { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }

    /* collage */
    .collage-grid { display: grid; grid-template-columns: 1fr 0.7fr; gap: 16px; height: auto; align-items: center; }
    .collage-large { grid-row: 1 / span 2; overflow: hidden; border-radius: 24px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 14px 32px rgba(2,6,23,0.55); background: var(--surface); height: 460px; }
    .collage-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; height: auto; }
    .collage-small { overflow: hidden; border-radius: 20px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 12px 30px rgba(2,6,23,0.5); background: var(--surface); height: 220px; }
    .collage-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }

    /* features */
    .features { display: flex; flex-direction: column; gap: 22px; justify-content: flex-start; }
    .features .section-title { margin-bottom: 6px; }
    .features .section-copy { margin-bottom: 14px; color: var(--muted); }

    .features-grid { display: grid; grid-template-columns: 1fr; gap: 20px; grid-auto-rows: 1fr; }

    .feature-card { height: 100%; display: block; padding: 22px; border-radius: 18px; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 8px 20px rgba(2,6,23,0.35); overflow: hidden; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; position: relative; }
    .feature-card .card-inner { display:flex; gap:16px; align-items:flex-start; height:100%; transition: transform .28s ease; will-change: transform; }
    .feature-card .feature-check { flex: 0 0 56px; width:56px; height:56px; display:grid; place-items:center; border-radius:14px; color:var(--green); background:rgba(32,227,178,0.08); border:1px solid rgba(32,227,178,0.18); font-weight:950; font-size:1.05rem; }
    .feature-card h3 { margin:0 0 8px 0; font-size:1.02rem; line-height:1.15; color:var(--text); }
    .feature-card p { margin:0; color:var(--muted); line-height:1.4; font-size:0.95rem; }
    .feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(2,6,23,0.5); border-color: rgba(87,232,255,0.16); }
    .feature-card:hover .card-inner { transform: translateY(-6px); }
    .feature-card::before { content: ""; pointer-events: none; position:absolute; inset:0; background: radial-gradient(circle at 80% 0%, rgba(87,232,255,0.06), transparent 28%); opacity:0; transition: opacity .28s ease; }
    .feature-card:hover::before { opacity:1; }

    @media (max-width:900px) {
      .showcase-grid-ref { grid-template-columns: 1fr; }
      .collage-grid { height:auto; grid-template-columns:1fr; grid-auto-rows:auto; gap:12px; }
      .collage-large { grid-row:auto; border-radius:20px; height:320px; }
      .collage-small { height:180px; border-radius:14px; }
      .feature-card { padding:18px; border-radius:14px; }
    }

    /* SEO landing layer: reuses the visual system above and only adds editorial layouts. */
    .seo-page { overflow: hidden; }
    .seo-hero { min-height: auto; padding-bottom: 84px; }
    /* Taxi ejecutivo: headline reduced ~40% to keep the promise compact and scannable. */
    .seo-compact-headline .hero h1 { font-size: clamp(2.2rem, 4.3vw, 4.2rem); }
    .seo-hero-visual { min-height: 500px; overflow: hidden; border-radius: 32px; border: 1px solid rgba(255,255,255,.12); background: var(--surface); box-shadow: var(--shadow); }
    .seo-hero-visual img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; filter: saturate(.9) contrast(1.05) brightness(.72); }
    .seo-visual-caption { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; display: flex; justify-content: space-between; gap: 16px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(3,7,18,.72); backdrop-filter: blur(14px); }
    .seo-visual-caption span { color: var(--muted); font-size: .86rem; }
    .breadcrumb { display: flex; gap: 10px; align-items: center; padding-top: 22px; color: var(--muted-2); font-size: .84rem; }
    .breadcrumb a { color: var(--cyan); }
    .seo-narrow { max-width: 820px; }
    .seo-narrow p, .seo-two-col p { margin: 0 0 18px; color: var(--muted); font-size: 1.04rem; }
    .seo-band { background: linear-gradient(180deg, #050b16, var(--bg)); }
    .seo-grid { display: grid; gap: 18px; margin-top: 42px; }
    .seo-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .seo-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
    .seo-content-image { background: radial-gradient(circle at 10% 30%, rgba(47,128,255,.12), transparent 28%), var(--bg); }
    .seo-image-card { margin: 0; overflow: hidden; border-radius: 28px; border: 1px solid rgba(255,255,255,.12); background: var(--surface); box-shadow: var(--shadow); }
    .seo-image-card img { width: 100%; height: 460px; object-fit: cover; filter: saturate(.95) contrast(1.04) brightness(.8); }
    .seo-image-card figcaption { padding: 14px 18px 17px; color: var(--muted-2); font-size: .82rem; }
    .seo-sector-grid article { padding: 24px; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; background: rgba(255,255,255,.045); }
    .seo-sector-grid h3 { margin-bottom: 8px; font-size: 1.05rem; }
    .seo-sector-grid p { color: var(--muted); font-size: .92rem; }
    .seo-inline-links { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 34px; color: var(--cyan); font-weight: 800; }
    .seo-inline-links a:hover { color: var(--text); }
    .seo-faq details { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
    .seo-faq details:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
    .seo-faq summary { cursor: pointer; color: var(--text); font-weight: 800; list-style-position: outside; }
    .seo-faq details p { margin: 12px 0 0 20px; color: var(--muted); }
    .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
    .service-link { width: 100%; margin-top: 20px; font-size: .82rem; }
    @media (max-width: 900px) { .seo-grid-3, .seo-two-col { grid-template-columns: 1fr; } .seo-reverse > figure { order: 2; } .seo-image-card img { height: 360px; } }
    @media (max-width: 760px) { .seo-hero-visual, .seo-hero-visual img { min-height: 360px; } .seo-visual-caption { flex-direction: column; gap: 3px; } .breadcrumb { padding-inline: 20px; } }

    /* Blog section */
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 42px; }
    .blog-card { padding: 28px; border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035)); border: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 14px; }
    .blog-meta { display: flex; align-items: center; gap: 12px; }
    .blog-cat-label { font-size: 0.72rem; font-weight: 900; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.1em; }
    .blog-meta time { font-size: 0.78rem; color: var(--muted-2); }
    .blog-card h3 { font-size: 1rem; font-weight: 800; line-height: 1.35; }
    .blog-card h3 a { color: var(--text); text-decoration: none; }
    .blog-card h3 a:hover { color: var(--cyan); }
    .blog-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; flex: 1; }
    .blog-link { font-size: 0.88rem; font-weight: 800; color: var(--cyan); text-decoration: none; }
    .hero h1.article-title { font-size: clamp(2.2rem, 4.3vw, 4.2rem); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 24px; }
    .article-lead { font-size: 1.15rem; color: var(--muted); line-height: 1.7; max-width: 720px; }
    .article-cta-box { margin-top: 56px; padding: 32px; border-radius: 24px; background: linear-gradient(135deg, rgba(47,128,255,0.1), rgba(87,232,255,0.06)); border: 1px solid rgba(87,232,255,0.2); }
    @media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

    /* Testimonials section */
    .testimonials-stat { margin: 36px 0 0; }
    .testimonials-stat .stat-number { font-size: clamp(3rem, 6vw, 5rem); font-weight: 900; background: linear-gradient(135deg, var(--cyan), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .testimonials-stat .stat-label { font-size: 1rem; color: var(--muted); margin-top: 8px; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 42px; }
    .testimonial-card { padding: 28px; border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035)); border: 1px solid rgba(255,255,255,0.1); }
    .testimonial-card blockquote { font-size: 1rem; color: var(--muted); font-style: italic; margin-bottom: 20px; line-height: 1.6; }
    .testimonial-card cite { display: block; font-size: 0.84rem; font-style: normal; color: var(--cyan); font-weight: 700; }
    @media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

    /* Zones highlight */
    .zones-highlight { margin-top: 36px; padding: 28px 32px; border-radius: 22px; background: rgba(47,128,255,0.06); border: 1px solid rgba(47,128,255,0.18); }
    .zones-highlight h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
    .zones-highlight p { color: var(--muted); font-size: 0.97rem; line-height: 1.65; margin: 0; }
    .zones-highlight strong { color: var(--text); }

    /* Client logos in testimonial cards */
    .client-logo { height: 36px; width: auto; max-width: 140px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.75; margin-bottom: 4px; }
