:root {
  --ink: #071827;
  --muted: #607086;
  --line: #dce8f2;
  --paper: #ffffff;
  --soft: #eff6fb;
  --green: #13c987;
  --green-dark: #0f8d66;
  --blue: #0b72d9;
  --cyan: #16a9d6;
  --navy: #09263a;
  --shadow: 0 22px 60px rgba(6, 27, 49, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f6fafc;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 232, 242, 0.9);
  backdrop-filter: blur(14px);
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 22px; letter-spacing: 0; }
.logo img { width: 38px; height: 38px; border-radius: 8px; }
.site-nav nav { display: flex; justify-content: center; gap: 24px; color: var(--muted); font-weight: 800; font-size: 14px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.solid, .ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
}
.solid { background: var(--green); color: #062015; box-shadow: 0 12px 28px rgba(19, 201, 135, 0.26); }
.ghost { border: 1px solid var(--line); color: var(--navy); background: white; }
.ghost.light { background: rgba(255, 255, 255, 0.12); color: white; border-color: rgba(255, 255, 255, 0.36); }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 96px clamp(18px, 5vw, 72px) 120px;
  color: white;
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.94) 0%, rgba(7, 24, 39, 0.82) 43%, rgba(7, 24, 39, 0.45) 100%),
    radial-gradient(circle at 82% 24%, rgba(19, 201, 135, 0.42), transparent 30%),
    linear-gradient(135deg, #071827 0%, #0b3552 54%, #0b5b69 100%);
  overflow: hidden;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 690px;
  font-size: clamp(40px, 5.4vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}
.lead {
  margin: 22px 0 0;
  max-width: 610px;
  color: #d6e4ef;
  font-size: 20px;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.phone-card, .ops-card, .route-card {
  position: absolute;
  right: clamp(18px, 7vw, 96px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.phone-card {
  top: 126px;
  width: min(390px, 32vw);
  min-height: 440px;
  padding: 20px;
  border-radius: 24px;
}
.phone-top { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; margin-bottom: 26px; }
.phone-top span { width: 34px; height: 34px; border-radius: 50%; background: var(--green); }
.phone-top strong { font-size: 14px; }
.phone-top em { color: #9cf3d1; font-style: normal; font-size: 12px; }
.bubble {
  width: fit-content;
  max-width: 86%;
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: 16px;
  line-height: 1.4;
  font-weight: 700;
  font-size: 14px;
}
.bubble.in { background: rgba(255, 255, 255, 0.92); color: var(--ink); border-bottom-left-radius: 4px; }
.bubble.out { margin-left: auto; background: #d6ffe9; color: #073e2b; border-bottom-right-radius: 4px; }
.typing { display: flex; gap: 5px; width: 58px; padding: 12px; border-radius: 999px; background: rgba(255,255,255,0.92); }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: #91a2b4; }
.ops-card {
  top: 440px;
  width: 240px;
  padding: 18px;
  border-radius: 16px;
}
.ops-card span, .route-card span { color: #b9d5e8; font-weight: 800; font-size: 12px; }
.ops-card strong, .route-card strong { display: block; margin-top: 8px; font-size: 24px; }
.ops-card small { display: block; margin-top: 8px; color: #9cf3d1; }
.route-card {
  right: clamp(280px, 29vw, 520px);
  bottom: 72px;
  width: 300px;
  padding: 18px;
  border-radius: 16px;
}

.section {
  padding: 84px clamp(18px, 5vw, 72px);
  max-width: 1280px;
  margin: 0 auto;
}
.section-head { max-width: 760px; margin-bottom: 28px; }
.section h2, .cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}
.section p, .cta p { color: var(--muted); font-size: 17px; line-height: 1.65; }
.metrics, .feature-grid, .plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.metrics article, .feature-grid article, .plans article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 14px 38px rgba(7, 24, 39, 0.07);
}
.metrics strong { display: block; font-size: 46px; color: var(--blue); margin-bottom: 10px; }
.metrics span { color: var(--muted); font-weight: 800; line-height: 1.45; }
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 36px;
}
.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #e7fff4;
  color: var(--green-dark);
  font-weight: 1000;
  margin-bottom: 14px;
}
.feature-grid h3, .plans h3 { margin: 0 0 8px; font-size: 20px; }
.feature-grid p, .plans p { margin: 0; font-size: 15px; }
.dark {
  max-width: none;
  margin: 0;
  background: var(--navy);
  color: white;
}
.dark .section-head, .dark-copy, .pipeline { max-width: 1160px; margin-left: auto; margin-right: auto; }
.dark h2 { color: white; }
.dark-copy { color: #bfd1df; }
.pipeline {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr 42px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  margin-bottom: 24px;
}
.pipeline div {
  min-height: 82px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  font-weight: 900;
}
.pipeline span { height: 2px; background: var(--green); }
.plans article { min-height: 280px; }
.plans strong { display: block; margin: 6px 0 12px; color: var(--blue); font-size: 28px; }
.plans ul { margin: 18px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.9; }
.plans .featured { border-color: var(--green); box-shadow: 0 18px 52px rgba(19, 201, 135, 0.18); }

/* ===== Pricing section: planes y precios ===== */
.pricing-section { padding-top: 64px; }
.section-head.centered { max-width: 660px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered p:last-child { margin-left: auto; margin-right: auto; }

.trial-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto 40px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #e7fff4;
  border: 1px solid rgba(19, 201, 135, 0.32);
  color: var(--green-dark);
  font-weight: 900;
  font-size: 14px;
  text-align: center;
}
.trial-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(19, 201, 135, 0.22);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px 24px;
  box-shadow: 0 14px 38px rgba(7, 24, 39, 0.06);
}
.pricing-card.featured {
  border: 2px solid var(--green);
  box-shadow: 0 26px 60px rgba(19, 201, 135, 0.24);
  transform: translateY(-14px);
  z-index: 1;
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--green), var(--cyan));
  color: #052314;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(19, 201, 135, 0.32);
}
.pricing-card-head { min-height: 66px; }
.pricing-card-head h3 { margin: 0 0 6px; font-size: 22px; color: var(--navy); }
.pricing-card-head p { margin: 0; font-size: 14px; line-height: 1.45; color: var(--muted); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.pricing-price .amount { font-size: 32px; font-weight: 1000; color: var(--navy); letter-spacing: -0.01em; }
.pricing-price .period { font-size: 13px; font-weight: 800; color: var(--muted); }
.pricing-quota {
  display: inline-block;
  width: fit-content;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 900;
}
.pricing-card.featured .pricing-quota { background: #e7fff4; color: var(--green-dark); }
.pricing-unit {
  margin-top: 7px;
  font-size: 12px;
  font-weight: 750;
  color: var(--muted);
}
.pricing-badge.value {
  background: linear-gradient(120deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 10px 22px rgba(11, 114, 217, 0.32);
}

/* Resumen de features compartidas: solo se muestra en movil (ver breakpoint
   620px), donde reemplaza la lista repetida de 7 items iguales en cada
   tarjeta para evitar 4 muros de texto casi identicos. */
.pricing-shared { display: none; }
.pricing-features {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
}
.pricing-features li svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--green);
}
.pricing-features li.highlight { font-weight: 900; color: var(--navy); }
.pricing-cta {
  width: 100%;
  margin-top: 24px;
  box-shadow: none;
}
.pricing-card.featured .pricing-cta.solid { box-shadow: 0 14px 30px rgba(19, 201, 135, 0.3); }

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.pricing-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 800;
}
.pricing-trust span svg { flex: 0 0 18px; width: 18px; height: 18px; color: var(--green-dark); }

.pricing-faq {
  max-width: 820px;
  margin: 48px auto 0;
  display: grid;
  gap: 10px;
}
.pricing-faq details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  padding: 4px 20px;
}
.pricing-faq details[open] { border-color: rgba(19, 201, 135, 0.4); }
.pricing-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  font-weight: 900;
  font-size: 15px;
  color: var(--navy);
}
.pricing-faq summary::-webkit-details-marker { display: none; }
.pricing-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 900;
  color: var(--green-dark);
  transition: transform 0.2s ease;
}
.pricing-faq details[open] summary::after { transform: rotate(45deg); }
.pricing-faq p { margin: 0 0 18px; font-size: 14.5px; line-height: 1.6; }
.cta {
  margin: 24px clamp(18px, 5vw, 72px) 84px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--navy), #0a5866);
}
.cta p { color: #cce0eb; margin-bottom: 0; }
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: white;
}

@media (max-width: 980px) {
  .site-nav { grid-template-columns: 1fr; align-items: start; }
  .site-nav nav { justify-content: flex-start; flex-wrap: wrap; gap: 14px; }
  .hero { min-height: 760px; padding-top: 84px; }
  .hero h1 { font-size: clamp(38px, 12vw, 58px); }
  .hero-scene { opacity: 0.42; transform: translateX(110px); }
  .phone-card { width: 380px; right: 18px; }
  .ops-card { right: 28px; }
  .route-card { right: 110px; }
  .metrics, .plans, .split, .feature-grid { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: 1fr; }
  .pipeline span { width: 2px; height: 24px; justify-self: center; }
  .cta { grid-template-columns: 1fr; padding: 28px; }
  footer { flex-direction: column; align-items: flex-start; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 620px) {
  .nav-actions { width: 100%; }
  .nav-actions a { flex: 1; }
  .site-nav nav { display: none; }
  .hero { min-height: 700px; }
  .hero-scene { display: none; }
  .lead { font-size: 17px; }
  .hero-actions a { width: 100%; }
  .section { padding: 58px 18px; }

  /* Nav de movil: boton "Crear cuenta gratis" mas compacto para que no
     rompa a 2 lineas dentro de la pildora (se veia roto). */
  .nav-actions { gap: 8px; }
  .nav-actions .solid, .nav-actions .ghost {
    padding: 0 10px;
    font-size: 13.5px;
    white-space: nowrap;
  }

  .pricing-section { padding-top: 44px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card.featured { order: -1; }
  .pricing-card { padding: 24px 20px 20px; }
  .trial-banner { font-size: 13px; padding: 9px 16px; text-align: left; }

  /* Tarjetas compactas: las 7 features compartidas se resumen una sola vez
     arriba (.pricing-shared) y cada tarjeta solo muestra lo que la
     diferencia (cupo, costo por interaccion y nivel de soporte). */
  .pricing-shared {
    display: block;
    margin-bottom: 18px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--soft);
  }
  .pricing-shared strong { display: block; margin-bottom: 10px; font-size: 13.5px; color: var(--navy); }
  .pricing-shared-tags { display: flex; flex-wrap: wrap; gap: 7px; }
  .pricing-shared-tags span {
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
  }
  .pricing-features li.shared { display: none; }
  .pricing-features { margin-top: 14px; gap: 9px; }
  .pricing-card-head { min-height: 0; }

  .pricing-trust { justify-content: flex-start; gap: 14px 24px; }
}

/* ==================== Soluciones y funciones (cards3) ==================== */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.cards3 article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 14px 38px rgba(7, 24, 39, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cards3 article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(7, 24, 39, 0.12);
}
.cards3 h3 { margin: 0 0 8px; font-size: 19px; color: var(--navy); }
.cards3 p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.cards3 .icon { margin-bottom: 14px; font-size: 22px; }
.sol-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #e7fff4;
  border: 1px solid rgba(19, 201, 135, 0.28);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}
@media (max-width: 980px) { .cards3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .cards3 { grid-template-columns: 1fr; } }

/* ==================== Robot mascota animado ==================== */
.hero-robot { display: flex; justify-content: center; margin-top: 30px; position: relative; }
.hero-robot::before {
  content: ""; position: absolute; top: 18%; left: 50%; transform: translateX(-50%);
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 201, 135, 0.24), transparent 68%);
  filter: blur(6px); z-index: 0; pointer-events: none;
}
.wk-robot-svg { width: 210px; height: auto; position: relative; z-index: 1; overflow: visible; }

/* colores */
.wk-shadow { fill: rgba(7, 24, 39, 0.14); transform-box: fill-box; transform-origin: 50% 50%; animation: wk-shadow 3.4s ease-in-out infinite alternate; }
.wk-torso, .wk-head-box, .wk-arm-left rect, .wk-arm-right rect { fill: var(--navy); }
.wk-arm-left circle, .wk-arm-right circle, .wk-ear { fill: var(--green); }
.wk-face, .wk-chest { fill: #071827; }
.wk-eye { fill: #3fe0c8; filter: drop-shadow(0 0 4px rgba(63, 224, 200, 0.8)); }
.wk-mouth { fill: var(--green); }
.wk-antenna { stroke: var(--green); stroke-width: 4; stroke-linecap: round; }
.wk-antenna-tip { fill: var(--cyan); filter: drop-shadow(0 0 6px rgba(22, 169, 214, 0.9)); }
.wk-dot { fill: var(--green); }

/* movimiento */
.wk-robot-body { transform-box: fill-box; transform-origin: 50% 100%; animation: wk-float 3.4s ease-in-out infinite alternate; }
.wk-head { transform-box: fill-box; transform-origin: 50% 100%; animation: wk-tilt 5s ease-in-out infinite; }
.wk-eyes { transform-box: fill-box; transform-origin: 50% 50%; animation: wk-blink 4.5s ease-in-out infinite; }
.wk-arm-left { transform-box: fill-box; transform-origin: 55% 8%; animation: wk-wave 1.3s ease-in-out infinite; }
.wk-antenna-tip { transform-box: fill-box; transform-origin: 50% 50%; animation: wk-antenna 1.6s ease-in-out infinite; }
.wk-dot { transform-box: fill-box; transform-origin: 50% 50%; animation: wk-dotb 1.1s ease-in-out infinite; }
.wk-d2 { animation-delay: 0.15s; }
.wk-d3 { animation-delay: 0.3s; }

@keyframes wk-float { from { transform: translateY(0); } to { transform: translateY(-12px); } }
@keyframes wk-shadow { from { transform: scaleX(1); opacity: 0.9; } to { transform: scaleX(0.8); opacity: 0.55; } }
@keyframes wk-tilt { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
@keyframes wk-blink { 0%, 90%, 100% { transform: scaleY(1); } 95% { transform: scaleY(0.12); } }
@keyframes wk-wave { 0%, 100% { transform: rotate(6deg); } 50% { transform: rotate(-24deg); } }
@keyframes wk-antenna { 0%, 100% { transform: scale(1); opacity: 0.75; } 50% { transform: scale(1.3); opacity: 1; } }
@keyframes wk-dotb { 0%, 80%, 100% { transform: translateY(0); opacity: 0.5; } 40% { transform: translateY(-4px); opacity: 1; } }

@media (min-width: 981px) {
  .hero-robot { justify-content: flex-start; margin-top: 34px; }
  .wk-robot-svg { width: 172px; }
  .hero-robot::before { left: 86px; width: 184px; height: 184px; }
}
@media (max-width: 620px) {
  .wk-robot-svg { width: 224px; }
}
@media (prefers-reduced-motion: reduce) {
  .wk-robot-body, .wk-head, .wk-eyes, .wk-arm-left, .wk-antenna-tip, .wk-dot, .wk-shadow { animation: none; }
}

/* ==================== Motion / animaciones ==================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 12px rgba(19, 201, 135, 0.5);
  pointer-events: none;
}
/* Estados iniciales: solo se ocultan cuando el JS activa el modo animación.
   Si el JS falla o no carga, boot.js retira .js-motion y todo queda visible. */
.js-motion .reveal { opacity: 0; transform: translateY(18px); }
.js-motion .reveal-group > * { opacity: 0; transform: translateY(18px); }
.js-motion .phone-card .bubble { opacity: 0; }
.js-motion .phone-card .typing { opacity: 0; }

/* Puntos "escribiendo" del chat del hero */
.js-motion .typing i { animation: wk-typing 1.15s ease-in-out infinite; }
.js-motion .typing i:nth-child(2) { animation-delay: 0.15s; }
.js-motion .typing i:nth-child(3) { animation-delay: 0.30s; }
@keyframes wk-typing { 0%, 80%, 100% { transform: translateY(0); opacity: 0.5; } 40% { transform: translateY(-4px); opacity: 1; } }

/* Flotado ambiental de las tarjetas del hero */
.js-motion .ops-card { animation: wk-float 6s ease-in-out infinite; }
.js-motion .route-card { animation: wk-float 7.5s ease-in-out 0.6s infinite; }
@keyframes wk-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .js-motion .reveal, .js-motion .reveal-group > *,
  .js-motion .phone-card .bubble, .js-motion .phone-card .typing { opacity: 1; transform: none; }
  .js-motion .typing i, .js-motion .ops-card, .js-motion .route-card { animation: none; }
}
