/**
 * SIM4 landing — animaciones de flujo (pipes, beams, pulses).
 * Cargar después de sim.css en páginas públicas.
 */

@keyframes lm-pipe-dash {
  to { background-position: 20px 0; }
}

@keyframes lm-pipe-travel {
  0% { left: 0; opacity: 0; transform: translateY(-50%) scale(0.55); }
  10% { opacity: 1; transform: translateY(-50%) scale(1); }
  90% { opacity: 1; }
  100% { left: calc(100% - 10px); opacity: 0; transform: translateY(-50%) scale(0.55); }
}

@keyframes lm-pipe-travel-v {
  0% { top: 0; opacity: 0; transform: translateX(-50%) scale(0.55); }
  10% { opacity: 1; transform: translateX(-50%) scale(1); }
  90% { opacity: 1; }
  100% { top: calc(100% - 10px); opacity: 0; transform: translateX(-50%) scale(0.55); }
}

@keyframes lm-beam-flow {
  to { stroke-dashoffset: -32; }
}

@keyframes lm-hub-spin {
  to { transform: rotate(360deg); }
}

@keyframes lm-core-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.45); }
  50% { box-shadow: 0 0 0 12px rgba(56, 189, 248, 0); }
}

@keyframes lm-node-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes lm-arrow-nudge {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(4px); opacity: 1; }
}

@keyframes lm-timeline-flow {
  0% { background-position: 0 0; }
  100% { background-position: 0 24px; }
}

@keyframes lm-milestone-dot {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 8px); opacity: 0; }
}

/* Ocultar capa SVG overlay rota (reemplazada por pipes) */
.lm-flow-canvas {
  display: none !important;
}

/* --- Pipes horizontales / verticales --- */
.lm-pipe {
  position: relative;
  flex-shrink: 0;
  --lm-pipe-len: 100%;
}

.lm-pipe--h {
  height: 6px;
  min-width: 28px;
  flex: 1 1 28px;
  align-self: center;
}

.lm-pipe--v {
  width: 6px;
  min-height: 28px;
  flex: 1 1 28px;
  align-self: center;
}

.lm-pipe__track {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background-size: 20px 6px;
  animation: lm-pipe-dash 0.55s linear infinite;
}

.lm-pipe--h .lm-pipe__track { height: 6px; }
.lm-pipe--v .lm-pipe__track {
  width: 6px;
  height: 100%;
  background-size: 6px 20px;
  animation: lm-pipe-dash 0.55s linear infinite;
}

.lm-pipe--teal .lm-pipe__track {
  background-image: repeating-linear-gradient(90deg, #14b8a6 0, #14b8a6 10px, transparent 10px, transparent 20px);
}
.lm-pipe--indigo .lm-pipe__track {
  background-image: repeating-linear-gradient(90deg, #6366f1 0, #6366f1 10px, transparent 10px, transparent 20px);
}
.lm-pipe--cyan .lm-pipe__track {
  background-image: repeating-linear-gradient(90deg, #22d3ee 0, #22d3ee 10px, transparent 10px, transparent 20px);
}
.lm-pipe--amber .lm-pipe__track {
  background-image: repeating-linear-gradient(90deg, #f59e0b 0, #f59e0b 10px, transparent 10px, transparent 20px);
}
.lm-pipe--violet .lm-pipe__track {
  background-image: repeating-linear-gradient(90deg, #8b5cf6 0, #8b5cf6 10px, transparent 10px, transparent 20px);
}

.lm-pipe--v.lm-pipe--teal .lm-pipe__track {
  background-image: repeating-linear-gradient(180deg, #14b8a6 0, #14b8a6 10px, transparent 10px, transparent 20px);
}
.lm-pipe--v.lm-pipe--cyan .lm-pipe__track {
  background-image: repeating-linear-gradient(180deg, #22d3ee 0, #22d3ee 10px, transparent 10px, transparent 20px);
}

.lm-pipe__packet {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation: lm-pipe-travel 2s ease-in-out infinite;
  box-shadow: 0 0 10px currentColor;
}

.lm-pipe--teal .lm-pipe__packet { background: #14b8a6; color: #14b8a6; }
.lm-pipe--indigo .lm-pipe__packet { background: #6366f1; color: #6366f1; }
.lm-pipe--cyan .lm-pipe__packet { background: #22d3ee; color: #22d3ee; }
.lm-pipe--amber .lm-pipe__packet { background: #f59e0b; color: #f59e0b; }
.lm-pipe--violet .lm-pipe__packet { background: #8b5cf6; color: #8b5cf6; }

.lm-pipe--v .lm-pipe__packet {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-name: lm-pipe-travel-v;
}

.lm-pipe--v.lm-pipe--reverse .lm-pipe__packet {
  top: auto;
  bottom: 0;
  animation-name: lm-pipe-travel-v-rev;
}

@keyframes lm-pipe-travel-v-rev {
  0% { bottom: 0; top: auto; opacity: 0; transform: translateX(-50%) scale(0.55); }
  10% { opacity: 1; transform: translateX(-50%) scale(1); }
  90% { opacity: 1; }
  100% { bottom: calc(100% - 10px); top: auto; opacity: 0; transform: translateX(-50%) scale(0.55); }
}

.lm-pipe--reverse .lm-pipe__packet {
  animation-name: lm-pipe-travel-rev;
  left: auto;
  right: 0;
}

@keyframes lm-pipe-travel-rev {
  0% { right: 0; left: auto; opacity: 0; transform: translateY(-50%) scale(0.55); }
  10% { opacity: 1; transform: translateY(-50%) scale(1); }
  90% { opacity: 1; }
  100% { right: calc(100% - 10px); left: auto; opacity: 0; transform: translateY(-50%) scale(0.55); }
}

.lm-pipe--double .lm-pipe__packet--alt { animation-delay: 1s; }

.lm-pipe-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  min-width: 36px;
  padding: 0.25rem 0;
}

.lm-pipe-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
  font-size: 1.25rem;
  animation: lm-arrow-nudge 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.lm-pipe-arrow--out { color: #f59e0b; animation-delay: 0.5s; }

/* --- Diagrama integraciones --- */
.lm-int-diagram {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
  width: 100%;
  min-height: 140px;
}

.lm-int-diagram__zone {
  flex: 1 1 0;
  min-width: 0;
}

.lm-int-diagram--full {
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .lm-int-diagram--full { flex-wrap: nowrap; }
  .lm-int-diagram--full .lm-int-diagram__zone--flows { flex: 0 0 22%; }
}

.lm-int-eco__node--live {
  animation: lm-node-breathe 2.8s ease-in-out infinite;
  animation-delay: calc(var(--node-i, 0) * 0.12s);
}

.lm-int-eco__core-inner--live {
  animation: lm-core-pulse 2.4s ease-out infinite;
}

/* --- Comms hub beams (SVG alineado al hub) --- */
.lm-comms-hub {
  overflow: visible;
}

.lm-comms-beams {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.lm-beam-path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 6 8;
  animation: lm-beam-flow 0.75s linear infinite;
}

.lm-beam-path--0 { stroke: #22d3ee; animation-delay: 0s; }
.lm-beam-path--1 { stroke: #a78bfa; animation-delay: 0.12s; }
.lm-beam-path--2 { stroke: #34d399; animation-delay: 0.24s; }
.lm-beam-path--3 { stroke: #25d366; animation-delay: 0.36s; }
.lm-beam-path--4 { stroke: #4285f4; animation-delay: 0.48s; }
.lm-beam-path--5 { stroke: #0078d4; animation-delay: 0.6s; }

.lm-beam-dot {
  filter: drop-shadow(0 0 4px currentColor);
}

.lm-comms-hub__ring--outer {
  animation: lm-hub-spin 40s linear infinite;
}

.lm-comms-hub__core {
  z-index: 3;
}

.lm-comms-hub__channels {
  z-index: 4;
}

/* --- Trust AWS arch --- */
.lm-trust-beam {
  animation: lm-beam-flow 0.9s linear infinite;
}

.lm-trust-arch__ring {
  animation: lm-core-pulse 2.8s ease-out infinite;
}

.lm-trust-arch__node {
  animation: lm-node-breathe 3s ease-in-out infinite;
  animation-delay: calc(var(--trust-i, 0) * 0.2s);
}

/* --- Timeline experiencia --- */
.lm-exp-timeline--live {
  position: relative;
  border-left: 3px solid transparent;
  border-image: repeating-linear-gradient(180deg, #6366f1 0, #6366f1 8px, transparent 8px, transparent 16px) 1;
  animation: lm-timeline-flow 1s linear infinite;
}

.lm-exp-timeline--live .lm-exp-timeline__item::before {
  animation: lm-core-pulse 2s ease-out infinite;
}

/* --- Milestones --- */
.lm-milestones--live {
  position: relative;
  padding-top: 1.75rem;
}

.lm-milestones__track {
  position: absolute;
  top: 0.65rem;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
}

.lm-milestones__track .lm-pipe__track {
  height: 6px;
}

.lm-milestones__track .lm-pipe__packet {
  animation-duration: 4s;
}

/* --- Sync móvil --- */
.lm-sync-diagram {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
  border: 1px solid #bae6fd;
}

.lm-sync-diagram__node {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  color: #334155;
  min-width: 88px;
}

.lm-sync-diagram__node i {
  font-size: 1.65rem;
  color: #0284c7;
}

.lm-sync-diagram__node--cloud i { color: #0d9488; }

.lm-sync-diagram__pipes {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 40px;
}

/* --- Capability cards pulse --- */
.lm-cap-grid--live .lm-cap-card__icon {
  animation: lm-node-breathe 3s ease-in-out infinite;
  animation-delay: calc(var(--cap-i, 0) * 0.15s);
}

.lm-pillar__icon {
  animation: lm-node-breathe 3.2s ease-in-out infinite;
  animation-delay: calc(var(--pillar-i, 0) * 0.1s);
}

.lm-card-solution {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lm-card-solution:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.lm-int-diagram .lm-int-eco__bridges {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lm-int-diagram .lm-int-eco__core {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}

.lm-int-flow-item__dot {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: #6366f1;
  flex-shrink: 0;
  animation: lm-core-pulse 1.8s ease-out infinite;
}

.lm-int-flow-item:nth-child(2) .lm-int-flow-item__dot { background: #14b8a6; animation-delay: 0.25s; }
.lm-int-flow-item:nth-child(3) .lm-int-flow-item__dot { background: #f59e0b; animation-delay: 0.5s; }
.lm-int-flow-item:nth-child(4) .lm-int-flow-item__dot { background: #8b5cf6; animation-delay: 0.75s; }

.lm-int-eco__pulse--live {
  animation: lm-core-pulse 2.4s ease-out infinite;
}

.lm-int-eco__pulse--delay {
  animation-delay: 1.1s;
}

@media (prefers-reduced-motion: reduce) {
  .lm-pipe__track,
  .lm-pipe__packet,
  .lm-beam-path,
  .lm-trust-beam,
  .lm-comms-hub__ring--outer,
  .lm-int-eco__node--live,
  .lm-int-eco__core-inner--live,
  .lm-exp-timeline--live,
  .lm-cap-grid--live .lm-cap-card__icon,
  .lm-pillar__icon,
  .lm-trust-arch__ring,
  .lm-trust-arch__node {
    animation: none !important;
  }
}

@media (max-width: 991px) {
  .lm-int-diagram--band,
  .lm-int-diagram--full {
    flex-direction: column;
    align-items: stretch;
  }

  .lm-int-diagram--band .lm-pipe-col,
  .lm-int-diagram--full .lm-pipe-col {
    flex-direction: row;
    min-height: 28px;
    width: 100%;
    flex: 0 0 auto;
    min-width: 0;
  }

  .lm-int-diagram--band .lm-pipe--v,
  .lm-int-diagram--full .lm-pipe--v {
    width: 100%;
    height: 6px;
    min-height: 6px;
  }

  .lm-int-diagram--band .lm-pipe--v .lm-pipe__track,
  .lm-int-diagram--full .lm-pipe--v .lm-pipe__track {
    width: 100%;
    height: 6px;
    background-image: repeating-linear-gradient(90deg, #14b8a6 0, #14b8a6 10px, transparent 10px, transparent 20px) !important;
  }

  .lm-int-diagram--band .lm-pipe--v .lm-pipe__packet,
  .lm-int-diagram--full .lm-pipe--v .lm-pipe__packet {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-name: lm-pipe-travel;
  }

  .lm-int-diagram--band .lm-pipe-arrow,
  .lm-int-diagram--full .lm-pipe-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 767px) {
  .lm-int-diagram {
    flex-direction: column;
    align-items: stretch;
  }

  .lm-pipe-col {
    flex-direction: row;
    min-height: 28px;
    width: 100%;
    flex: 0 0 auto;
  }

  .lm-pipe--v {
    width: 100%;
    height: 6px;
    min-height: 6px;
  }

  .lm-pipe--v .lm-pipe__track {
    width: 100%;
    height: 6px;
    background-image: repeating-linear-gradient(90deg, #14b8a6 0, #14b8a6 10px, transparent 10px, transparent 20px) !important;
  }

  .lm-pipe--v .lm-pipe__packet {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-name: lm-pipe-travel;
  }

  .lm-pipe-arrow { transform: rotate(90deg); }

  .lm-deep-link-bridge { display: none; }

  .lm-hero-flow { opacity: 0.35; }
}

/* ===== Fixes: quitar pseudo-líneas rotas del layout antiguo ===== */
.lm-int-diagram .lm-int-eco__bridges::before,
.lm-int-diagram .lm-int-eco__bridges::after {
  content: none !important;
  display: none !important;
}

.lm-deep-link-row--live .lm-flow-canvas,
.lm-cap-grid--live .lm-flow-canvas,
.lm-pillars--live .lm-flow-canvas,
.lm-milestones--live .lm-flow-canvas {
  display: none !important;
}

/* ===== Pipes más visibles en diagrama integraciones ===== */
.lm-int-diagram {
  max-width: 100%;
  min-width: 0;
}

.lm-int-diagram__zone {
  min-width: 0;
}

.lm-int-diagram .lm-pipe-col {
  flex: 0 0 52px;
  width: 52px;
  min-width: 52px;
  gap: 0.45rem;
}

@media (max-width: 991px) {
  .lm-int-diagram .lm-pipe-col {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
  }
}

.lm-int-diagram .lm-pipe--h {
  width: 100%;
  min-width: 100%;
  flex: 0 0 8px;
  height: 8px;
}

.lm-int-diagram .lm-pipe--h .lm-pipe__track {
  height: 8px;
  background-size: 16px 8px;
  animation-duration: 0.45s;
}

.lm-int-diagram .lm-pipe__packet {
  width: 12px;
  height: 12px;
  animation-duration: 1.6s;
}

.lm-int-diagram .lm-pipe--double .lm-pipe__packet--alt {
  animation-delay: 0.8s;
}

.lm-int-eco__bridge--live {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lm-int-eco__bridge--live:hover {
  transform: translateX(2px);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.18);
}

/* ===== Hero home — flujo de datos ===== */
.lm-hero-flow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.lm-hero-flow__svg {
  width: 100%;
  height: 100%;
  min-height: 220px;
  opacity: 0.92;
}

.lm-hero-flow__path {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  animation: lm-beam-flow 0.7s linear infinite;
}

.lm-hero-flow__path--1 { stroke: rgba(34, 211, 238, 0.75); }
.lm-hero-flow__path--2 { stroke: rgba(167, 139, 250, 0.75); animation-delay: 0.15s; }
.lm-hero-flow__path--3 { stroke: rgba(52, 211, 153, 0.75); animation-delay: 0.3s; }
.lm-hero-flow__path--4 { stroke: rgba(251, 191, 36, 0.75); animation-delay: 0.2s; }
.lm-hero-flow__path--5 { stroke: rgba(244, 114, 182, 0.75); animation-delay: 0.35s; }

.lm-hero-flow__dot {
  filter: drop-shadow(0 0 6px currentColor);
}

.lm-hero-flow__core {
  fill: rgba(37, 99, 235, 0.25);
  stroke: rgba(96, 165, 250, 0.9);
  stroke-width: 2;
  animation: lm-core-pulse 2.2s ease-out infinite;
}

.lm-hero-flow__label {
  fill: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-family: system-ui, sans-serif;
}

.lm-hero-flow__nodes {
  display: none;
}

/* ===== Deep link benefit — puente vertical animado ===== */
.lm-deep-link-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.lm-deep-link-bridge__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  height: 100%;
  min-height: 140px;
  width: 36px;
}

.lm-deep-link-bridge__stack .lm-pipe--v {
  flex: 1 1 auto;
  min-height: 36px;
  width: 8px;
}

.lm-deep-link-bridge__stack .lm-pipe--v .lm-pipe__track {
  width: 8px;
}

.lm-deep-link-bridge__hub {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, #6366f1, #0ea5e9);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
  animation: lm-core-pulse 2s ease-out infinite;
}

/* ===== Comms — beams más visibles ===== */
.lm-comms-hub .lm-beam-path {
  stroke-width: 2.5;
  stroke-dasharray: 5 7;
  animation-duration: 0.55s;
}

.lm-comms-hub__ring--outer {
  border-width: 2px;
  border-style: dashed;
  border-color: rgba(56, 189, 248, 0.45);
}

.lm-comms-hub__pulse {
  animation: lm-core-pulse 2s ease-out infinite;
}

/* ===== Trust AWS — beams y nodos ===== */
.lm-trust-beam {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 6 8;
}

.lm-trust-beam--1 { stroke: rgba(56, 189, 248, 0.85); }
.lm-trust-beam--2 { stroke: rgba(129, 140, 248, 0.85); animation-delay: 0.15s; }
.lm-trust-beam--3 { stroke: rgba(52, 211, 153, 0.85); animation-delay: 0.3s; }
.lm-trust-beam--4 { stroke: rgba(251, 191, 36, 0.85); animation-delay: 0.45s; }

.lm-trust-dot {
  filter: drop-shadow(0 0 5px currentColor);
}

.lm-trust-arch__pulse {
  animation: lm-core-pulse 2.2s ease-out infinite;
}

/* ===== Tour app — flechas animadas ===== */
.lm-auditor-tour__arrow svg path {
  stroke: #2563eb;
  stroke-width: 2;
  stroke-dasharray: 5 6;
  animation: lm-beam-flow 0.65s linear infinite;
}

.lm-auditor-tour__arrow {
  animation: lm-arrow-nudge 1.2s ease-in-out infinite;
  animation-delay: calc(var(--tour-i, 0) * 0.2s);
}

.lm-auditor-tour__step {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

body.lm-motion-on .lm-auditor-tour__step.lm-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Stats con pulso ===== */
.lm-stat--pulse .lm-stat__num {
  animation: lm-core-pulse 2.4s ease-out infinite;
}

.lm-stat--pulse .lm-stat__num i {
  display: inline-block;
  animation: lm-node-breathe 2.8s ease-in-out infinite;
}

/* ===== Sync diagram — pipes más anchos ===== */
.lm-sync-diagram .lm-pipe--h {
  height: 8px;
  min-width: 48px;
}

.lm-sync-diagram .lm-pipe--h .lm-pipe__track {
  height: 8px;
}

.lm-sync-diagram .lm-pipe__packet {
  width: 12px;
  height: 12px;
  animation-duration: 1.8s;
}

.lm-sync-diagram__node {
  animation: lm-node-breathe 3s ease-in-out infinite;
}

.lm-sync-diagram__node--cloud {
  animation-delay: 0.5s;
  border-color: #7dd3fc;
}

/* ===== Entrada al scroll ===== */
.lm-int-diagram,
.lm-comms-visual,
.lm-trust-arch,
.lm-sync-diagram {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.lm-motion-on .lm-int-diagram.lm-in-view,
body.lm-motion-on .lm-comms-visual.lm-in-view,
body.lm-motion-on .lm-trust-arch.lm-in-view,
body.lm-motion-on .lm-sync-diagram.lm-in-view {
  opacity: 1;
  transform: translateY(0);
}

body.lm-motion-on .lm-sol-flow.lm-in-view,
body.lm-motion-on .lm-sol-hub.lm-in-view {
  opacity: 1;
  transform: translateY(0);
}

.lm-sol-flow,
.lm-sol-hub {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ===== Cap cards glow ===== */
.lm-cap-grid--live .lm-cap-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lm-cap-grid--live .lm-cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(13, 148, 136, 0.14);
}

@keyframes lm-hero-sweep {
  0% { transform: translateX(-100%); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

.lm-page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(56, 189, 248, 0.12) 50%, transparent 60%);
  animation: lm-hero-sweep 5s ease-in-out infinite;
}

.landing-page--sgi .lm-page-head::after {
  background: linear-gradient(105deg, transparent 40%, rgba(99, 102, 241, 0.14) 50%, transparent 60%);
}

.landing-page--mpi .lm-page-head::after {
  background: linear-gradient(105deg, transparent 40%, rgba(52, 211, 153, 0.14) 50%, transparent 60%);
}

.landing-page--compliance .lm-page-head::after {
  background: linear-gradient(105deg, transparent 40%, rgba(129, 76, 246, 0.14) 50%, transparent 60%);
}

.landing-page--complaint .lm-page-head::after {
  background: linear-gradient(105deg, transparent 40%, rgba(56, 189, 248, 0.14) 50%, transparent 60%);
}

.landing-page--benefit .lm-page-head::after {
  background: linear-gradient(105deg, transparent 40%, rgba(20, 184, 166, 0.14) 50%, transparent 60%);
}

.landing-page--experience .lm-page-head::after {
  background: linear-gradient(105deg, transparent 40%, rgba(99, 102, 241, 0.14) 50%, transparent 60%);
}

.lm-features-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 35%, rgba(34, 211, 238, 0.1) 50%, transparent 65%);
  animation: lm-hero-sweep 6s ease-in-out infinite;
}

.lm-features-hero {
  position: relative;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .lm-page-head::after,
  .lm-features-hero::after,
  .lm-hero-flow__path,
  .lm-hero-flow__core,
  .lm-auditor-tour__step,
  .lm-deep-link-bridge__hub,
  .lm-sync-diagram__node {
    animation: none !important;
  }

  .lm-page-head::after,
  .lm-features-hero::after {
    display: none;
  }

  .lm-int-diagram,
  .lm-comms-visual,
  .lm-trust-arch,
  .lm-sync-diagram,
  .lm-auditor-tour__step,
  .lm-sol-flow,
  .lm-sol-hub {
    opacity: 1;
    transform: none;
  }
}

/* ===== Páginas de solución — plataforma compartida y esquemas ===== */
.lm-sol-platform__focus {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border-left: 4px solid #6366f1;
  background: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.lm-sol-platform__focus--sgi { border-left-color: #4338ca; }
.lm-sol-platform__focus--complaint { border-left-color: #0ea5e9; }
.lm-sol-platform__focus--mpd { border-left-color: #464de4; }
.lm-sol-platform__focus--mpi { border-left-color: #10b981; }

.lm-sol-platform__focus-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.35rem;
}

.lm-sol-platform--hub-preview .lm-sol-platform__dual {
  margin-top: 0.25rem;
}

.lm-sol-platform--hub-preview .lm-sol-platform__dual-col {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.lm-sol-platform--hub-preview .lm-sol-platform__dual-title {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin-bottom: 0.65rem;
}

.lm-sol-platform--hub-preview .lm-sol-platform__dual-lead {
  font-size: 0.84rem;
  margin-bottom: 0.75rem;
}

.lm-sol-platform--hub-preview .lm-sol-hub {
  flex: 1 1 auto;
  margin-top: 0;
}

.lm-sol-platform--hub-preview .lm-sol-hub__title {
  display: none;
}

.lm-sol-platform--hub-preview .lm-sol-hub__caption {
  display: none;
}

.lm-sol-platform--hub-preview .lm-ui-showcase {
  flex: 1 1 auto;
  margin-top: 0;
}

@media (max-width: 991px) {
  .lm-sol-platform--hub-preview .lm-sol-platform__dual-col + .lm-sol-platform__dual-col {
    margin-top: 0.5rem;
  }
}

.lm-sol-shared-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .lm-sol-shared-grid { grid-template-columns: repeat(3, 1fr); }
}

.lm-sol-shared-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #334155;
}

.lm-sol-shared-chip i {
  font-size: 1.1rem;
  color: #6366f1;
  flex-shrink: 0;
}

.lm-sol-hub {
  margin: 0;
}

.lm-sol-hub__title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.65rem;
}

.lm-sol-hub__canvas {
  position: relative;
  border-radius: 1rem;
  background: linear-gradient(155deg, #0f172a 0%, #1e293b 55%, #272752 100%);
  padding: 1rem 0.75rem 0.85rem;
  overflow: hidden;
}

.lm-sol-hub__spokes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.lm-sol-hub__spoke {
  stroke: rgba(148, 163, 184, 0.35);
  stroke-width: 2;
  stroke-linecap: round;
}

.lm-sol-hub__spoke--sgi { stroke: rgba(129, 140, 248, 0.55); }
.lm-sol-hub__spoke--mpi { stroke: rgba(52, 211, 153, 0.5); }
.lm-sol-hub__spoke--complaint { stroke: rgba(56, 189, 248, 0.55); }
.lm-sol-hub__spoke--mpd { stroke: rgba(167, 139, 250, 0.55); }

.lm-sol-hub__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  grid-template-areas:
    ". top ."
    "left center right"
    ". bottom .";
  gap: 0.55rem 0.35rem;
  align-items: center;
  justify-items: center;
  min-height: 220px;
}

.lm-sol-hub__slot--top { grid-area: top; }
.lm-sol-hub__slot--left { grid-area: left; justify-self: end; }
.lm-sol-hub__slot--center { grid-area: center; }
.lm-sol-hub__slot--right { grid-area: right; justify-self: start; }
.lm-sol-hub__slot--bottom { grid-area: bottom; }

.lm-sol-hub__core {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #2563eb, #6366f1);
  color: #fff;
  text-align: center;
  box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.22), 0 12px 28px rgba(15, 23, 42, 0.45);
  animation: lm-core-pulse 2.4s ease-out infinite;
}

.lm-sol-hub__core-brand {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.lm-sol-hub__core-sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
}

.lm-sol-hub__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 5.5rem;
  max-width: 7.5rem;
  padding: 0.5rem 0.55rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e2e8f0;
  text-align: center;
}

.lm-sol-hub__node-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.1);
}

.lm-sol-hub__node-name {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.lm-sol-hub__node-sub {
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(226, 232, 240, 0.78);
}

.lm-sol-hub__node--sgi { --sol-hub-accent: #818cf8; --sol-hub-accent-rgb: 129, 140, 248; }
.lm-sol-hub__node--complaint { --sol-hub-accent: #38bdf8; --sol-hub-accent-rgb: 56, 189, 248; }
.lm-sol-hub__node--mpd { --sol-hub-accent: #a78bfa; --sol-hub-accent-rgb: 167, 139, 250; }
.lm-sol-hub__node--mpi { --sol-hub-accent: #34d399; --sol-hub-accent-rgb: 52, 211, 153; }

.lm-sol-hub__node--sgi .lm-sol-hub__node-icon { color: #c7d2fe; background: rgba(67, 56, 202, 0.35); }
.lm-sol-hub__node--complaint .lm-sol-hub__node-icon { color: #bae6fd; background: rgba(14, 165, 233, 0.28); }
.lm-sol-hub__node--mpd .lm-sol-hub__node-icon { color: #ddd6fe; background: rgba(70, 77, 228, 0.32); }
.lm-sol-hub__node--mpi .lm-sol-hub__node-icon { color: #a7f3d0; background: rgba(5, 150, 105, 0.28); }

.lm-sol-hub__node.is-active {
  background: rgba(var(--sol-hub-accent-rgb), 0.18);
  border-color: rgba(var(--sol-hub-accent-rgb), 0.55);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(var(--sol-hub-accent-rgb), 0.25), 0 10px 24px rgba(15, 23, 42, 0.35);
}

.lm-sol-hub__node.is-active .lm-sol-hub__node-sub {
  color: rgba(255, 255, 255, 0.9);
}

.lm-sol-hub__caption {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #64748b;
}

.lm-sol-flow {
  padding: 1.15rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(160deg, #f8fafc 0%, #f0f9ff 100%);
  border: 1px solid #e2e8f0;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

.lm-sol-flow--complaint { background: linear-gradient(160deg, #f0f9ff 0%, #eff6ff 100%); border-color: #bae6fd; }
.lm-sol-flow--mpd { background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 100%); border-color: #ddd6fe; }
.lm-sol-flow--mpi { background: linear-gradient(160deg, #ecfdf5 0%, #f0fdf4 100%); border-color: #a7f3d0; }
.lm-sol-flow--sgi { background: linear-gradient(160deg, #eef2ff 0%, #e0e7ff 100%); border-color: #c7d2fe; }

.lm-sol-flow__core {
  text-align: center;
  margin-bottom: 0.85rem;
}

.lm-sol-flow__core-brand {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.lm-sol-flow__core-sub {
  display: block;
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.lm-sol-flow__steps {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.25rem;
}

.lm-sol-flow__steps--linear {
  flex-wrap: wrap;
  overflow-x: visible;
  max-width: 100%;
  padding-bottom: 0.35rem;
}

@media (min-width: 992px) {
  .lm-sol-flow__steps--linear {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
}

.lm-sol-flow__step {
  flex: 1 1 100px;
  min-width: 96px;
  max-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  padding: 0.65rem 0.45rem;
  border-radius: 0.65rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  font-size: 0.68rem;
  line-height: 1.3;
  color: #64748b;
  animation: lm-node-breathe 3.2s ease-in-out infinite;
  animation-delay: calc(var(--sol-i, 0) * 0.12s);
}

.lm-sol-flow__step strong {
  font-size: 0.74rem;
  color: #0f172a;
}

.lm-sol-flow__step-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  font-size: 1.15rem;
}

.lm-sol-flow--sgi .lm-sol-flow__step-icon { background: #e0e7ff; color: #4338ca; }
.lm-sol-flow--complaint .lm-sol-flow__step-icon { background: #e0f2fe; color: #0284c7; }
.lm-sol-flow--mpd .lm-sol-flow__step-icon { background: #ede9fe; color: #464de4; }
.lm-sol-flow--mpi .lm-sol-flow__step-icon { background: #d1fae5; color: #059669; }

.lm-sol-flow__step-badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #6366f1;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
}

.lm-sol-flow__conn {
  flex: 0 0 36px;
  align-self: center;
  min-width: 28px;
}

.lm-sol-flow__conn .lm-pipe--h {
  height: 8px;
  min-width: 100%;
}

.lm-sol-flow__caption {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #475569;
  text-align: center;
}

.lm-sol-flow__layers {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
}

.lm-sol-flow__layer {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.65rem 0.55rem;
  border-radius: 0.65rem;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.lm-sol-flow__layer-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.45rem;
}

.lm-sol-flow__layer--law { border-color: #ddd6fe; }
.lm-sol-flow__layer--core { border-color: #c7d2fe; flex: 1.4 1 0; }
.lm-sol-flow__layer--out { border-color: #bbf7d0; }

.lm-sol-flow__law-list li {
  font-size: 0.72rem;
  font-weight: 700;
  color: #4338ca;
  padding: 0.2rem 0;
}

.lm-sol-flow__steps--stack { gap: 0.35rem; }

.lm-sol-flow__step--compact {
  flex-direction: row;
  max-width: none;
  min-width: 0;
  width: 100%;
  text-align: left;
  padding: 0.45rem 0.55rem;
  font-weight: 600;
  color: #334155;
  animation: none;
}

.lm-sol-flow__step--compact i {
  color: #dc2626;
  font-size: 1rem;
}

.lm-sol-flow__layer-pipes {
  flex: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lm-sol-flow__layer-pipes .lm-pipe--v {
  height: 100%;
  min-height: 80px;
  width: 8px;
}

.lm-sol-flow__out-list li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: #334155;
  padding: 0.25rem 0;
}

.lm-sol-flow__out-list i { color: #059669; }

.lm-sol-flow__mpi-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.lm-sol-flow__mpi-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #a7f3d0;
  font-size: 0.68rem;
  font-weight: 700;
  color: #047857;
}

.lm-sol-diff-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .lm-sol-diff-grid { grid-template-columns: repeat(3, 1fr); }
}

.lm-sol-diff-card {
  padding: 1rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  height: 100%;
}

.lm-sol-diff-card i {
  font-size: 1.5rem;
  color: #6366f1;
  margin-bottom: 0.35rem;
}

.lm-sol-diff-card h4 {
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: #0f172a;
}

.lm-sol-diff-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #64748b;
}

.lm-page-solution--sgi .lm-sol-diff-card i { color: #4338ca; }
.lm-page-solution--complaint .lm-sol-diff-card i { color: #0284c7; }
.lm-page-solution--compliance .lm-sol-diff-card i { color: #464de4; }
.lm-page-solution--mpi .lm-sol-diff-card i { color: #059669; }

@media (max-width: 767px) {
  .lm-sol-flow__steps--linear {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .lm-sol-flow__conn {
    flex: 0 0 100%;
    order: 1;
    height: 8px;
  }

  .lm-sol-flow__conn .lm-pipe--h { width: 100%; }

  .lm-sol-flow__step { max-width: none; flex: 1 1 calc(50% - 0.5rem); }

  .lm-sol-flow__layers {
    flex-direction: column;
  }

  .lm-sol-flow__layer-pipes {
    flex-direction: row;
    flex: 0 0 auto;
    min-height: 28px;
    width: 100%;
  }

  .lm-sol-flow__layer-pipes .lm-pipe--v {
    width: 100%;
    height: 8px;
    min-height: 8px;
  }

  .lm-sol-hub__grid {
    min-height: 200px;
    gap: 0.4rem 0.2rem;
  }

  .lm-sol-hub__node {
    min-width: 4.6rem;
    max-width: 6.2rem;
    padding: 0.4rem 0.35rem;
  }

  .lm-sol-hub__node-name {
    font-size: 0.68rem;
  }

  .lm-sol-hub__node-sub {
    font-size: 0.54rem;
  }

  .lm-sol-hub__core {
    width: 4.75rem;
    height: 4.75rem;
  }
}

/* ===== Iconos con tinte sutil ===== */
@keyframes lm-icon-color-shift {
  0%, 100% { color: var(--lm-icon-c1, #6366f1); }
  50% { color: var(--lm-icon-c2, #0ea5e9); }
}

.lm-icon-cell--live .mdi.lm-icon-xl {
  animation: lm-icon-color-shift 4.5s ease-in-out infinite;
  animation-delay: calc(var(--icon-i, 0) * 0.35s);
}

.lm-icon-cell--amber { --lm-icon-c1: #d97706; --lm-icon-c2: #fbbf24; }
.lm-icon-cell--indigo { --lm-icon-c1: #4338ca; --lm-icon-c2: #818cf8; }
.lm-icon-cell--emerald { --lm-icon-c1: #059669; --lm-icon-c2: #34d399; }
.lm-icon-cell--sky { --lm-icon-c1: #0284c7; --lm-icon-c2: #38bdf8; }
.lm-icon-cell--slate { --lm-icon-c1: #475569; --lm-icon-c2: #6366f1; }

.lm-stat--live .lm-stat__num .mdi {
  animation: lm-icon-color-shift 5s ease-in-out infinite;
  animation-delay: calc(var(--icon-i, 0) * 0.25s);
}

.lm-page-home .lm-stat:nth-child(1) { --lm-icon-c1: #0ea5e9; --lm-icon-c2: #22d3ee; }
.lm-page-home .lm-stat:nth-child(2) { --lm-icon-c1: #6366f1; --lm-icon-c2: #a78bfa; }
.lm-page-home .lm-stat:nth-child(3) { --lm-icon-c1: #059669; --lm-icon-c2: #34d399; }
.lm-page-home .lm-stat:nth-child(4) { --lm-icon-c1: #d97706; --lm-icon-c2: #fbbf24; }
.lm-page-home .lm-stat:nth-child(5) { --lm-icon-c1: #0284c7; --lm-icon-c2: #38bdf8; }
.lm-page-home .lm-stat:nth-child(6) { --lm-icon-c1: #7c3aed; --lm-icon-c2: #a78bfa; }

.lm-sol-shared-chip:nth-child(1) i { --lm-icon-c1: #6366f1; --lm-icon-c2: #818cf8; }
.lm-sol-shared-chip:nth-child(2) i { --lm-icon-c1: #0ea5e9; --lm-icon-c2: #38bdf8; }
.lm-sol-shared-chip:nth-child(3) i { --lm-icon-c1: #059669; --lm-icon-c2: #34d399; }
.lm-sol-shared-chip:nth-child(4) i { --lm-icon-c1: #7c3aed; --lm-icon-c2: #a78bfa; }
.lm-sol-shared-chip:nth-child(5) i { --lm-icon-c1: #d97706; --lm-icon-c2: #fbbf24; }
.lm-sol-shared-chip:nth-child(6) i { --lm-icon-c1: #0284c7; --lm-icon-c2: #22d3ee; }
.lm-sol-shared-chip:nth-child(7) i { --lm-icon-c1: #4338ca; --lm-icon-c2: #6366f1; }

.lm-sol-shared-chip i {
  animation: lm-icon-color-shift 4.8s ease-in-out infinite;
  animation-delay: calc(var(--icon-i, 0) * 0.2s);
}

.lm-sol-diff-card i {
  animation: lm-icon-color-shift 5.5s ease-in-out infinite;
  animation-delay: calc(var(--icon-i, 0) * 0.3s);
}

.lm-page-solution--sgi .lm-sol-diff-card { --lm-icon-c1: #d97706; --lm-icon-c2: #f59e0b; }
.lm-page-solution--complaint .lm-sol-diff-card { --lm-icon-c1: #0284c7; --lm-icon-c2: #38bdf8; }
.lm-page-solution--compliance .lm-sol-diff-card { --lm-icon-c1: #dc2626; --lm-icon-c2: #f97316; }
.lm-page-solution--mpi .lm-sol-diff-card { --lm-icon-c1: #059669; --lm-icon-c2: #34d399; }

.lm-card-solution__icon i {
  transition: color 0.35s ease, transform 0.35s ease;
}

.lm-card-solution:hover .lm-card-solution__icon i {
  color: #2563eb;
  transform: scale(1.06);
}

/* ===== Showcase UI — capturas con crossfade ===== */
.lm-ui-showcase {
  border-radius: 0.85rem;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

body.lm-motion-on .lm-ui-showcase.lm-in-view {
  opacity: 1;
  transform: translateY(0);
}

.lm-ui-showcase__chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.lm-ui-showcase__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lm-ui-showcase__dot--r { background: #f87171; }
.lm-ui-showcase__dot--y { background: #fbbf24; }
.lm-ui-showcase__dot--g { background: #34d399; }

.lm-ui-showcase__chrome-title {
  margin-left: auto;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
}

.lm-ui-showcase__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1896 / 864;
  background: #f1f5f9;
  overflow: hidden;
  transition: aspect-ratio 0.45s ease;
}

.lm-ui-showcase__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  pointer-events: none;
}

.lm-ui-showcase__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.lm-ui-showcase__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.lm-ui-showcase__slide.is-active img {
  animation: lm-ui-ken-burns 9s ease-in-out infinite alternate;
}

@keyframes lm-ui-ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

.lm-ui-showcase__slide figcaption {
  display: none;
}

.lm-ui-showcase__footer {
  padding: 0.55rem 0.75rem 0.65rem;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}

.lm-ui-showcase__dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}

.lm-ui-showcase__dot-btn {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.lm-ui-showcase__dot-btn.is-active {
  background: #6366f1;
  transform: scale(1.15);
}

.lm-ui-showcase__caption {
  font-size: 0.78rem;
  line-height: 1.35;
  color: #64748b;
  text-align: center;
  min-height: 1.1rem;
  transition: opacity 0.35s ease;
}

.lm-ui-showcase-section {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

/* Carrusel reutilizable de capturas (~5 fotos / 3 s) */
.lm-shot-carousel {
  position: relative;
  width: 100%;
}

.lm-shot-carousel-wrap {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.lm-shot-carousel__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1896 / 864;
  background: #f1f5f9;
  overflow: hidden;
  border-radius: 0.75rem;
}

.lm-shot-carousel--product .lm-shot-carousel__viewport {
  box-shadow: 0 18px 48px -20px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.lm-shot-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
  pointer-events: none;
}

.lm-shot-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.lm-shot-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
}

.lm-shot-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.lm-shot-carousel--video .lm-shot-carousel__dots,
.lm-shot-carousel--compact .lm-shot-carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.45rem;
  margin-top: 0;
  z-index: 2;
}

.lm-shot-carousel__dot-btn {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.lm-shot-carousel--video .lm-shot-carousel__dot-btn,
.lm-shot-carousel--compact .lm-shot-carousel__dot-btn {
  background: rgba(255, 255, 255, 0.45);
}

.lm-shot-carousel__dot-btn.is-active {
  background: #6366f1;
  transform: scale(1.15);
}

.lm-shot-carousel--video .lm-shot-carousel__dot-btn.is-active,
.lm-shot-carousel--compact .lm-shot-carousel__dot-btn.is-active {
  background: #fff;
}

.lm-shot-carousel--video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lm-shot-carousel--video .lm-shot-carousel__viewport {
  height: 100%;
  aspect-ratio: unset;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

.lm-shot-carousel--video .lm-shot-carousel__slide img {
  object-fit: cover;
}

.lm-shot-carousel--compact {
  max-width: 220px;
  margin: 0 auto 0.75rem;
}

.lm-shot-carousel--compact .lm-shot-carousel__viewport {
  aspect-ratio: 16 / 10;
  border-radius: 0.5rem;
}

.lm-depth-shot.lm-depth-shot--product .lm-shot-carousel__viewport,
.lm-depth-shot--product .lm-shot-carousel__viewport {
  aspect-ratio: 4 / 3;
}

.lm-features-showcase__mac .lm-shot-carousel__viewport {
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.lm-support-band__photo .lm-shot-carousel__viewport {
  aspect-ratio: 3 / 2;
}

@media (prefers-reduced-motion: reduce) {
  .lm-shot-carousel__slide {
    transition: none;
  }
}

.lm-gallery--live .lm-gallery__item {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lm-gallery--live .lm-gallery__item.is-highlight {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.15);
}

.lm-gallery--live .lm-gallery__item img {
  transition: filter 0.4s ease;
}

.lm-gallery--live .lm-gallery__item.is-highlight img {
  filter: saturate(1.05);
}

.lm-gallery--compact {
  grid-template-columns: repeat(2, 1fr);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.lm-gallery--compact .lm-gallery__item {
  aspect-ratio: 1896 / 864;
  height: auto;
}

.lm-gallery--compact .lm-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

@media (min-width: 768px) {
  .lm-gallery--compact {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lm-land-product-ui__col {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.lm-land-product-ui__col .lm-section-lead {
  margin-bottom: 0.75rem;
}

.lm-land-product-ui__col .lm-ui-showcase,
.lm-land-product-ui__col .lm-video-shell {
  margin-top: 0;
}

.lm-land-product-ui .lm-gallery--compact {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 992px) {
  .lm-land-product-ui__dual {
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lm-icon-cell--live .mdi,
  .lm-stat--live .lm-stat__num .mdi,
  .lm-sol-shared-chip i,
  .lm-sol-diff-card i,
  .lm-ui-showcase__slide.is-active img {
    animation: none !important;
  }

  .lm-ui-showcase__slide {
    transition: none;
  }
}

/* --- Sistema visual marketing: una sola tipografía (Open Sans, igual que la home) --- */
.landing-page,
.landing-modern {
  --lm-font-display: "Open Sans", system-ui, sans-serif;
  --lm-font-body: "Open Sans", system-ui, sans-serif;
  --lm-ink: #0b1220;
  --lm-ink-muted: #5b6472;
  font-family: var(--lm-font-body);
}

.landing-page--depth,
.landing-page--portal,
.landing-page--modules,
.landing-page--contact,
.landing-page--sgi,
.landing-page--solution,
.landing-page--personas,
.landing-page--module {
  font-family: var(--lm-font-body);
}

.landing-page .lm-section-title,
.landing-page .lm-page-head h1,
.landing-page .landing-hero-display,
.landing-page--home-v2 .lm-section-title,
.landing-page--home-v2 .lm-hero-v2__title,
.lm-module-families__title,
.lm-saas-teaser__title {
  font-family: var(--lm-font-display);
  letter-spacing: -0.02em;
}

.lm-top-banner--v2 {
  background: linear-gradient(180deg, #0b1220 0%, #0f1a2e 100%);
  padding-bottom: 0;
}

.lm-top-banner--v2 .top-banner.row {
  display: none;
}

.lm-nav-public__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.15rem;
}

.lm-nav-public__brand {
  display: block;
  margin-right: auto;
}

.lm-nav-public__links {
  align-items: center;
  gap: 0.15rem;
}

.lm-nav-public__links .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.65rem;
  border-radius: 0.4rem;
}

.lm-nav-public__links .nav-link:hover,
.lm-nav-public__links .nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.lm-nav-public__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.lm-nav-public__login {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}

.lm-nav-public__login:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}

.lm-nav-public__demo {
  font-weight: 600;
  border: none;
}

.lm-nav-public__toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

/* --- Nav glass pill (home + soluciones) --- */
.landing-page--home,
.landing-page--sgi-v2,
.landing-page--complaint-v2,
.landing-page--compliance-v2,
.landing-page--mpi-v2,
.landing-page--plataforma-v2,
.landing-page--integrations-v2,
.landing-page--modules-v2,
.landing-page--mobile-v2,
.landing-page--saas-v2,
.landing-page--experience-v2,
.landing-page--contact-v2,
.landing-page--depth-v2,
.landing-page--module-v2 {
  --landing-nav-bar-h: 5rem;
}

.landing-page--home .lm-site-header,
.landing-page--sgi-v2 .lm-site-header,
.landing-page--complaint-v2 .lm-site-header,
.landing-page--compliance-v2 .lm-site-header,
.landing-page--mpi-v2 .lm-site-header,
.landing-page--plataforma-v2 .lm-site-header,
.landing-page--integrations-v2 .lm-site-header,
.landing-page--modules-v2 .lm-site-header,
.landing-page--mobile-v2 .lm-site-header,
.landing-page--saas-v2 .lm-site-header,
.landing-page--experience-v2 .lm-site-header,
.landing-page--contact-v2 .lm-site-header,
.landing-page--depth-v2 .lm-site-header,
.landing-page--module-v2 .lm-site-header {
  position: relative;
  z-index: 80;
  padding: 0.65rem 0 0.35rem;
}

.lm-nav-public--pill .lm-nav-public__shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.15rem;
  width: 100%;
  max-width: 100%;
  padding-left: var(--lm-page-gutter-x);
  padding-right: var(--lm-page-gutter-x);
}

.lm-nav-public--pill .lm-nav-public__brand {
  flex-shrink: 0;
  margin-right: 0;
  line-height: 0;
  background: transparent;
}

.lm-nav-public--pill .lm-nav-public__brand .landing-nav-logo {
  display: block;
  background: transparent;
}

.lm-nav-public--pill .lm-nav-public__bar {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.32rem 0.5rem 0.32rem 0.65rem;
  background: rgba(11, 18, 32, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: visible;
}

.lm-nav-public--pill .lm-nav-public__links .nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.42rem 0.35rem;
  color: rgba(255, 255, 255, 0.88) !important;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
  text-align: center;
  justify-content: center;
}

.landing-page--home .lm-nav-public--pill .lm-nav-public__links .nav-link:hover,
.landing-page--home .lm-nav-public--pill .lm-nav-public__links .nav-link:focus-visible {
  color: #fff !important;
  background: rgba(14, 165, 233, 0.16);
}

.landing-page--sgi-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:hover,
.landing-page--sgi-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:focus-visible {
  color: #fff !important;
  background: rgba(245, 158, 11, 0.16);
}

.landing-page--complaint-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:hover,
.landing-page--complaint-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:focus-visible {
  color: #fff !important;
  background: rgba(14, 165, 233, 0.16);
}

.landing-page--compliance-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:hover,
.landing-page--compliance-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:focus-visible {
  color: #fff !important;
  background: rgba(99, 102, 241, 0.18);
}

.lm-nav-public--pill .lm-nav-public__links .dropdown-toggle::after {
  margin-left: 0.25rem;
  vertical-align: 0.15em;
  opacity: 0.65;
}

.lm-nav-public--pill .lm-nav-public__lang {
  display: flex;
  align-items: center;
  padding-inline: 0.15rem;
}

.lm-nav-public--pill .lm-nav-public__login {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.landing-page--home .lm-nav-public--pill .lm-nav-public__demo--home {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.38rem 1rem;
  border-radius: 999px;
  border: none;
  color: #fff !important;
  background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.38);
  white-space: nowrap;
}

.landing-page--home .lm-nav-public--pill .lm-nav-public__demo--home:hover,
.landing-page--home .lm-nav-public--pill .lm-nav-public__demo--home:focus {
  color: #fff !important;
  background: linear-gradient(135deg, #5558e3 0%, #0284c7 100%);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.landing-page--sgi-v2 .lm-nav-public--pill .lm-nav-public__demo--solution {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.38rem 1rem;
  border-radius: 999px;
  border: none;
  color: #fff !important;
  background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.38);
  white-space: nowrap;
}

.landing-page--sgi-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:hover,
.landing-page--sgi-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:focus {
  color: #fff !important;
  background: linear-gradient(135deg, #c2410c 0%, #d97706 100%);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
}

.landing-page--complaint-v2 .lm-nav-public--pill .lm-nav-public__demo--solution {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.38rem 1rem;
  border-radius: 999px;
  border: none;
  color: #fff !important;
  background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.38);
  white-space: nowrap;
}

.landing-page--complaint-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:hover,
.landing-page--complaint-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:focus {
  color: #fff !important;
  background: linear-gradient(135deg, #5558e3 0%, #0284c7 100%);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.landing-page--compliance-v2 .lm-nav-public--pill .lm-nav-public__demo--solution {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.38rem 1rem;
  border-radius: 999px;
  border: none;
  color: #fff !important;
  background: linear-gradient(135deg, #6366f1 0%, #464de4 100%);
  box-shadow: 0 4px 16px rgba(70, 77, 228, 0.38);
  white-space: nowrap;
}

.landing-page--compliance-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:hover,
.landing-page--compliance-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:focus {
  color: #fff !important;
  background: linear-gradient(135deg, #5558e3 0%, #3730a3 100%);
  box-shadow: 0 6px 20px rgba(70, 77, 228, 0.45);
}

.landing-page--mpi-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:hover,
.landing-page--mpi-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:focus-visible {
  color: #fff !important;
  background: rgba(16, 185, 129, 0.18);
}

.landing-page--mpi-v2 .lm-nav-public--pill .lm-nav-public__demo--solution {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.38rem 1rem;
  border-radius: 999px;
  border: none;
  color: #fff !important;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.38);
  white-space: nowrap;
}

.landing-page--mpi-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:hover,
.landing-page--mpi-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:focus {
  color: #fff !important;
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
}

.landing-page--plataforma-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:hover,
.landing-page--plataforma-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:focus-visible,
.landing-page--integrations-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:hover,
.landing-page--integrations-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:focus-visible,
.landing-page--modules-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:hover,
.landing-page--modules-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:focus-visible,
.landing-page--mobile-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:hover,
.landing-page--mobile-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:focus-visible,
.landing-page--saas-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:hover,
.landing-page--saas-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:focus-visible,
.landing-page--experience-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:hover,
.landing-page--experience-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:focus-visible,
.landing-page--contact-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:hover,
.landing-page--contact-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:focus-visible,
.landing-page--depth-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:hover,
.landing-page--depth-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:focus-visible,
.landing-page--module-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:hover,
.landing-page--module-v2 .lm-nav-public--pill .lm-nav-public__links .nav-link:focus-visible {
  color: #fff !important;
  background: rgba(14, 165, 233, 0.16);
}

.landing-page--plataforma-v2 .lm-nav-public--pill .lm-nav-public__demo--solution,
.landing-page--integrations-v2 .lm-nav-public--pill .lm-nav-public__demo--solution,
.landing-page--modules-v2 .lm-nav-public--pill .lm-nav-public__demo--solution,
.landing-page--mobile-v2 .lm-nav-public--pill .lm-nav-public__demo--solution,
.landing-page--saas-v2 .lm-nav-public--pill .lm-nav-public__demo--solution,
.landing-page--experience-v2 .lm-nav-public--pill .lm-nav-public__demo--solution,
.landing-page--contact-v2 .lm-nav-public--pill .lm-nav-public__demo--solution,
.landing-page--depth-v2 .lm-nav-public--pill .lm-nav-public__demo--solution,
.landing-page--module-v2 .lm-nav-public--pill .lm-nav-public__demo--solution {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.38rem 1rem;
  border-radius: 999px;
  border: none;
  color: #fff !important;
  background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.38);
  white-space: nowrap;
}

.landing-page--plataforma-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:hover,
.landing-page--plataforma-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:focus,
.landing-page--integrations-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:hover,
.landing-page--integrations-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:focus,
.landing-page--modules-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:hover,
.landing-page--modules-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:focus,
.landing-page--mobile-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:hover,
.landing-page--mobile-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:focus,
.landing-page--saas-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:hover,
.landing-page--saas-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:focus,
.landing-page--experience-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:hover,
.landing-page--experience-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:focus,
.landing-page--contact-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:hover,
.landing-page--contact-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:focus,
.landing-page--depth-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:hover,
.landing-page--depth-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:focus,
.landing-page--module-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:hover,
.landing-page--module-v2 .lm-nav-public--pill .lm-nav-public__demo--solution:focus {
  color: #fff !important;
  background: linear-gradient(135deg, #5558e3 0%, #0284c7 100%);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.lm-nav-public--pill .lm-nav-public__toggle {
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
}

.lm-nav-public--pill .lm-nav-public__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.lm-nav-public--pill .lm-nav-public__collapse {
  overflow: visible;
}

@media (min-width: 992px) {
  .lm-nav-public--pill .lm-nav-public__collapse {
    display: flex !important;
    align-items: center;
    flex: 1 1 auto;
    justify-content: stretch;
    gap: 0;
    min-width: 0;
    width: 100%;
  }

  .lm-nav-public--pill .lm-nav-public__links--center {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.15rem;
    min-width: 0;
    margin: 0;
    padding-inline: 0.15rem 0.35rem;
  }

  .lm-nav-public--pill .lm-nav-public__links--center > .nav-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    justify-content: center;
    position: relative;
  }

  .lm-nav-public--pill .lm-nav-public__links--center .nav-link {
    display: inline-flex;
    align-items: center;
    width: 100%;
    white-space: nowrap;
  }

  .lm-nav-public--pill .lm-nav-public__actions {
    margin-left: 0;
    padding-left: 0.65rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .lm-nav-public--pill .nav-item.dropdown {
    position: relative;
    z-index: 2;
  }

  .lm-nav-public--pill .nav-item.dropdown.show {
    z-index: 30;
  }

  .lm-nav-public--pill .dropdown-menu {
    top: calc(100% + 0.45rem) !important;
    margin-top: 0 !important;
    transform: none !important;
    z-index: 1200 !important;
  }

  .lm-nav-public--pill .nav-item.dropdown .dropdown-menu[data-bs-popper] {
    left: 50%;
    right: auto;
    transform: translateX(-50%) !important;
  }
}

/* Dropdown pill: mismo glass que la barra del menú */
.lm-nav-public--pill .dropdown-menu.landing-nav-dropdown {
  --bs-dropdown-bg: rgba(11, 18, 32, 0.96);
  --bs-dropdown-link-color: rgba(255, 255, 255, 0.9);
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.1);
  --bs-dropdown-border-color: rgba(255, 255, 255, 0.12);
  background: rgba(11, 18, 32, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0.85rem;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lm-nav-public--pill .dropdown-menu.landing-nav-dropdown .dropdown-item {
  color: rgba(255, 255, 255, 0.9);
}

.lm-nav-public--pill .dropdown-menu.landing-nav-dropdown .dropdown-item .mdi {
  color: rgba(148, 163, 184, 0.95);
}

.lm-nav-public--pill .dropdown-menu.landing-nav-dropdown .dropdown-item:hover,
.lm-nav-public--pill .dropdown-menu.landing-nav-dropdown .dropdown-item:focus,
.lm-nav-public--pill .dropdown-menu.landing-nav-dropdown .dropdown-item:active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lm-nav-public--pill .dropdown-menu.landing-nav-dropdown .dropdown-item:hover .mdi,
.lm-nav-public--pill .dropdown-menu.landing-nav-dropdown .dropdown-item:focus .mdi {
  color: #fff;
}

@media (max-width: 991.98px) {
  .landing-page--home,
  .landing-page--sgi-v2,
  .landing-page--complaint-v2,
  .landing-page--compliance-v2,
  .landing-page--mpi-v2,
  .landing-page--plataforma-v2,
  .landing-page--integrations-v2,
  .landing-page--modules-v2,
  .landing-page--mobile-v2,
  .landing-page--saas-v2,
  .landing-page--experience-v2,
  .landing-page--contact-v2,
  .landing-page--depth-v2,
  .landing-page--module-v2 {
    --landing-nav-bar-h: 5.5rem;
  }

  .lm-nav-public--pill .lm-nav-public__shell {
    align-items: center;
  }

  .lm-nav-public--pill .lm-nav-public__toggle {
    margin-left: auto;
  }

  .lm-nav-public--pill .lm-nav-public__bar {
    flex: 1 1 100%;
    order: 3;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .lm-nav-public--pill .lm-nav-public__collapse {
    margin-top: 0;
    padding: 0.65rem 0.75rem 0.35rem;
    background: rgba(11, 18, 32, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.85rem;
  }

  .lm-nav-public--pill .lm-nav-public__links .nav-link {
    padding-inline: 0.75rem;
    text-align: start;
    justify-content: flex-start;
    width: auto;
  }

  .lm-nav-public--pill .lm-nav-public__links--center > .nav-item {
    flex: none;
    justify-content: flex-start;
    width: 100%;
  }

  .lm-nav-public--pill .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin: 0.25rem 0 0.35rem 0.75rem !important;
    transform: none !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(11, 18, 32, 0.88) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .lm-nav-public--pill .lm-nav-public__actions {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: none;
    padding-left: 0;
    margin-top: 0.5rem;
    padding-top: 0.65rem;
    width: 100%;
    justify-content: center;
  }

  .lm-nav-public--pill .lm-nav-public__login,
  .lm-nav-public--pill .lm-nav-public__demo--home,
  .lm-nav-public--pill .lm-nav-public__demo--solution {
    flex: 1 1 0;
    text-align: center;
  }
}

/* --- Home: hero (debajo del header) --- */
.landing-page--home > .top-banner {
  position: relative;
  isolation: isolate;
}

.landing-page--home > .top-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.72) 42%, rgba(15, 23, 42, 0.35) 100%),
    radial-gradient(ellipse 70% 55% at 82% 38%, rgba(14, 165, 233, 0.18), transparent 58%);
  pointer-events: none;
}

.landing-page--home .lm-home-hero__inner {
  position: relative;
  z-index: 1;
}

.landing-page--home .lm-home-hero__inner {
  padding-bottom: 0.25rem;
}

.landing-page--home .lm-home-hero {
  padding: 0.85rem 0 1.75rem;
}

.landing-page--home .landing-hero-copy {
  text-align: center;
}

.landing-page--home .landing-hero-display {
  font-family: var(--lm-font-display, "Open Sans", system-ui, sans-serif);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  font-size: clamp(1.65rem, 4.8vw, 2.85rem);
  white-space: normal !important;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.landing-page--home .landing-hero-kicker {
  color: #7dd3fc;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.landing-page--home .lm-home-hero__lead {
  max-width: 36rem;
  margin-inline: auto;
  opacity: 0.92;
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  line-height: 1.55;
}

.landing-page--home .lm-home-hero__pills {
  justify-content: center;
  margin: 0;
  padding: 0;
}

.landing-page--home .lm-home-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.landing-page--home .lm-home-hero__pill .mdi {
  font-size: 1rem;
  color: #67e8f9;
}

.landing-page--home .landing-hero-cta {
  max-width: 28rem;
  margin-inline: auto;
}

.landing-page--home .landing-hero-cta__btn--demo {
  color: #fff !important;
  background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
  border: none;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.38);
}

.landing-page--home .landing-hero-cta__btn--demo:hover,
.landing-page--home .landing-hero-cta__btn--demo:focus {
  color: #fff !important;
  background: linear-gradient(135deg, #5558e3 0%, #0284c7 100%);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

@media (min-width: 576px) {
  .landing-page--home .lm-home-hero__inner > .row {
    position: relative;
    overflow: visible;
    align-items: flex-end;
    flex-wrap: nowrap;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }

  .landing-page--home .lm-home-hero__inner > .row > .landing-hero-copy {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
  }

  .landing-page--home .lm-home-hero__inner > .row > .landing-hero-phone {
    flex: 0 0 42%;
    width: 42%;
    max-width: min(42%, 32rem);
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 0;
    padding: 0 !important;
    align-self: flex-end;
  }

  .landing-page--home .top-banner .landing-hero-phone__img {
    width: 100%;
    max-width: 100%;
    max-height: min(52vh, 22rem);
    object-position: right bottom;
  }
}

@media (min-width: 768px) {
  .landing-page--home .landing-hero-copy {
    text-align: start;
  }

  .landing-page--home .lm-home-hero__pills {
    justify-content: flex-start;
  }

  .landing-page--home .lm-home-hero__lead {
    margin-inline: 0;
  }

  .landing-page--home .landing-hero-cta {
    margin-inline: 0;
  }
}

@media (min-width: 992px) {
  .landing-page--home .top-banner .landing-hero-phone__img {
    max-height: min(54vh, 24rem);
  }

  .landing-page--home .lm-home-hero {
    padding: 1rem 0 2.25rem;
  }
}

/* --- Home: trust strip (puente hero → contenido) --- */
.landing-page--home .lm-trust-strip {
  position: relative;
  z-index: 4;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
}

.landing-page--home .lm-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  justify-items: center;
}

.landing-page--home .lm-trust-strip__list li {
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(226, 232, 240, 0.92);
  white-space: normal;
  text-align: center;
}

.landing-page--home .lm-trust-strip__list i {
  font-size: 0.9rem;
  color: #67e8f9;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .landing-page--home .lm-trust-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .landing-page--home .lm-trust-strip__list li {
    position: relative;
    padding-inline: 0.65rem;
    white-space: nowrap;
  }

  .landing-page--home .lm-trust-strip__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.14);
  }
}

/* --- Home: bloque Cuatro soluciones --- */
.landing-page--home .lm-home-solutions {
  position: relative;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.landing-page--home .lm-home-solutions::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8rem;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(99, 102, 241, 0.12), transparent 70%);
  pointer-events: none;
}

.landing-page--home .lm-home-solutions__intro {
  display: block;
  max-width: 40rem;
}

.landing-page--home .lm-home-solutions__intro .lm-section-lead {
  white-space: normal !important;
  max-width: 36rem;
  font-size: clamp(0.88rem, 1.5vw, 1.02rem);
  line-height: 1.5;
}

.landing-page--home .lm-home-solutions__kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(129, 140, 248, 0.95);
}

.landing-page--home .lm-home-solutions .lm-section-title {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  letter-spacing: -0.02em;
}

.landing-page--home .lm-card-solution--home {
  padding: 1rem 1rem 0.9rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}

.landing-page--home .lm-card-solution--home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lm-card-accent, linear-gradient(90deg, #6366f1, #0ea5e9));
  opacity: 0.9;
}

.landing-page--home .lm-card-solution--sgi {
  --lm-card-accent: linear-gradient(90deg, #0ea5e9, #38bdf8);
}

.landing-page--home .lm-card-solution--complaint {
  --lm-card-accent: linear-gradient(90deg, #6366f1, #818cf8);
}

.landing-page--home .lm-card-solution--mpd {
  --lm-card-accent: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.landing-page--home .lm-card-solution--mpi {
  --lm-card-accent: linear-gradient(90deg, #10b981, #34d399);
}

.landing-page--home .lm-card-solution--home:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 48px -24px rgba(99, 102, 241, 0.25);
}

.landing-page--home .lm-card-solution--sgi .lm-card-solution__icon {
  background: rgba(14, 165, 233, 0.16);
  color: #38bdf8;
}

.landing-page--home .lm-card-solution--complaint .lm-card-solution__icon {
  background: rgba(99, 102, 241, 0.18);
  color: #a5b4fc;
}

.landing-page--home .lm-card-solution--mpd .lm-card-solution__icon {
  background: rgba(245, 158, 11, 0.16);
  color: #fbbf24;
}

.landing-page--home .lm-card-solution--mpi .lm-card-solution__icon {
  background: rgba(16, 185, 129, 0.16);
  color: #34d399;
}

.landing-page--home .lm-card-solution--sgi .lm-link-arrow {
  color: #38bdf8;
}

.landing-page--home .lm-card-solution--complaint .lm-link-arrow {
  color: #a5b4fc;
}

.landing-page--home .lm-card-solution--mpd .lm-link-arrow {
  color: #fbbf24;
}

.landing-page--home .lm-card-solution--mpi .lm-link-arrow {
  color: #34d399;
}

.landing-page--home .lm-card-solution--home .lm-card-solution__head h3 {
  font-size: 0.92rem;
}

.landing-page--home .lm-card-solution--home p {
  font-size: 0.8rem;
  line-height: 1.45;
}

/* --- Home: stats promo --- */
.landing-page--home .lm-home-stats {
  position: relative;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
  background: linear-gradient(180deg, #0b1220 0%, #111827 12%, #f8fafc 28%, #fff 100%);
  border-bottom: 1px solid #e2e8f0;
}

.landing-page--home .lm-home-stats::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6rem;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(99, 102, 241, 0.1), transparent 70%);
  pointer-events: none;
}

.landing-page--home .lm-home-stats__grid > [class*="col-"] {
  display: flex;
}

.landing-page--home .lm-home-stats .lm-stat {
  flex: 1 1 auto;
  width: 100%;
  padding: 0.85rem 0.65rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 8px 24px -18px rgba(15, 23, 42, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--home .lm-home-stats .lm-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 12px 32px -16px rgba(99, 102, 241, 0.22);
}

.landing-page--home .lm-home-stats .lm-stat__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  margin: 0 auto;
  border-radius: 0.75rem;
  font-size: 1.35rem;
  background: linear-gradient(145deg, var(--lm-stat-bg1, rgba(99, 102, 241, 0.14)), var(--lm-stat-bg2, rgba(14, 165, 233, 0.12)));
}

.landing-page--home .lm-home-stats .lm-stat__num .mdi {
  color: var(--lm-stat-accent, #6366f1);
}

.landing-page--home .lm-home-stats .lm-stat__label {
  margin-top: 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #475569;
  line-height: 1.3;
}

.landing-page--home .lm-home-stats__grid > [class*="col-"]:nth-child(1) .lm-stat {
  --lm-stat-accent: #0ea5e9;
  --lm-stat-bg1: rgba(14, 165, 233, 0.16);
  --lm-stat-bg2: rgba(34, 211, 238, 0.1);
  --lm-icon-c1: #0ea5e9;
  --lm-icon-c2: #22d3ee;
}

.landing-page--home .lm-home-stats__grid > [class*="col-"]:nth-child(2) .lm-stat {
  --lm-stat-accent: #6366f1;
  --lm-stat-bg1: rgba(99, 102, 241, 0.16);
  --lm-stat-bg2: rgba(167, 139, 250, 0.1);
  --lm-icon-c1: #6366f1;
  --lm-icon-c2: #a78bfa;
}

.landing-page--home .lm-home-stats__grid > [class*="col-"]:nth-child(3) .lm-stat {
  --lm-stat-accent: #059669;
  --lm-stat-bg1: rgba(5, 150, 105, 0.14);
  --lm-stat-bg2: rgba(52, 211, 153, 0.1);
  --lm-icon-c1: #059669;
  --lm-icon-c2: #34d399;
}

.landing-page--home .lm-home-stats__grid > [class*="col-"]:nth-child(4) .lm-stat {
  --lm-stat-accent: #d97706;
  --lm-stat-bg1: rgba(217, 119, 6, 0.14);
  --lm-stat-bg2: rgba(251, 191, 36, 0.1);
  --lm-icon-c1: #d97706;
  --lm-icon-c2: #fbbf24;
}

.landing-page--home .lm-home-stats__grid > [class*="col-"]:nth-child(5) .lm-stat {
  --lm-stat-accent: #0284c7;
  --lm-stat-bg1: rgba(2, 132, 199, 0.14);
  --lm-stat-bg2: rgba(56, 189, 248, 0.1);
  --lm-icon-c1: #0284c7;
  --lm-icon-c2: #38bdf8;
}

.landing-page--home .lm-home-stats__grid > [class*="col-"]:nth-child(6) .lm-stat {
  --lm-stat-accent: #7c3aed;
  --lm-stat-bg1: rgba(124, 58, 237, 0.14);
  --lm-stat-bg2: rgba(167, 139, 250, 0.1);
  --lm-icon-c1: #7c3aed;
  --lm-icon-c2: #a78bfa;
}

/* --- Home: bloque AWS trust --- */
.landing-page--home .lm-home-trust-aws {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 45%, #f0f9ff 100%);
  border-bottom: 1px solid #e2e8f0;
}

.landing-page--home .lm-home-trust-aws .lm-trust__title {
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  letter-spacing: -0.025em;
  color: #0f172a;
}

.landing-page--home .lm-home-trust-aws .lm-trust__lead {
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 34rem;
  color: #64748b;
}

.landing-page--home .lm-home-trust-aws .lm-trust__list li {
  font-size: 0.86rem;
  color: #475569;
}

.landing-page--home .lm-home-trust-aws .lm-trust__list i {
  color: #6366f1;
  font-size: 1.05rem;
  margin-top: 0.1rem;
}

.landing-page--home .lm-home-trust-aws .lm-trust-arch {
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.06), rgba(14, 165, 233, 0.05));
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 16px 40px -28px rgba(99, 102, 241, 0.35);
}

/* --- Home: banda comunicaciones --- */
.landing-page--home .lm-comms-band--home {
  padding: 1.75rem 0;
  background: linear-gradient(118deg, #0b1220 0%, #1e1b4b 38%, #0c4a6e 100%);
}

.landing-page--home .lm-comms-band--home::before {
  background:
    radial-gradient(ellipse 55% 80% at 78% 50%, rgba(14, 165, 233, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 60% at 12% 80%, rgba(99, 102, 241, 0.16), transparent 55%);
}

.landing-page--home .lm-comms-band--home .lm-band-title {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  letter-spacing: -0.02em;
}

.landing-page--home .lm-comms-band--home .lm-comms-band__cta,
.landing-page--home .lm-comms-band--home .btn-light {
  background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
  border: none;
  color: #fff;
  border-radius: 999px;
  padding-inline: 1.1rem;
}

.landing-page--home .lm-comms-band--home .lm-comms-band__cta:hover,
.landing-page--home .lm-comms-band--home .lm-comms-band__cta:focus,
.landing-page--home .lm-comms-band--home .btn-light:hover,
.landing-page--home .lm-comms-band--home .btn-light:focus {
  background: linear-gradient(135deg, #4f46e5 0%, #0284c7 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

/* --- Home: banda integraciones --- */
.landing-page--home .lm-int-band--home {
  padding: 1.75rem 0;
  background: linear-gradient(125deg, #f8fafc 0%, #eef2ff 42%, #ecfeff 78%, #f8fafc 100%);
}

.landing-page--home .lm-int-band--home::before {
  background:
    radial-gradient(ellipse 52% 78% at 14% 48%, rgba(99, 102, 241, 0.1), transparent 58%),
    radial-gradient(ellipse 42% 58% at 88% 36%, rgba(14, 165, 233, 0.12), transparent 52%);
}

.landing-page--home .lm-int-band--home .lm-int-band__title {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  letter-spacing: -0.02em;
}

.landing-page--home .lm-int-band--home .lm-int-band__lead {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 28rem;
}

.landing-page--home .lm-int-band--home .lm-int-band__cta {
  background: #fff;
  color: #4338ca;
  border: 1px solid rgba(99, 102, 241, 0.45);
  border-radius: 999px;
  padding-inline: 1.1rem;
  box-shadow: 0 4px 16px -8px rgba(99, 102, 241, 0.35);
}

.landing-page--home .lm-int-band--home .lm-int-band__cta:hover,
.landing-page--home .lm-int-band--home .lm-int-band__cta:focus {
  background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

/* --- Home: app móvil teaser --- */
.landing-page--home .lm-app-launch--home-teaser {
  padding: 2rem 0;
  background: linear-gradient(118deg, #0b1220 0%, #1e1b4b 40%, #134e4a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-page--home .lm-app-launch--home-teaser::before {
  background:
    radial-gradient(ellipse 60% 70% at 85% 30%, rgba(14, 165, 233, 0.2), transparent 55%),
    radial-gradient(ellipse 45% 55% at 10% 70%, rgba(99, 102, 241, 0.18), transparent 50%);
}

.landing-page--home .lm-app-launch--home-teaser .lm-app-launch__badge {
  background: rgba(99, 102, 241, 0.22);
  border: 1px solid rgba(129, 140, 248, 0.45);
  color: #c7d2fe;
}

.landing-page--home .lm-app-launch--home-teaser .lm-app-launch__title {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  letter-spacing: -0.02em;
}

.landing-page--home .lm-app-launch--home-teaser .btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
  border: none;
  border-radius: 999px;
  padding-inline: 1.15rem;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.landing-page--home .lm-app-launch--home-teaser .btn-primary:hover,
.landing-page--home .lm-app-launch--home-teaser .btn-primary:focus {
  background: linear-gradient(135deg, #4f46e5 0%, #0284c7 100%);
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.42);
}

/* --- Home: mapa Explore SIM4 --- */
.landing-page--home .lm-home-depth {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.landing-page--home .lm-home-depth .lm-section-title {
  letter-spacing: -0.02em;
  color: #0f172a;
}

.landing-page--home .lm-home-depth .text-muted {
  color: #64748b !important;
  font-size: 0.92rem;
}

.landing-page--home .lm-home-depth .lm-depth-chip {
  border-radius: 0.75rem;
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 20px -16px rgba(15, 23, 42, 0.18);
}

.landing-page--home .lm-home-depth .lm-depth-chip .mdi {
  color: #6366f1;
}

.landing-page--home .lm-home-depth .lm-depth-chip:hover {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 10px 28px -14px rgba(99, 102, 241, 0.25);
}

.landing-page--home .lm-home-depth .lm-depth-chip:hover .mdi {
  color: #0ea5e9;
}

/* --- Home: video + UI + pilares --- */
.landing-page--home .lm-home-product-ui {
  padding-top: 2.25rem !important;
  padding-bottom: 2.5rem !important;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 35%, #f8fafc 100%);
}

.landing-page--home .lm-home-product-ui .lm-section-title {
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  letter-spacing: -0.02em;
  color: #0f172a;
}

.landing-page--home .lm-home-product-ui .lm-section-lead {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #64748b;
}

.landing-page--home .lm-home-product-ui .lm-video-shell {
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 20px 48px -28px rgba(99, 102, 241, 0.35);
}

.landing-page--home .lm-home-product-ui .lm-ui-showcase {
  border-color: rgba(99, 102, 241, 0.22);
  box-shadow: 0 20px 48px -28px rgba(15, 23, 42, 0.28);
}

.landing-page--home .lm-home-product-ui .lm-gallery--compact .lm-gallery__item {
  border-radius: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--home .lm-home-product-ui .lm-gallery--compact .lm-gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(99, 102, 241, 0.3);
}

.landing-page--home .lm-home-pillars__title {
  max-width: 28rem;
  margin-inline: auto;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
}

.landing-page--home .lm-pillars--home {
  gap: 0.85rem;
}

.landing-page--home .lm-pillars--home .lm-pillar {
  position: relative;
  overflow: hidden;
  padding: 1.1rem 1rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 10px 28px -20px rgba(15, 23, 42, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--home .lm-pillars--home .lm-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lm-pillar-accent, linear-gradient(90deg, #6366f1, #0ea5e9));
  opacity: 0.85;
}

.landing-page--home .lm-pillars--home .lm-pillar:nth-child(1) {
  --lm-pillar-accent: linear-gradient(90deg, #6366f1, #818cf8);
  --lm-pillar-icon-bg: rgba(99, 102, 241, 0.14);
  --lm-pillar-icon-fg: #6366f1;
}

.landing-page--home .lm-pillars--home .lm-pillar:nth-child(2) {
  --lm-pillar-accent: linear-gradient(90deg, #0ea5e9, #38bdf8);
  --lm-pillar-icon-bg: rgba(14, 165, 233, 0.14);
  --lm-pillar-icon-fg: #0284c7;
}

.landing-page--home .lm-pillars--home .lm-pillar:nth-child(3) {
  --lm-pillar-accent: linear-gradient(90deg, #10b981, #34d399);
  --lm-pillar-icon-bg: rgba(16, 185, 129, 0.14);
  --lm-pillar-icon-fg: #059669;
}

.landing-page--home .lm-pillars--home .lm-pillar:nth-child(4) {
  --lm-pillar-accent: linear-gradient(90deg, #f59e0b, #fbbf24);
  --lm-pillar-icon-bg: rgba(245, 158, 11, 0.14);
  --lm-pillar-icon-fg: #d97706;
}

.landing-page--home .lm-pillars--home .lm-pillar:nth-child(5) {
  --lm-pillar-accent: linear-gradient(90deg, #8b5cf6, #a78bfa);
  --lm-pillar-icon-bg: rgba(139, 92, 246, 0.14);
  --lm-pillar-icon-fg: #7c3aed;
}

.landing-page--home .lm-pillars--home .lm-pillar:nth-child(6) {
  --lm-pillar-accent: linear-gradient(90deg, #ec4899, #f472b6);
  --lm-pillar-icon-bg: rgba(236, 72, 153, 0.12);
  --lm-pillar-icon-fg: #db2777;
}

.landing-page--home .lm-pillars--home .lm-pillar:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 14px 36px -18px rgba(99, 102, 241, 0.22);
}

.landing-page--home .lm-pillars--home .lm-pillar__icon {
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.65rem;
  border-radius: 0.65rem;
  background: var(--lm-pillar-icon-bg, rgba(99, 102, 241, 0.14));
  color: var(--lm-pillar-icon-fg, #6366f1);
  font-size: 1.15rem;
}

.landing-page--home .lm-pillars--home .lm-pillar h4 {
  font-size: 0.95rem;
  color: #0f172a;
}

.landing-page--home .lm-pillars--home .lm-pillar p {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #64748b;
}

.landing-page--home .lm-home-product-ui__foot-links .lm-link-arrow {
  color: #4338ca;
  font-size: 0.88rem;
}

.landing-page--home .lm-home-product-ui__foot-links .lm-link-arrow:hover {
  color: #0ea5e9;
}

/* --- Home: footer v2 --- */
.landing-page--home .lm-footer {
  background: linear-gradient(165deg, #0b1220 0%, #111827 45%, #020617 100%);
  border-top: 1px solid rgba(99, 102, 241, 0.28);
  box-shadow: 0 -20px 48px -32px rgba(99, 102, 241, 0.2);
}

.landing-page--home .lm-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.45), rgba(99, 102, 241, 0.45), transparent);
  pointer-events: none;
}

.landing-page--home .lm-footer {
  --lm-footer-link-hover: #67e8f9;
}

.landing-page--home .lm-footer__sub-label {
  color: #818cf8;
  letter-spacing: 0.1em;
}

.landing-page--home .lm-footer__nav-link:hover,
.landing-page--home .lm-footer__link:hover {
  color: #a5b4fc;
}

/* --- SGI v2: hero + secciones (acento ámbar, sin púrpura decorativo) --- */
.landing-page--sgi-v2 {
  --lm-solution-accent: #ea580c;
  --lm-solution-accent-2: #f59e0b;
}

.landing-page--sgi-v2 > .top-banner.lm-sgi-hero-band {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: linear-gradient(165deg, #0b1220 0%, #1c1408 40%, #0f172a 100%);
}

.landing-page--sgi-v2 > .top-banner.lm-sgi-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.72) 42%, rgba(15, 23, 42, 0.35) 100%),
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(245, 158, 11, 0.16), transparent 58%),
    radial-gradient(ellipse 45% 50% at 8% 75%, rgba(234, 88, 12, 0.1), transparent 52%);
  pointer-events: none;
}

.landing-page--sgi-v2 .lm-sgi-hero__inner {
  position: relative;
  z-index: 1;
}

.landing-page--sgi-v2 .lm-content-intro--sgi-hero,
.landing-page--sgi-v2 .lm-content-intro__embedded.lm-content-intro--sgi-hero {
  padding: 0.35rem 0 2rem;
}

.landing-page--sgi-v2 .lm-content-intro--sgi-hero .lm-kicker,
.landing-page--sgi-v2 .lm-content-intro__embedded.lm-content-intro--sgi-hero .lm-kicker {
  color: rgba(251, 191, 36, 0.92);
  letter-spacing: 0.12em;
}

.landing-page--sgi-v2 .lm-content-intro--sgi-hero .lm-section-title,
.landing-page--sgi-v2 .lm-content-intro__embedded.lm-content-intro--sgi-hero .lm-section-title {
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  letter-spacing: -0.025em;
}

.landing-page--sgi-v2 .lm-content-intro--sgi-hero .lm-section-lead,
.landing-page--sgi-v2 .lm-content-intro__embedded.lm-content-intro--sgi-hero .lm-section-lead {
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.55;
  max-width: 40rem;
}

.landing-page--sgi-v2 .lm-trust-strip {
  position: relative;
  z-index: 4;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
}

.landing-page--sgi-v2 .lm-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  justify-items: center;
}

.landing-page--sgi-v2 .lm-trust-strip__list li {
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.92);
  white-space: normal;
  text-align: center;
}

.landing-page--sgi-v2 .lm-trust-strip__list i {
  color: #fbbf24;
}

@media (min-width: 768px) {
  .landing-page--sgi-v2 .lm-trust-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .landing-page--sgi-v2 .lm-trust-strip__list li {
    position: relative;
    padding-inline: 0.65rem;
    white-space: nowrap;
  }

  .landing-page--sgi-v2 .lm-trust-strip__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.14);
  }
}

.landing-page--sgi-v2 .lm-sgi-block--what {
  padding-top: 2.25rem;
}

.landing-page--sgi-v2 .lm-sgi-block--what .lm-link-arrow {
  color: #c2410c;
}

.landing-page--sgi-v2 .lm-icon-grid--sgi .lm-icon-cell {
  border-color: rgba(251, 191, 36, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--sgi-v2 .lm-icon-grid--sgi .lm-icon-cell:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 12px 32px -16px rgba(234, 88, 12, 0.22);
}

.landing-page--sgi-v2 .lm-sgi-block--what .lm-video-shell {
  border-color: rgba(245, 158, 11, 0.28);
  box-shadow: 0 20px 48px -28px rgba(234, 88, 12, 0.28);
}

.landing-page--sgi-v2 .lm-sgi-block--diff {
  background: linear-gradient(180deg, #fffbeb 0%, #f8fafc 100%);
  border-top: 1px solid #fde68a;
  border-bottom: 1px solid #e2e8f0;
}

.landing-page--sgi-v2 .lm-sgi-block--diff .lm-sol-diff-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(251, 191, 36, 0.35);
  background: #fff;
}

.landing-page--sgi-v2 .lm-sgi-block--diff .lm-sol-diff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ea580c, #fbbf24);
  opacity: 0.9;
}

.landing-page--sgi-v2 .lm-sgi-block--diff .lm-sol-diff-card i {
  color: #d97706;
}

.landing-page--sgi-v2 .lm-sgi-block--why {
  background: linear-gradient(165deg, #0b1220 0%, #1a1208 50%, #0f172a 100%);
}

.landing-page--sgi-v2 .lm-sgi-block--why .lm-triple-panel {
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.45);
}

.landing-page--sgi-v2 .lm-sgi-block--faq {
  background: #fff;
  border-top: 1px solid #e2e8f0;
}

.landing-page--sgi-v2 .lm-sgi-block--faq .lm-faq__item {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #f8fafc;
  padding: 1rem 1.05rem;
}

.landing-page--sgi-v2 .lm-sgi-block--faq .lm-faq__item h5 {
  color: #0f172a;
}

.landing-page--sgi-v2 .lm-sgi-block--faq .lm-faq__item a {
  color: #c2410c;
}

.landing-page--sgi-v2 .lm-footer {
  background: linear-gradient(165deg, #0b1220 0%, #111827 45%, #020617 100%);
  border-top: 1px solid rgba(245, 158, 11, 0.28);
  box-shadow: 0 -20px 48px -32px rgba(234, 88, 12, 0.15);
  --lm-footer-link-hover: #fcd34d;
}

.landing-page--sgi-v2 .lm-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.45), rgba(234, 88, 12, 0.4), transparent);
  pointer-events: none;
}

.landing-page--sgi-v2 .lm-footer__sub-label {
  color: #fbbf24;
  letter-spacing: 0.1em;
}

.landing-page--sgi-v2 .lm-footer__nav-link:hover,
.landing-page--sgi-v2 .lm-footer__link:hover {
  color: #fde68a;
}

/* --- Canal de Denuncias v2 (acento cyan / índigo) --- */
.landing-page--complaint-v2 {
  --lm-solution-accent: #0ea5e9;
  --lm-solution-accent-2: #6366f1;
}

.landing-page--complaint-v2 > .top-banner.lm-ch-hero-band {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: linear-gradient(165deg, #0b1220 0%, #0c1929 40%, #0f172a 100%);
}

.landing-page--complaint-v2 > .top-banner.lm-ch-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.72) 42%, rgba(15, 23, 42, 0.35) 100%),
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(14, 165, 233, 0.18), transparent 58%),
    radial-gradient(ellipse 45% 50% at 8% 75%, rgba(99, 102, 241, 0.12), transparent 52%);
  pointer-events: none;
}

.landing-page--complaint-v2 .lm-ch-hero__inner {
  position: relative;
  z-index: 1;
}

.landing-page--complaint-v2 .lm-content-intro--ch-hero,
.landing-page--complaint-v2 .lm-content-intro__embedded.lm-content-intro--ch-hero {
  padding: 0.35rem 0 2rem;
}

.landing-page--complaint-v2 .lm-content-intro--ch-hero .lm-kicker,
.landing-page--complaint-v2 .lm-content-intro__embedded.lm-content-intro--ch-hero .lm-kicker {
  color: rgba(125, 211, 252, 0.95);
  letter-spacing: 0.12em;
}

.landing-page--complaint-v2 .lm-content-intro--ch-hero .lm-section-title,
.landing-page--complaint-v2 .lm-content-intro__embedded.lm-content-intro--ch-hero .lm-section-title {
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  letter-spacing: -0.025em;
}

.landing-page--complaint-v2 .lm-content-intro--ch-hero .lm-section-lead,
.landing-page--complaint-v2 .lm-content-intro__embedded.lm-content-intro--ch-hero .lm-section-lead {
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.55;
  max-width: 40rem;
}

.landing-page--complaint-v2 .lm-trust-strip {
  position: relative;
  z-index: 4;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
}

.landing-page--complaint-v2 .lm-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  justify-items: center;
}

.landing-page--complaint-v2 .lm-trust-strip__list li {
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.92);
  white-space: normal;
  text-align: center;
}

.landing-page--complaint-v2 .lm-trust-strip__list i {
  color: #38bdf8;
}

@media (min-width: 768px) {
  .landing-page--complaint-v2 .lm-trust-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .landing-page--complaint-v2 .lm-trust-strip__list li {
    position: relative;
    padding-inline: 0.65rem;
    white-space: nowrap;
  }

  .landing-page--complaint-v2 .lm-trust-strip__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.14);
  }
}

.landing-page--complaint-v2 .lm-ch-block--what {
  padding-top: 2.25rem;
}

.landing-page--complaint-v2 .lm-icon-grid--ch .lm-icon-cell {
  border-color: rgba(56, 189, 248, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--complaint-v2 .lm-icon-grid--ch .lm-icon-cell:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 12px 32px -16px rgba(99, 102, 241, 0.22);
}

.landing-page--complaint-v2 .lm-ch-block--what .lm-video-shell {
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: 0 20px 48px -28px rgba(99, 102, 241, 0.28);
}

.landing-page--complaint-v2 .lm-ch-block--diff {
  background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 100%);
  border-top: 1px solid #bae6fd;
  border-bottom: 1px solid #e2e8f0;
}

.landing-page--complaint-v2 .lm-ch-block--diff .lm-sol-diff-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(56, 189, 248, 0.35);
  background: #fff;
}

.landing-page--complaint-v2 .lm-ch-block--diff .lm-sol-diff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #0ea5e9);
  opacity: 0.9;
}

.landing-page--complaint-v2 .lm-ch-block--diff .lm-sol-diff-card i {
  color: #0284c7;
}

.landing-page--complaint-v2 .lm-ch-block--why {
  background: linear-gradient(165deg, #0b1220 0%, #0c1929 50%, #0f172a 100%);
}

.landing-page--complaint-v2 .lm-ch-block--why .lm-triple-panel {
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.45);
}

.landing-page--complaint-v2 .lm-ch-block--faq {
  background: #fff;
  border-top: 1px solid #e2e8f0;
}

.landing-page--complaint-v2 .lm-ch-block--faq .lm-faq__item {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #f8fafc;
  padding: 1rem 1.05rem;
}

.landing-page--complaint-v2 .lm-ch-block--faq .lm-faq__item h5 {
  color: #0f172a;
}

.landing-page--complaint-v2 .lm-ch-block--faq .lm-faq__item a {
  color: #0284c7;
}

.landing-page--complaint-v2 .lm-footer {
  background: linear-gradient(165deg, #0b1220 0%, #111827 45%, #020617 100%);
  border-top: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow: 0 -20px 48px -32px rgba(99, 102, 241, 0.15);
  --lm-footer-link-hover: #67e8f9;
}

.landing-page--complaint-v2 .lm-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.45), rgba(14, 165, 233, 0.45), transparent);
  pointer-events: none;
}

.landing-page--complaint-v2 .lm-footer__sub-label {
  color: #818cf8;
  letter-spacing: 0.1em;
}

.landing-page--complaint-v2 .lm-footer__nav-link:hover,
.landing-page--complaint-v2 .lm-footer__link:hover {
  color: #a5b4fc;
}

/* --- MPD v2 (acento violeta / índigo) --- */
.landing-page--compliance-v2 {
  --lm-solution-accent: #6366f1;
  --lm-solution-accent-2: #464de4;
}

.landing-page--compliance-v2 > .top-banner.lm-mpd-hero-band {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: linear-gradient(165deg, #0b1220 0%, #120f1f 40%, #0f172a 100%);
}

.landing-page--compliance-v2 > .top-banner.lm-mpd-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.72) 42%, rgba(15, 23, 42, 0.35) 100%),
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(99, 102, 241, 0.2), transparent 58%),
    radial-gradient(ellipse 45% 50% at 8% 75%, rgba(70, 77, 228, 0.14), transparent 52%);
  pointer-events: none;
}

.landing-page--compliance-v2 .lm-mpd-hero__inner {
  position: relative;
  z-index: 1;
}

.landing-page--compliance-v2 .lm-content-intro--mpd-hero,
.landing-page--compliance-v2 .lm-content-intro__embedded.lm-content-intro--mpd-hero {
  padding: 0.35rem 0 2rem;
}

.landing-page--compliance-v2 .lm-content-intro--mpd-hero .lm-kicker,
.landing-page--compliance-v2 .lm-content-intro__embedded.lm-content-intro--mpd-hero .lm-kicker {
  color: rgba(196, 181, 253, 0.95);
  letter-spacing: 0.12em;
}

.landing-page--compliance-v2 .lm-content-intro--mpd-hero .lm-section-title,
.landing-page--compliance-v2 .lm-content-intro__embedded.lm-content-intro--mpd-hero .lm-section-title {
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  letter-spacing: -0.025em;
}

.landing-page--compliance-v2 .lm-content-intro--mpd-hero .lm-section-lead,
.landing-page--compliance-v2 .lm-content-intro__embedded.lm-content-intro--mpd-hero .lm-section-lead {
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.55;
  max-width: 40rem;
}

.landing-page--compliance-v2 .lm-trust-strip {
  position: relative;
  z-index: 4;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
}

.landing-page--compliance-v2 .lm-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  justify-items: center;
}

.landing-page--compliance-v2 .lm-trust-strip__list li {
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.92);
  white-space: normal;
  text-align: center;
}

.landing-page--compliance-v2 .lm-trust-strip__list i {
  color: #a78bfa;
}

@media (min-width: 768px) {
  .landing-page--compliance-v2 .lm-trust-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .landing-page--compliance-v2 .lm-trust-strip__list li {
    position: relative;
    padding-inline: 0.65rem;
    white-space: nowrap;
  }

  .landing-page--compliance-v2 .lm-trust-strip__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.14);
  }
}

.landing-page--compliance-v2 .lm-mpd-block--what {
  padding-top: 2.25rem;
}

.landing-page--compliance-v2 .lm-mpd-block--what .lm-link-arrow {
  color: #464de4;
}

.landing-page--compliance-v2 .lm-icon-grid--mpd .lm-icon-cell {
  border-color: rgba(167, 139, 250, 0.32);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--compliance-v2 .lm-icon-grid--mpd .lm-icon-cell:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.48);
  box-shadow: 0 12px 32px -16px rgba(70, 77, 228, 0.24);
}

.landing-page--compliance-v2 .lm-mpd-block--what .lm-video-shell {
  border-color: rgba(167, 139, 250, 0.32);
  box-shadow: 0 20px 48px -28px rgba(70, 77, 228, 0.28);
}

.landing-page--compliance-v2 .lm-mpd-block--diff {
  background: linear-gradient(180deg, #f5f3ff 0%, #f8fafc 100%);
  border-top: 1px solid #ddd6fe;
  border-bottom: 1px solid #e2e8f0;
}

.landing-page--compliance-v2 .lm-mpd-block--diff .lm-sol-diff-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(167, 139, 250, 0.38);
  background: #fff;
}

.landing-page--compliance-v2 .lm-mpd-block--diff .lm-sol-diff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #464de4);
  opacity: 0.9;
}

.landing-page--compliance-v2 .lm-mpd-block--diff .lm-sol-diff-card i {
  color: #464de4;
}

.landing-page--compliance-v2 .lm-mpd-block--why {
  background: linear-gradient(165deg, #0b1220 0%, #120f1f 50%, #0f172a 100%);
}

.landing-page--compliance-v2 .lm-mpd-block--why .lm-triple-panel {
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.45);
}

.landing-page--compliance-v2 .lm-mpd-block--faq {
  background: #fff;
  border-top: 1px solid #e2e8f0;
}

.landing-page--compliance-v2 .lm-mpd-block--faq .lm-faq__item {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #f8fafc;
  padding: 1rem 1.05rem;
}

.landing-page--compliance-v2 .lm-mpd-block--faq .lm-faq__item h5 {
  color: #0f172a;
}

.landing-page--compliance-v2 .lm-mpd-block--faq .lm-faq__item a {
  color: #464de4;
}

.landing-page--compliance-v2 .lm-footer {
  background: linear-gradient(165deg, #0b1220 0%, #111827 45%, #020617 100%);
  border-top: 1px solid rgba(167, 139, 250, 0.28);
  box-shadow: 0 -20px 48px -32px rgba(70, 77, 228, 0.15);
  --lm-footer-link-hover: #c4b5fd;
}

.landing-page--compliance-v2 .lm-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.45), rgba(70, 77, 228, 0.45), transparent);
  pointer-events: none;
}

.landing-page--compliance-v2 .lm-footer__sub-label {
  color: #a78bfa;
  letter-spacing: 0.1em;
}

.landing-page--compliance-v2 .lm-footer__nav-link:hover,
.landing-page--compliance-v2 .lm-footer__link:hover {
  color: #ddd6fe;
}

/* --- MPI v2 (acento verde esmeralda) --- */
.landing-page--mpi-v2 {
  --lm-solution-accent: #10b981;
  --lm-solution-accent-2: #059669;
}

.landing-page--mpi-v2 > .top-banner.lm-mpi-hero-band {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: linear-gradient(165deg, #0b1220 0%, #0c1917 40%, #0f172a 100%);
}

.landing-page--mpi-v2 > .top-banner.lm-mpi-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.72) 42%, rgba(15, 23, 42, 0.35) 100%),
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(16, 185, 129, 0.18), transparent 58%),
    radial-gradient(ellipse 45% 50% at 8% 75%, rgba(52, 211, 153, 0.12), transparent 52%);
  pointer-events: none;
}

.landing-page--mpi-v2 .lm-mpi-hero__inner {
  position: relative;
  z-index: 1;
}

.landing-page--mpi-v2 .lm-content-intro--mpi-hero,
.landing-page--mpi-v2 .lm-content-intro__embedded.lm-content-intro--mpi-hero {
  padding: 0.35rem 0 2rem;
}

.landing-page--mpi-v2 .lm-content-intro--mpi-hero .lm-kicker,
.landing-page--mpi-v2 .lm-content-intro__embedded.lm-content-intro--mpi-hero .lm-kicker {
  color: rgba(110, 231, 183, 0.95);
  letter-spacing: 0.12em;
}

.landing-page--mpi-v2 .lm-content-intro--mpi-hero .lm-section-title,
.landing-page--mpi-v2 .lm-content-intro__embedded.lm-content-intro--mpi-hero .lm-section-title {
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  letter-spacing: -0.025em;
}

.landing-page--mpi-v2 .lm-content-intro--mpi-hero .lm-section-lead,
.landing-page--mpi-v2 .lm-content-intro__embedded.lm-content-intro--mpi-hero .lm-section-lead {
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.55;
  max-width: 40rem;
}

.landing-page--mpi-v2 .lm-trust-strip {
  position: relative;
  z-index: 4;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
}

.landing-page--mpi-v2 .lm-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  justify-items: center;
}

.landing-page--mpi-v2 .lm-trust-strip__list li {
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.92);
  white-space: normal;
  text-align: center;
}

.landing-page--mpi-v2 .lm-trust-strip__list i {
  color: #34d399;
}

@media (min-width: 768px) {
  .landing-page--mpi-v2 .lm-trust-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .landing-page--mpi-v2 .lm-trust-strip__list li {
    position: relative;
    padding-inline: 0.65rem;
    white-space: nowrap;
  }

  .landing-page--mpi-v2 .lm-trust-strip__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.14);
  }
}

.landing-page--mpi-v2 .lm-mpi-block--what {
  padding-top: 2.25rem;
}

.landing-page--mpi-v2 .lm-mpi-block--what .lm-link-arrow {
  color: #059669;
}

.landing-page--mpi-v2 .lm-icon-grid--mpi .lm-icon-cell {
  border-color: rgba(52, 211, 153, 0.32);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--mpi-v2 .lm-icon-grid--mpi .lm-icon-cell:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.48);
  box-shadow: 0 12px 32px -16px rgba(5, 150, 105, 0.24);
}

.landing-page--mpi-v2 .lm-mpi-block--what .lm-video-shell {
  border-color: rgba(52, 211, 153, 0.32);
  box-shadow: 0 20px 48px -28px rgba(5, 150, 105, 0.28);
}

.landing-page--mpi-v2 .lm-mpi-block--diff {
  background: linear-gradient(180deg, #ecfdf5 0%, #f8fafc 100%);
  border-top: 1px solid #a7f3d0;
  border-bottom: 1px solid #e2e8f0;
}

.landing-page--mpi-v2 .lm-mpi-block--diff .lm-sol-diff-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(52, 211, 153, 0.38);
  background: #fff;
}

.landing-page--mpi-v2 .lm-mpi-block--diff .lm-sol-diff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #059669, #10b981);
  opacity: 0.9;
}

.landing-page--mpi-v2 .lm-mpi-block--diff .lm-sol-diff-card i {
  color: #059669;
}

.landing-page--mpi-v2 .lm-mpi-block--why {
  background: linear-gradient(165deg, #0b1220 0%, #0c1917 50%, #0f172a 100%);
}

.landing-page--mpi-v2 .lm-mpi-block--why .lm-triple-panel {
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.45);
}

.landing-page--mpi-v2 .lm-mpi-block--faq {
  background: #fff;
  border-top: 1px solid #e2e8f0;
}

.landing-page--mpi-v2 .lm-mpi-block--faq .lm-faq__item {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #f8fafc;
  padding: 1rem 1.05rem;
}

.landing-page--mpi-v2 .lm-mpi-block--faq .lm-faq__item h5 {
  color: #0f172a;
}

.landing-page--mpi-v2 .lm-mpi-block--faq .lm-faq__item a {
  color: #059669;
}

.landing-page--mpi-v2 .lm-footer {
  background: linear-gradient(165deg, #0b1220 0%, #111827 45%, #020617 100%);
  border-top: 1px solid rgba(52, 211, 153, 0.28);
  box-shadow: 0 -20px 48px -32px rgba(5, 150, 105, 0.15);
  --lm-footer-link-hover: #6ee7b7;
}

.landing-page--mpi-v2 .lm-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.45), rgba(52, 211, 153, 0.45), transparent);
  pointer-events: none;
}

.landing-page--mpi-v2 .lm-footer__sub-label {
  color: #34d399;
  letter-spacing: 0.1em;
}

.landing-page--mpi-v2 .lm-footer__nav-link:hover,
.landing-page--mpi-v2 .lm-footer__link:hover {
  color: #a7f3d0;
}

/* --- Plataforma v2 (acento índigo / cyan — marca SIM4) --- */
.landing-page--plataforma-v2 {
  --lm-solution-accent: #6366f1;
  --lm-solution-accent-2: #0ea5e9;
}

.landing-page--plataforma-v2 > .top-banner.lm-plat-hero-band {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: linear-gradient(165deg, #0b1220 0%, #0c1929 40%, #0f172a 100%);
}

.landing-page--plataforma-v2 > .top-banner.lm-plat-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.72) 42%, rgba(15, 23, 42, 0.35) 100%),
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(99, 102, 241, 0.18), transparent 58%),
    radial-gradient(ellipse 45% 50% at 8% 75%, rgba(14, 165, 233, 0.12), transparent 52%);
  pointer-events: none;
}

.landing-page--plataforma-v2 .lm-plat-hero__inner {
  position: relative;
  z-index: 1;
}

.landing-page--plataforma-v2 .lm-plat-hero.lm-features-hero {
  position: relative;
  overflow: hidden;
  padding: 0.35rem 0 2rem !important;
}

.landing-page--plataforma-v2 .lm-plat-hero .landing-hero-kicker {
  color: rgba(125, 211, 252, 0.95);
  letter-spacing: 0.12em;
}

.landing-page--plataforma-v2 .lm-plat-hero .landing-hero-display {
  color: #fff;
  letter-spacing: -0.025em;
}

.landing-page--plataforma-v2 .lm-plat-hero .lm-badge {
  border-color: rgba(56, 189, 248, 0.28);
  background: rgba(15, 23, 42, 0.55);
  color: rgba(226, 232, 240, 0.92);
}

.landing-page--plataforma-v2 .lm-plat-hero .lm-features-showcase__mac {
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: 0 28px 64px -24px rgba(99, 102, 241, 0.35);
}

.landing-page--plataforma-v2 .lm-trust-strip {
  position: relative;
  z-index: 4;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
}

.landing-page--plataforma-v2 .lm-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  justify-items: center;
}

.landing-page--plataforma-v2 .lm-trust-strip__list li {
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.92);
  white-space: normal;
  text-align: center;
}

.landing-page--plataforma-v2 .lm-trust-strip__list i {
  color: #38bdf8;
}

@media (min-width: 768px) {
  .landing-page--plataforma-v2 .lm-trust-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .landing-page--plataforma-v2 .lm-trust-strip__list li {
    position: relative;
    padding-inline: 0.65rem;
    white-space: nowrap;
  }

  .landing-page--plataforma-v2 .lm-trust-strip__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.14);
  }
}

.landing-page--plataforma-v2 .lm-plat-block--stats {
  padding: 1.25rem 0 !important;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.landing-page--plataforma-v2 .lm-plat-block--stats .lm-stat {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: #fff;
  padding: 0.75rem 0.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--plataforma-v2 .lm-plat-block--stats .lm-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 12px 32px -16px rgba(99, 102, 241, 0.18);
}

.landing-page--plataforma-v2 .lm-plat-block--stats .lm-stat__num .mdi {
  color: #6366f1;
}

.landing-page--plataforma-v2 .lm-plat-block--core .lm-pillar {
  border-color: rgba(148, 163, 184, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--plataforma-v2 .lm-plat-block--core .lm-pillar:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.32);
  box-shadow: 0 12px 32px -16px rgba(99, 102, 241, 0.15);
}

.landing-page--plataforma-v2 .lm-plat-block--core .lm-pillar__icon {
  color: #6366f1;
}

.landing-page--plataforma-v2 .lm-plat-block--core .lm-link-arrow {
  color: #0284c7;
}

.landing-page--plataforma-v2 .lm-plat-block--people .lm-depth-chip--card:hover {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 12px 32px -16px rgba(99, 102, 241, 0.15);
}

.landing-page--plataforma-v2 .lm-plat-block--measure {
  background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 100%);
  border-top: 1px solid #bae6fd;
  border-bottom: 1px solid #e2e8f0;
}

.landing-page--plataforma-v2 .lm-plat-block--measure .lm-link-arrow {
  color: #0284c7;
}

.landing-page--plataforma-v2 .lm-plat-block--measure .lm-features-measure__shots .lm-shot-carousel {
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: 0 20px 48px -28px rgba(99, 102, 241, 0.22);
}

.landing-page--plataforma-v2 .lm-plat-block--solutions .lm-depth-chip--card {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--plataforma-v2 .lm-plat-block--solutions .lm-depth-chip--card:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 12px 32px -16px rgba(99, 102, 241, 0.15);
}

.landing-page--plataforma-v2 .lm-plat-block--deploy {
  background: linear-gradient(180deg, #f5f3ff 0%, #f8fafc 100%);
  border-top: 1px solid #ddd6fe;
}

.landing-page--plataforma-v2 .lm-plat-block--deploy .lm-pillar__icon {
  color: #6366f1;
}

.landing-page--plataforma-v2 .lm-plat-block--deploy .lm-link-arrow {
  color: #464de4;
}

.landing-page--plataforma-v2 .lm-footer {
  background: linear-gradient(165deg, #0b1220 0%, #111827 45%, #020617 100%);
  border-top: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow: 0 -20px 48px -32px rgba(99, 102, 241, 0.15);
  --lm-footer-link-hover: #67e8f9;
}

.landing-page--plataforma-v2 .lm-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.45), rgba(14, 165, 233, 0.45), transparent);
  pointer-events: none;
}

.landing-page--plataforma-v2 .lm-footer__sub-label {
  color: #818cf8;
  letter-spacing: 0.1em;
}

.landing-page--plataforma-v2 .lm-footer__nav-link:hover,
.landing-page--plataforma-v2 .lm-footer__link:hover {
  color: #a5b4fc;
}

/* --- Integraciones v2 (acento índigo / cyan) --- */
.landing-page--integrations-v2 {
  --lm-solution-accent: #6366f1;
  --lm-solution-accent-2: #0ea5e9;
}

.landing-page--integrations-v2 > .top-banner.lm-int-page-hero-band {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: linear-gradient(165deg, #0b1220 0%, #0c1929 40%, #0f172a 100%);
}

.landing-page--integrations-v2 > .top-banner.lm-int-page-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.72) 42%, rgba(15, 23, 42, 0.35) 100%),
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(20, 184, 166, 0.16), transparent 58%),
    radial-gradient(ellipse 45% 50% at 8% 75%, rgba(99, 102, 241, 0.14), transparent 52%);
  pointer-events: none;
}

.landing-page--integrations-v2 .lm-int-page-hero__inner {
  position: relative;
  z-index: 1;
}

.landing-page--integrations-v2 .lm-content-intro--int-hero,
.landing-page--integrations-v2 .lm-content-intro__embedded.lm-content-intro--int-hero {
  padding: 0.35rem 0 2rem;
}

.landing-page--integrations-v2 .lm-content-intro--int-hero .lm-kicker,
.landing-page--integrations-v2 .lm-content-intro__embedded.lm-content-intro--int-hero .lm-kicker {
  color: rgba(125, 211, 252, 0.95);
  letter-spacing: 0.12em;
}

.landing-page--integrations-v2 .lm-content-intro--int-hero .lm-section-title,
.landing-page--integrations-v2 .lm-content-intro__embedded.lm-content-intro--int-hero .lm-section-title {
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  letter-spacing: -0.025em;
}

.landing-page--integrations-v2 .lm-content-intro--int-hero .lm-section-lead,
.landing-page--integrations-v2 .lm-content-intro__embedded.lm-content-intro--int-hero .lm-section-lead {
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.55;
  max-width: 40rem;
}

.landing-page--integrations-v2 .lm-trust-strip {
  position: relative;
  z-index: 4;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
}

.landing-page--integrations-v2 .lm-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  justify-items: center;
}

.landing-page--integrations-v2 .lm-trust-strip__list li {
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.92);
  white-space: normal;
  text-align: center;
}

.landing-page--integrations-v2 .lm-trust-strip__list i {
  color: #38bdf8;
}

@media (min-width: 768px) {
  .landing-page--integrations-v2 .lm-trust-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .landing-page--integrations-v2 .lm-trust-strip__list li {
    position: relative;
    padding-inline: 0.65rem;
    white-space: nowrap;
  }

  .landing-page--integrations-v2 .lm-trust-strip__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.14);
  }
}

.landing-page--integrations-v2 .lm-int-page-block--api {
  padding-top: 2.25rem;
}

.landing-page--integrations-v2 .lm-int-page-block--api .lm-api-tier {
  border-color: rgba(148, 163, 184, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--integrations-v2 .lm-int-page-block--api .lm-api-tier:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 12px 32px -16px rgba(99, 102, 241, 0.18);
}

.landing-page--integrations-v2 .lm-int-page-block--api .lm-api-tier--featured {
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: 0 12px 32px -16px rgba(20, 184, 166, 0.2);
}

.landing-page--integrations-v2 .lm-int-page-block--api .lm-api-tier--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #14b8a6);
  border-radius: 0.75rem 0.75rem 0 0;
}

.landing-page--integrations-v2 .lm-int-page-block--api .lm-api-tier--featured {
  position: relative;
  overflow: hidden;
}

.landing-page--integrations-v2 .lm-int-page-block--api .lm-link-arrow {
  color: #0284c7;
}

.landing-page--integrations-v2 .lm-int-page-block--flow {
  background: linear-gradient(165deg, #0b1220 0%, #0c1929 50%, #0f172a 100%);
}

.landing-page--integrations-v2 .lm-footer {
  background: linear-gradient(165deg, #0b1220 0%, #111827 45%, #020617 100%);
  border-top: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow: 0 -20px 48px -32px rgba(99, 102, 241, 0.15);
  --lm-footer-link-hover: #67e8f9;
}

.landing-page--integrations-v2 .lm-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.45), rgba(14, 165, 233, 0.45), transparent);
  pointer-events: none;
}

.landing-page--integrations-v2 .lm-footer__sub-label {
  color: #818cf8;
  letter-spacing: 0.1em;
}

.landing-page--integrations-v2 .lm-footer__nav-link:hover,
.landing-page--integrations-v2 .lm-footer__link:hover {
  color: #a5b4fc;
}

/* --- Módulos v2 (acento índigo / violeta) --- */
.landing-page--modules-v2 {
  --lm-solution-accent: #6366f1;
  --lm-solution-accent-2: #4338ca;
}

.landing-page--modules-v2 > .top-banner.lm-mod-hero-band {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: linear-gradient(165deg, #0b1220 0%, #120f1f 40%, #0f172a 100%);
}

.landing-page--modules-v2 > .top-banner.lm-mod-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.72) 42%, rgba(15, 23, 42, 0.35) 100%),
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(99, 102, 241, 0.18), transparent 58%),
    radial-gradient(ellipse 45% 50% at 8% 75%, rgba(67, 56, 202, 0.12), transparent 52%);
  pointer-events: none;
}

.landing-page--modules-v2 .lm-mod-hero__inner {
  position: relative;
  z-index: 1;
}

.landing-page--modules-v2 .lm-mod-hero.lm-modules-hero {
  padding: 0.35rem 0 2rem;
}

.landing-page--modules-v2 .lm-mod-hero .landing-hero-kicker {
  color: rgba(196, 181, 253, 0.95);
  letter-spacing: 0.12em;
}

.landing-page--modules-v2 .lm-mod-hero .lm-section-title {
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  letter-spacing: -0.025em;
}

.landing-page--modules-v2 .lm-mod-hero .lm-section-lead {
  color: rgba(226, 232, 240, 0.86);
  max-width: none;
}

.landing-page--modules-v2 .lm-mod-hero .lm-modules-hero__subtitle {
  color: rgba(226, 232, 240, 0.95);
}

.landing-page--modules-v2 .lm-mod-hero .lm-modules-hero__block + .lm-modules-hero__block {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.landing-page--modules-v2 .lm-mod-hero .lm-modules-hero__checks li {
  color: rgba(226, 232, 240, 0.88);
}

.landing-page--modules-v2 .lm-mod-hero .lm-modules-hero__checks li::before {
  color: #a78bfa;
}

.landing-page--modules-v2 .lm-trust-strip {
  position: relative;
  z-index: 4;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
}

.landing-page--modules-v2 .lm-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  justify-items: center;
}

.landing-page--modules-v2 .lm-trust-strip__list li {
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.92);
  white-space: normal;
  text-align: center;
}

.landing-page--modules-v2 .lm-trust-strip__list i {
  color: #a78bfa;
}

@media (min-width: 768px) {
  .landing-page--modules-v2 .lm-trust-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .landing-page--modules-v2 .lm-trust-strip__list li {
    position: relative;
    padding-inline: 0.65rem;
    white-space: nowrap;
  }

  .landing-page--modules-v2 .lm-trust-strip__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.14);
  }
}

.landing-page--modules-v2 .lm-mod-block--families {
  background: linear-gradient(180deg, #f5f3ff 0%, #f8fafc 100%);
  border-top: 1px solid #ddd6fe;
  border-bottom: 1px solid #e2e8f0;
}

.landing-page--modules-v2 .lm-mod-block--families .lm-video-shell {
  border-color: rgba(167, 139, 250, 0.32);
  box-shadow: 0 20px 48px -28px rgba(99, 102, 241, 0.22);
}

.landing-page--modules-v2 .lm-mod-block--trail {
  background: linear-gradient(165deg, #0b1220 0%, #120f1f 50%, #0f172a 100%);
}

.landing-page--modules-v2 .lm-mod-block--trail .lm-portal-trail a {
  color: rgba(226, 232, 240, 0.92);
}

.landing-page--modules-v2 .lm-mod-block--trail .lm-portal-trail a:hover {
  color: #c4b5fd;
}

.landing-page--modules-v2 .lm-footer {
  background: linear-gradient(165deg, #0b1220 0%, #111827 45%, #020617 100%);
  border-top: 1px solid rgba(167, 139, 250, 0.28);
  box-shadow: 0 -20px 48px -32px rgba(99, 102, 241, 0.15);
  --lm-footer-link-hover: #c4b5fd;
}

.landing-page--modules-v2 .lm-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.45), rgba(167, 139, 250, 0.45), transparent);
  pointer-events: none;
}

.landing-page--modules-v2 .lm-footer__sub-label {
  color: #a78bfa;
  letter-spacing: 0.1em;
}

.landing-page--modules-v2 .lm-footer__nav-link:hover,
.landing-page--modules-v2 .lm-footer__link:hover {
  color: #ddd6fe;
}

/* --- App móvil v2 (acento violeta / índigo) --- */
.landing-page--mobile-v2 {
  --lm-solution-accent: #4338ca;
  --lm-solution-accent-2: #6366f1;
}

.landing-page--mobile-v2 > .top-banner.lm-mob-hero-band {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: linear-gradient(165deg, #0f172a 0%, #1e1b4b 45%, #312e81 100%);
}

.landing-page--mobile-v2 > .top-banner.lm-mob-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.72) 42%, rgba(15, 23, 42, 0.35) 100%),
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(99, 102, 241, 0.2), transparent 58%),
    radial-gradient(ellipse 45% 50% at 8% 75%, rgba(67, 56, 202, 0.14), transparent 52%);
  pointer-events: none;
}

.landing-page--mobile-v2 .lm-mob-hero__inner {
  position: relative;
  z-index: 1;
}

.landing-page--mobile-v2 .lm-content-intro--mob-hero,
.landing-page--mobile-v2 .lm-content-intro__embedded.lm-content-intro--mob-hero {
  padding: 0.35rem 0 1rem;
}

.landing-page--mobile-v2 .lm-content-intro--mob-hero .lm-kicker,
.landing-page--mobile-v2 .lm-content-intro__embedded.lm-content-intro--mob-hero .lm-kicker {
  color: rgba(196, 181, 253, 0.95);
  letter-spacing: 0.12em;
}

.landing-page--mobile-v2 .lm-content-intro--mob-hero .lm-section-title,
.landing-page--mobile-v2 .lm-content-intro__embedded.lm-content-intro--mob-hero .lm-section-title {
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  letter-spacing: -0.025em;
}

.landing-page--mobile-v2 .lm-content-intro--mob-hero .lm-section-lead,
.landing-page--mobile-v2 .lm-content-intro__embedded.lm-content-intro--mob-hero .lm-section-lead {
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.55;
  max-width: 40rem;
}

.landing-page--mobile-v2 .lm-mob-hero-apps {
  padding-bottom: 1.5rem !important;
}

.landing-page--mobile-v2 .lm-mob-hero-apps .lm-app-card {
  border-color: rgba(167, 139, 250, 0.35);
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.landing-page--mobile-v2 .lm-mob-hero-apps .lm-app-card:hover {
  border-color: rgba(196, 181, 253, 0.55);
  box-shadow: 0 12px 32px -16px rgba(99, 102, 241, 0.28);
}

.landing-page--mobile-v2 .lm-trust-strip {
  position: relative;
  z-index: 4;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
}

.landing-page--mobile-v2 .lm-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  justify-items: center;
}

.landing-page--mobile-v2 .lm-trust-strip__list li {
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.92);
  white-space: normal;
  text-align: center;
}

.landing-page--mobile-v2 .lm-trust-strip__list i {
  color: #a78bfa;
}

@media (min-width: 768px) {
  .landing-page--mobile-v2 .lm-trust-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .landing-page--mobile-v2 .lm-trust-strip__list li {
    position: relative;
    padding-inline: 0.65rem;
    white-space: nowrap;
  }

  .landing-page--mobile-v2 .lm-trust-strip__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.14);
  }
}

.landing-page--mobile-v2 .lm-mob-block--stats {
  padding: 1.25rem 0 !important;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.landing-page--mobile-v2 .lm-mob-block--stats .lm-stat {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: #fff;
  padding: 0.75rem 0.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--mobile-v2 .lm-mob-block--stats .lm-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 12px 32px -16px rgba(99, 102, 241, 0.18);
}

.landing-page--mobile-v2 .lm-mob-block--stats .lm-stat__num .mdi {
  color: #6366f1;
}

.landing-page--mobile-v2 .lm-mob-block--bento {
  background: linear-gradient(165deg, #0b1220 0%, #120f1f 50%, #0f172a 100%);
}

.landing-page--mobile-v2 .lm-mob-block--bento .lm-mobile-bento__cell {
  border-color: rgba(167, 139, 250, 0.28);
  background: rgba(15, 23, 42, 0.55);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--mobile-v2 .lm-mob-block--bento .lm-mobile-bento__cell:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: 0 12px 32px -16px rgba(99, 102, 241, 0.22);
}

.landing-page--mobile-v2 .lm-mob-block--bento .lm-mobile-bento__cell i {
  color: #a78bfa;
}

.landing-page--mobile-v2 .lm-mob-block--sync {
  background: linear-gradient(180deg, #f5f3ff 0%, #f8fafc 100%);
  border-top: 1px solid #ddd6fe;
}

.landing-page--mobile-v2 .lm-footer {
  background: linear-gradient(165deg, #0b1220 0%, #111827 45%, #020617 100%);
  border-top: 1px solid rgba(167, 139, 250, 0.28);
  box-shadow: 0 -20px 48px -32px rgba(99, 102, 241, 0.15);
  --lm-footer-link-hover: #c4b5fd;
}

.landing-page--mobile-v2 .lm-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.45), rgba(167, 139, 250, 0.45), transparent);
  pointer-events: none;
}

.landing-page--mobile-v2 .lm-footer__sub-label {
  color: #a78bfa;
  letter-spacing: 0.1em;
}

.landing-page--mobile-v2 .lm-footer__nav-link:hover,
.landing-page--mobile-v2 .lm-footer__link:hover {
  color: #ddd6fe;
}

/* --- Precios y servicios v2 (acento índigo / cyan + plan destacado) --- */
.landing-page--saas-v2 {
  --lm-solution-accent: #6366f1;
  --lm-solution-accent-2: #0ea5e9;
}

.landing-page--saas-v2 > .top-banner.lm-saas-hero-band {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: linear-gradient(165deg, #0b1220 0%, #0c1929 40%, #0f172a 100%);
}

.landing-page--saas-v2 > .top-banner.lm-saas-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.72) 42%, rgba(15, 23, 42, 0.35) 100%),
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(99, 102, 241, 0.18), transparent 58%),
    radial-gradient(ellipse 45% 50% at 8% 75%, rgba(14, 165, 233, 0.12), transparent 52%);
  pointer-events: none;
}

.landing-page--saas-v2 .lm-saas-hero__inner {
  position: relative;
  z-index: 1;
}

.landing-page--saas-v2 .lm-content-intro--saas-hero,
.landing-page--saas-v2 .lm-content-intro__embedded.lm-content-intro--saas-hero {
  padding: 0.35rem 0 2rem;
}

.landing-page--saas-v2 .lm-content-intro--saas-hero .lm-kicker,
.landing-page--saas-v2 .lm-content-intro__embedded.lm-content-intro--saas-hero .lm-kicker {
  color: rgba(125, 211, 252, 0.95);
  letter-spacing: 0.12em;
}

.landing-page--saas-v2 .lm-content-intro--saas-hero .lm-section-title,
.landing-page--saas-v2 .lm-content-intro__embedded.lm-content-intro--saas-hero .lm-section-title {
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  letter-spacing: -0.025em;
}

.landing-page--saas-v2 .lm-content-intro--saas-hero .lm-section-lead,
.landing-page--saas-v2 .lm-content-intro__embedded.lm-content-intro--saas-hero .lm-section-lead {
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.55;
  max-width: 42rem;
}

.landing-page--saas-v2 .lm-trust-strip {
  position: relative;
  z-index: 4;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
}

.landing-page--saas-v2 .lm-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  justify-items: center;
}

.landing-page--saas-v2 .lm-trust-strip__list li {
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.92);
  white-space: normal;
  text-align: center;
}

.landing-page--saas-v2 .lm-trust-strip__list i {
  color: #38bdf8;
}

@media (min-width: 768px) {
  .landing-page--saas-v2 .lm-trust-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .landing-page--saas-v2 .lm-trust-strip__list li {
    position: relative;
    padding-inline: 0.65rem;
    white-space: nowrap;
  }

  .landing-page--saas-v2 .lm-trust-strip__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.14);
  }
}

.landing-page--saas-v2 .lm-saas-block--plans {
  padding-top: 2.25rem !important;
}

.landing-page--saas-v2 .lm-saas-block--plans .lm-saas-card {
  border-color: rgba(148, 163, 184, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--saas-v2 .lm-saas-block--plans .lm-saas-card:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 12px 32px -16px rgba(99, 102, 241, 0.18);
}

.landing-page--saas-v2 .lm-saas-block--plans .lm-saas-card--featured {
  position: relative;
  overflow: hidden;
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 16px 40px -20px rgba(99, 102, 241, 0.25);
}

.landing-page--saas-v2 .lm-saas-block--plans .lm-saas-card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #0ea5e9);
}

.landing-page--saas-v2 .lm-saas-block--plans .lm-saas-card--featured .fs-4 {
  color: #4338ca;
}

.landing-page--saas-v2 .lm-saas-block--includes {
  background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 100%);
  border-top: 1px solid #bae6fd;
  border-bottom: 1px solid #e2e8f0;
}

.landing-page--saas-v2 .lm-saas-block--includes .lm-saas-card {
  border-color: rgba(148, 163, 184, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--saas-v2 .lm-saas-block--includes .lm-saas-card:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.32);
  box-shadow: 0 12px 32px -16px rgba(99, 102, 241, 0.15);
}

.landing-page--saas-v2 .lm-saas-block--includes .lm-saas-card__icon {
  color: #6366f1;
}

.landing-page--saas-v2 .lm-saas-block--services .lm-portal-trail a {
  color: #334155;
}

.landing-page--saas-v2 .lm-saas-block--services .lm-portal-trail a:hover {
  color: #4338ca;
}

.landing-page--saas-v2 .lm-saas-block--support {
  background: linear-gradient(180deg, #f5f3ff 0%, #f8fafc 100%);
  border-top: 1px solid #ddd6fe;
}

.landing-page--saas-v2 .lm-saas-block--support .lm-link-arrow {
  color: #464de4;
}

.landing-page--saas-v2 .lm-saas-block--billing {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-top: 1px solid #e2e8f0;
}

.landing-page--saas-v2 .lm-saas-block--billing .lm-saas-pricing-note {
  border-color: rgba(99, 102, 241, 0.28);
  background: linear-gradient(180deg, #f5f3ff 0%, #fff 100%);
}

.landing-page--saas-v2 .lm-saas-block--billing .btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
  border: none;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.landing-page--saas-v2 .lm-saas-block--billing .btn-primary:hover,
.landing-page--saas-v2 .lm-saas-block--billing .btn-primary:focus {
  background: linear-gradient(135deg, #5558e3 0%, #0284c7 100%);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.42);
}

.landing-page--saas-v2 .lm-footer {
  background: linear-gradient(165deg, #0b1220 0%, #111827 45%, #020617 100%);
  border-top: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow: 0 -20px 48px -32px rgba(99, 102, 241, 0.15);
  --lm-footer-link-hover: #67e8f9;
}

.landing-page--saas-v2 .lm-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.45), rgba(14, 165, 233, 0.45), transparent);
  pointer-events: none;
}

.landing-page--saas-v2 .lm-footer__sub-label {
  color: #818cf8;
  letter-spacing: 0.1em;
}

.landing-page--saas-v2 .lm-footer__nav-link:hover,
.landing-page--saas-v2 .lm-footer__link:hover {
  color: #a5b4fc;
}

/* --- Empresa / experience v2 (acento azul profundo / cyan) --- */
.landing-page--experience-v2 {
  --lm-solution-accent: #0284c7;
  --lm-solution-accent-2: #0ea5e9;
}

.landing-page--experience-v2 > .top-banner.lm-exp-hero-band {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: linear-gradient(165deg, #0c4a6e 0%, #0f172a 50%, #1e3a8a 100%);
}

.landing-page--experience-v2 > .top-banner.lm-exp-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.92) 0%, rgba(11, 18, 32, 0.68) 42%, rgba(15, 23, 42, 0.35) 100%),
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(14, 165, 233, 0.18), transparent 58%),
    radial-gradient(ellipse 45% 50% at 8% 75%, rgba(30, 58, 138, 0.16), transparent 52%);
  pointer-events: none;
}

.landing-page--experience-v2 .lm-exp-hero__inner {
  position: relative;
  z-index: 1;
}

.landing-page--experience-v2 .lm-content-intro--exp-hero,
.landing-page--experience-v2 .lm-content-intro__embedded.lm-content-intro--exp-hero {
  padding: 0.35rem 0 2rem;
}

.landing-page--experience-v2 .lm-content-intro--exp-hero .lm-kicker,
.landing-page--experience-v2 .lm-content-intro__embedded.lm-content-intro--exp-hero .lm-kicker {
  color: rgba(125, 211, 252, 0.95);
  letter-spacing: 0.12em;
}

.landing-page--experience-v2 .lm-content-intro--exp-hero .lm-section-title,
.landing-page--experience-v2 .lm-content-intro__embedded.lm-content-intro--exp-hero .lm-section-title {
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  letter-spacing: -0.025em;
}

.landing-page--experience-v2 .lm-content-intro--exp-hero .lm-section-lead,
.landing-page--experience-v2 .lm-content-intro__embedded.lm-content-intro--exp-hero .lm-section-lead {
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.55;
  max-width: 40rem;
}

.landing-page--experience-v2 .lm-trust-strip {
  position: relative;
  z-index: 4;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
}

.landing-page--experience-v2 .lm-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  justify-items: center;
}

.landing-page--experience-v2 .lm-trust-strip__list li {
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.92);
  white-space: normal;
  text-align: center;
}

.landing-page--experience-v2 .lm-trust-strip__list i {
  color: #38bdf8;
}

@media (min-width: 768px) {
  .landing-page--experience-v2 .lm-trust-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .landing-page--experience-v2 .lm-trust-strip__list li {
    position: relative;
    padding-inline: 0.65rem;
    white-space: nowrap;
  }

  .landing-page--experience-v2 .lm-trust-strip__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.14);
  }
}

.landing-page--experience-v2 .lm-exp-block--stats {
  padding: 1.25rem 0 !important;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.landing-page--experience-v2 .lm-exp-block--stats .lm-stat {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: #fff;
  padding: 0.75rem 0.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--experience-v2 .lm-exp-block--stats .lm-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 12px 32px -16px rgba(2, 132, 199, 0.18);
}

.landing-page--experience-v2 .lm-exp-block--stats .lm-stat--exp .lm-stat__num,
.landing-page--experience-v2 .lm-exp-block--stats .lm-stat__num .mdi {
  color: #0284c7;
}

.landing-page--experience-v2 .lm-exp-block--timeline .lm-video-shell {
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: 0 20px 48px -28px rgba(30, 58, 138, 0.28);
}

.landing-page--experience-v2 .lm-exp-block--timeline .lm-exp-timeline__year {
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
  border-color: rgba(56, 189, 248, 0.35);
}

.landing-page--experience-v2 .lm-exp-block--alliance {
  background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 100%);
  border-top: 1px solid #bae6fd;
  border-bottom: 1px solid #e2e8f0;
}

.landing-page--experience-v2 .lm-exp-block--alliance .lm-alliance-card {
  border-color: rgba(56, 189, 248, 0.32);
  box-shadow: 0 16px 40px -24px rgba(30, 58, 138, 0.15);
}

.landing-page--experience-v2 .lm-exp-block--alliance .lm-alliance-head {
  color: #0f172a;
}

.landing-page--experience-v2 .lm-exp-block--evolution {
  background: linear-gradient(165deg, #0b1220 0%, #0c1929 50%, #0f172a 100%);
}

.landing-page--experience-v2 .lm-exp-block--evolution .lm-milestone {
  border-color: rgba(56, 189, 248, 0.22);
}

.landing-page--experience-v2 .lm-footer {
  background: linear-gradient(165deg, #0b1220 0%, #111827 45%, #020617 100%);
  border-top: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow: 0 -20px 48px -32px rgba(30, 58, 138, 0.15);
  --lm-footer-link-hover: #67e8f9;
}

.landing-page--experience-v2 .lm-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.45), rgba(30, 58, 138, 0.45), transparent);
  pointer-events: none;
}

.landing-page--experience-v2 .lm-footer__sub-label {
  color: #38bdf8;
  letter-spacing: 0.1em;
}

.landing-page--experience-v2 .lm-footer__nav-link:hover,
.landing-page--experience-v2 .lm-footer__link:hover {
  color: #7dd3fc;
}

/* --- Contacto v2 (acento slate / cyan) --- */
.landing-page--contact-v2 {
  --lm-solution-accent: #0ea5e9;
  --lm-solution-accent-2: #6366f1;
}

.landing-page--contact-v2 > .top-banner.lm-cont-hero-band {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: linear-gradient(165deg, #1e293b 0%, #0f172a 50%, #334155 100%);
}

.landing-page--contact-v2 > .top-banner.lm-cont-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.72) 42%, rgba(15, 23, 42, 0.35) 100%),
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(14, 165, 233, 0.16), transparent 58%),
    radial-gradient(ellipse 45% 50% at 8% 75%, rgba(99, 102, 241, 0.1), transparent 52%);
  pointer-events: none;
}

.landing-page--contact-v2 .lm-cont-hero__inner {
  position: relative;
  z-index: 1;
}

.landing-page--contact-v2 .lm-content-intro--cont-hero,
.landing-page--contact-v2 .lm-content-intro__embedded.lm-content-intro--cont-hero {
  padding: 0.35rem 0 2rem;
}

.landing-page--contact-v2 .lm-content-intro--cont-hero .lm-kicker,
.landing-page--contact-v2 .lm-content-intro__embedded.lm-content-intro--cont-hero .lm-kicker {
  color: rgba(125, 211, 252, 0.95);
  letter-spacing: 0.12em;
}

.landing-page--contact-v2 .lm-content-intro--cont-hero .lm-section-title,
.landing-page--contact-v2 .lm-content-intro__embedded.lm-content-intro--cont-hero .lm-section-title {
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  letter-spacing: -0.025em;
}

.landing-page--contact-v2 .lm-content-intro--cont-hero .lm-section-lead,
.landing-page--contact-v2 .lm-content-intro__embedded.lm-content-intro--cont-hero .lm-section-lead {
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.55;
  max-width: 40rem;
}

.landing-page--contact-v2 .lm-trust-strip {
  position: relative;
  z-index: 4;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
}

.landing-page--contact-v2 .lm-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  justify-items: center;
}

.landing-page--contact-v2 .lm-trust-strip__list li {
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.92);
  white-space: normal;
  text-align: center;
}

.landing-page--contact-v2 .lm-trust-strip__list i {
  color: #38bdf8;
}

@media (min-width: 768px) {
  .landing-page--contact-v2 .lm-trust-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .landing-page--contact-v2 .lm-trust-strip__list li {
    position: relative;
    padding-inline: 0.65rem;
    white-space: nowrap;
  }

  .landing-page--contact-v2 .lm-trust-strip__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.14);
  }
}

.landing-page--contact-v2 .lm-cont-block--form {
  padding-top: 2.25rem !important;
}

.landing-page--contact-v2 .lm-cont-block--form .lm-contact-card {
  border-color: rgba(148, 163, 184, 0.28);
  box-shadow: 0 12px 32px -20px rgba(15, 23, 42, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--contact-v2 .lm-cont-block--form .lm-contact-card:hover {
  border-color: rgba(99, 102, 241, 0.32);
  box-shadow: 0 16px 40px -20px rgba(99, 102, 241, 0.15);
}

.landing-page--contact-v2 .lm-cont-block--form .lm-contact-card h3 .mdi {
  color: #6366f1;
}

.landing-page--contact-v2 .lm-cont-block--form .btn-dark {
  background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
  border: none;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.landing-page--contact-v2 .lm-cont-block--form .btn-dark:hover,
.landing-page--contact-v2 .lm-cont-block--form .btn-dark:focus {
  background: linear-gradient(135deg, #5558e3 0%, #0284c7 100%);
}

.landing-page--contact-v2 .lm-cont-block--location {
  background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 100%);
  border-top: 1px solid #bae6fd;
}

.landing-page--contact-v2 .lm-cont-block--location .lm-depth-feature {
  border-color: rgba(148, 163, 184, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--contact-v2 .lm-cont-block--location .lm-depth-feature:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.32);
  box-shadow: 0 12px 32px -16px rgba(99, 102, 241, 0.15);
}

.landing-page--contact-v2 .lm-cont-block--location .lm-depth-feature i {
  color: #0284c7;
}

.landing-page--contact-v2 .lm-cont-block--location .lm-map-frame {
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: 0 16px 40px -24px rgba(99, 102, 241, 0.18);
}

.landing-page--contact-v2 .lm-footer {
  background: linear-gradient(165deg, #0b1220 0%, #111827 45%, #020617 100%);
  border-top: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow: 0 -20px 48px -32px rgba(99, 102, 241, 0.15);
  --lm-footer-link-hover: #67e8f9;
}

.landing-page--contact-v2 .lm-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.45), rgba(14, 165, 233, 0.45), transparent);
  pointer-events: none;
}

.landing-page--contact-v2 .lm-footer__sub-label {
  color: #818cf8;
  letter-spacing: 0.1em;
}

.landing-page--contact-v2 .lm-footer__nav-link:hover,
.landing-page--contact-v2 .lm-footer__link:hover {
  color: #a5b4fc;
}

/* --- Servicios / soporte depth v2 (acento teal / índigo) --- */
.landing-page--depth-v2 {
  --lm-solution-accent: #0d9488;
  --lm-solution-accent-2: #6366f1;
}

.landing-page--depth-v2 > .top-banner.lm-depth-hero-band {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: linear-gradient(165deg, #0f766e 0%, #0f172a 48%, #1e293b 100%);
}

.landing-page--depth-v2 > .top-banner.lm-depth-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.9) 0%, rgba(11, 18, 32, 0.65) 42%, rgba(15, 23, 42, 0.32) 100%),
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(20, 184, 166, 0.16), transparent 58%),
    radial-gradient(ellipse 45% 50% at 8% 75%, rgba(99, 102, 241, 0.14), transparent 52%);
  pointer-events: none;
}

.landing-page--depth-v2 .lm-depth-hero__inner {
  position: relative;
  z-index: 1;
}

.landing-page--depth-v2 .lm-content-intro--depth-hero,
.landing-page--depth-v2 .lm-content-intro__embedded.lm-content-intro--depth-hero {
  padding: 0.35rem 0 2rem;
}

.landing-page--depth-v2 .lm-content-intro--depth-hero .lm-kicker,
.landing-page--depth-v2 .lm-content-intro__embedded.lm-content-intro--depth-hero .lm-kicker {
  color: rgba(94, 234, 212, 0.92);
  letter-spacing: 0.12em;
}

.landing-page--depth-v2 .lm-content-intro--depth-hero .lm-section-title,
.landing-page--depth-v2 .lm-content-intro__embedded.lm-content-intro--depth-hero .lm-section-title {
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  letter-spacing: -0.025em;
}

.landing-page--depth-v2 .lm-content-intro--depth-hero .lm-section-lead,
.landing-page--depth-v2 .lm-content-intro__embedded.lm-content-intro--depth-hero .lm-section-lead {
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.55;
  max-width: 40rem;
}

.landing-page--depth-v2 .lm-content-intro--depth-hero .lm-content-intro__actions .btn-dark,
.landing-page--depth-v2 .lm-content-intro__embedded.lm-content-intro--depth-hero .lm-content-intro__actions .btn-dark {
  background: linear-gradient(135deg, #6366f1 0%, #0d9488 100%);
  border: none;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.32);
}

.landing-page--depth-v2 .lm-content-intro--depth-hero .lm-content-intro__actions .btn-dark:hover,
.landing-page--depth-v2 .lm-content-intro--depth-hero .lm-content-intro__actions .btn-dark:focus,
.landing-page--depth-v2 .lm-content-intro__embedded.lm-content-intro--depth-hero .lm-content-intro__actions .btn-dark:hover,
.landing-page--depth-v2 .lm-content-intro__embedded.lm-content-intro--depth-hero .lm-content-intro__actions .btn-dark:focus {
  background: linear-gradient(135deg, #5558e3 0%, #0f766e 100%);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.38);
}

.landing-page--depth-v2 .lm-trust-strip {
  position: relative;
  z-index: 4;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
}

.landing-page--depth-v2 .lm-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  justify-items: center;
}

.landing-page--depth-v2 .lm-trust-strip__list li {
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.92);
  white-space: normal;
  text-align: center;
}

.landing-page--depth-v2 .lm-trust-strip__list i {
  color: #2dd4bf;
}

@media (min-width: 768px) {
  .landing-page--depth-v2 .lm-trust-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .landing-page--depth-v2 .lm-trust-strip__list li {
    position: relative;
    padding-inline: 0.65rem;
    white-space: nowrap;
  }

  .landing-page--depth-v2 .lm-trust-strip__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.14);
  }
}

.landing-page--depth-v2 .lm-depth-page .lm-section--depth-first {
  padding-top: 2.25rem !important;
}

.landing-page--depth-v2 .lm-depth-aside {
  border-color: rgba(13, 148, 136, 0.22);
  background: linear-gradient(180deg, #f0fdfa 0%, #f8fafc 100%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--depth-v2 .lm-depth-aside:hover {
  border-color: rgba(99, 102, 241, 0.28);
  box-shadow: 0 12px 32px -22px rgba(13, 148, 136, 0.22);
}

.landing-page--depth-v2 .lm-depth-aside .lm-link-arrow {
  color: #0f766e;
}

.landing-page--depth-v2 .lm-depth-aside .lm-link-arrow:hover {
  color: #4338ca;
}

.landing-page--depth-v2 .lm-depth-feature {
  border-color: rgba(148, 163, 184, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--depth-v2 .lm-depth-feature:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 148, 136, 0.32);
  box-shadow: 0 14px 36px -22px rgba(13, 148, 136, 0.28);
}

.landing-page--depth-v2 .lm-depth-feature .mdi {
  color: #0d9488;
}

.landing-page--depth-v2 .lm-pillars--exp .lm-pillar {
  border-color: rgba(148, 163, 184, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--depth-v2 .lm-pillars--exp .lm-pillar:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: 0 14px 36px -22px rgba(13, 148, 136, 0.2);
}

.landing-page--depth-v2 .lm-pillars--exp .lm-pillar__icon {
  color: #0d9488;
}

.landing-page--depth-v2 .lm-exp-quote-card {
  border-color: rgba(13, 148, 136, 0.24);
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}

.landing-page--depth-v2 .lm-exp-quote-card > i {
  color: #0d9488;
}

.landing-page--depth-v2 .lm-page-marco-legal .lm-legal-callout {
  border-color: rgba(13, 148, 136, 0.28);
  background: linear-gradient(180deg, #f0fdfa 0%, #f8fafc 100%);
}

.landing-page--depth-v2 .lm-page-marco-legal .lm-legal-callout .mdi {
  color: #0d9488;
}

.landing-page--depth-v2 .lm-page-marco-legal .lm-legal-table-wrap {
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 12px 32px -24px rgba(15, 23, 42, 0.12);
}

.landing-page--depth-v2 .lm-link-arrow {
  color: #0f766e;
}

.landing-page--depth-v2 .lm-link-arrow:hover {
  color: #4338ca;
}

.landing-page--depth-v2 .lm-footer {
  background: linear-gradient(165deg, #0b1220 0%, #111827 45%, #020617 100%);
  border-top: 1px solid rgba(45, 212, 191, 0.24);
  position: relative;
  overflow: hidden;
}

.landing-page--depth-v2 .lm-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.45), rgba(99, 102, 241, 0.4), transparent);
  pointer-events: none;
}

.landing-page--depth-v2 .lm-footer__sub-label {
  color: #5eead4;
  letter-spacing: 0.1em;
}

.landing-page--depth-v2 .lm-footer__nav-link:hover,
.landing-page--depth-v2 .lm-footer__link:hover {
  color: #99f6e4;
}

/* --- Fichas módulo /h*/ v2 (acento índigo / cyan) --- */
.landing-page--module-v2 {
  --lm-solution-accent: #6366f1;
  --lm-solution-accent-2: #0ea5e9;
}

.landing-page--module-v2 > .top-banner.lm-mod-ficha-hero-band {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: linear-gradient(165deg, #312e81 0%, #0f172a 48%, #0c4a6e 100%);
}

.landing-page--module-v2 > .top-banner.lm-mod-ficha-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.9) 0%, rgba(11, 18, 32, 0.62) 42%, rgba(15, 23, 42, 0.3) 100%),
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(99, 102, 241, 0.2), transparent 58%),
    radial-gradient(ellipse 45% 50% at 8% 75%, rgba(14, 165, 233, 0.16), transparent 52%);
  pointer-events: none;
}

.landing-page--module-v2 .lm-mod-ficha-hero__inner {
  position: relative;
  z-index: 1;
}

.landing-page--module-v2 .lm-content-intro--mod-ficha-hero,
.landing-page--module-v2 .lm-content-intro__embedded.lm-content-intro--mod-ficha-hero {
  padding: 0.35rem 0 2rem;
}

.landing-page--module-v2 .lm-content-intro--mod-ficha-hero .lm-kicker,
.landing-page--module-v2 .lm-content-intro__embedded.lm-content-intro--mod-ficha-hero .lm-kicker {
  color: rgba(165, 180, 252, 0.95);
  letter-spacing: 0.12em;
}

.landing-page--module-v2 .lm-content-intro--mod-ficha-hero .lm-section-title,
.landing-page--module-v2 .lm-content-intro__embedded.lm-content-intro--mod-ficha-hero .lm-section-title {
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  letter-spacing: -0.025em;
}

.landing-page--module-v2 .lm-content-intro--mod-ficha-hero .lm-section-lead,
.landing-page--module-v2 .lm-content-intro__embedded.lm-content-intro--mod-ficha-hero .lm-section-lead {
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.55;
  max-width: 40rem;
}

.landing-page--module-v2 .lm-content-intro--mod-ficha-hero .lm-content-intro__actions .btn-dark,
.landing-page--module-v2 .lm-content-intro__embedded.lm-content-intro--mod-ficha-hero .lm-content-intro__actions .btn-dark {
  background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
  border: none;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.32);
}

.landing-page--module-v2 .lm-content-intro--mod-ficha-hero .lm-content-intro__actions .btn-outline-secondary,
.landing-page--module-v2 .lm-content-intro__embedded.lm-content-intro--mod-ficha-hero .lm-content-intro__actions .btn-outline-secondary {
  color: rgba(226, 232, 240, 0.92);
  border-color: rgba(255, 255, 255, 0.28);
}

.landing-page--module-v2 .lm-content-intro--mod-ficha-hero .lm-content-intro__actions .btn-outline-secondary:hover,
.landing-page--module-v2 .lm-content-intro__embedded.lm-content-intro--mod-ficha-hero .lm-content-intro__actions .btn-outline-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

.landing-page--module-v2 .lm-trust-strip {
  position: relative;
  z-index: 4;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
}

.landing-page--module-v2 .lm-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  justify-items: center;
}

.landing-page--module-v2 .lm-trust-strip__list li {
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.92);
  white-space: normal;
  text-align: center;
}

.landing-page--module-v2 .lm-trust-strip__list i {
  color: #818cf8;
}

@media (min-width: 768px) {
  .landing-page--module-v2 .lm-trust-strip__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .landing-page--module-v2 .lm-trust-strip__list li {
    position: relative;
    padding-inline: 0.65rem;
    white-space: nowrap;
  }

  .landing-page--module-v2 .lm-trust-strip__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1rem;
    background: rgba(255, 255, 255, 0.14);
  }
}

.landing-page--module-v2 .lm-mod-ficha-block {
  padding-top: 2.25rem !important;
}

.landing-page--module-v2 .lm-depth-block--product {
  border-color: rgba(148, 163, 184, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-page--module-v2 .lm-depth-block--product:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.28);
  box-shadow: 0 16px 40px -24px rgba(99, 102, 241, 0.18);
}

.landing-page--module-v2 .lm-video-shell {
  border-color: rgba(99, 102, 241, 0.22);
  box-shadow: 0 16px 40px -24px rgba(99, 102, 241, 0.16);
}

.landing-page--module-v2 .lm-link-arrow {
  color: #4338ca;
}

.landing-page--module-v2 .lm-link-arrow:hover {
  color: #0284c7;
}

.landing-page--module-v2 .lm-footer {
  background: linear-gradient(165deg, #0b1220 0%, #111827 45%, #020617 100%);
  border-top: 1px solid rgba(99, 102, 241, 0.28);
  position: relative;
  overflow: hidden;
}

.landing-page--module-v2 .lm-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.45), rgba(14, 165, 233, 0.4), transparent);
  pointer-events: none;
}

.landing-page--module-v2 .lm-footer__sub-label {
  color: #818cf8;
  letter-spacing: 0.1em;
}

.landing-page--module-v2 .lm-footer__nav-link:hover,
.landing-page--module-v2 .lm-footer__link:hover {
  color: #a5b4fc;
}

/* Legales: hero más sobrio, contenido en tarjeta neutra */
.landing-page--legal-doc-v2 > .top-banner.lm-depth-hero-band {
  background: linear-gradient(165deg, #1e293b 0%, #0f172a 52%, #111827 100%);
}

.landing-page--legal-doc-v2 > .top-banner.lm-depth-hero-band::before {
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.94) 0%, rgba(15, 23, 42, 0.72) 100%),
    radial-gradient(ellipse 50% 60% at 90% 15%, rgba(148, 163, 184, 0.1), transparent 55%);
}

.landing-page--legal-doc-v2 .lm-content-intro--depth-hero .lm-kicker,
.landing-page--legal-doc-v2 .lm-content-intro__embedded.lm-content-intro--depth-hero .lm-kicker {
  color: rgba(203, 213, 225, 0.88);
}

.landing-page--legal-doc-v2 .lm-trust-strip__list i {
  color: #94a3b8;
}

.landing-page--legal-doc-v2 .lm-legal-doc-page {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.landing-page--legal-doc-v2 .lm-legal-doc-page .lm-card-like {
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 12px 32px -24px rgba(15, 23, 42, 0.14) !important;
}

.landing-page--legal-doc-v2 .lm-footer__sub-label {
  color: #94a3b8;
}

.landing-page--legal-doc-v2 .lm-footer__nav-link:hover,
.landing-page--legal-doc-v2 .lm-footer__link:hover {
  color: #cbd5e1;
}

/* Informe SEO interno (/seo/) */
.landing-page--seo-report-v2 > .top-banner.lm-depth-hero-band {
  background: linear-gradient(165deg, #1e293b 0%, #0f172a 52%, #111827 100%);
}

.landing-page--seo-report-v2 > .top-banner.lm-depth-hero-band::before {
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.94) 0%, rgba(15, 23, 42, 0.78) 100%),
    radial-gradient(ellipse 50% 55% at 92% 12%, rgba(56, 189, 248, 0.1), transparent 55%);
}

.landing-page--seo-report-v2 .lm-content-intro--depth-hero .lm-kicker,
.landing-page--seo-report-v2 .lm-content-intro__embedded.lm-content-intro--depth-hero .lm-kicker {
  color: rgba(148, 163, 184, 0.92);
}

.landing-page--seo-report-v2 .lm-page-seo-report {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.landing-page--seo-report-v2 .lm-page-seo-report .card {
  border-color: rgba(148, 163, 184, 0.2);
}

.landing-page--seo-report-v2 .lm-footer__sub-label {
  color: #94a3b8;
}

.landing-page--seo-report-v2 .lm-footer__nav-link:hover,
.landing-page--seo-report-v2 .lm-footer__link:hover {
  color: #cbd5e1;
}

@media (max-width: 575.98px) {
  .landing-page--home .lm-home-stats .lm-stat {
    padding: 0.7rem 0.5rem;
  }

  .landing-page--home .lm-home-stats .lm-stat__label {
    font-size: 0.62rem;
  }
}

.lm-page-head__inner--z {
  z-index: 1;
}

.lm-hero-v2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0b1220 0%, #132238 48%, #0f4c5c 100%);
  color: #fff;
  padding: 2.5rem 0 3rem;
}

.lm-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(59, 130, 246, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(20, 184, 166, 0.15), transparent 50%);
  pointer-events: none;
}

.lm-hero-v2__grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.lm-hero-v2__kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.75rem;
}

.lm-hero-v2__title {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.lm-hero-v2__lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.lm-hero-v2__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lm-hero-v2__cta .btn-demo {
  background: #fff;
  color: var(--lm-ink);
  font-weight: 600;
  padding: 0.65rem 1.35rem;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lm-hero-v2__cta .btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  font-weight: 500;
  padding: 0.65rem 1.25rem;
}

.lm-hero-v2__shot {
  position: relative;
}

.lm-hero-v2__browser {
  background: #1a2332;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lm-hero-v2__browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 0.85rem;
  background: #0f1623;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.lm-hero-v2__browser-bar span {
  margin-left: 0.35rem;
}

.lm-hero-v2__browser img {
  display: block;
  width: 100%;
  height: auto;
}

.lm-logo-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  padding: 1.25rem 0;
}

.lm-logo-wall__item {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lm-ink-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #f1f5f9;
}

.lm-card-solution--v2 {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lm-card-solution--v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.1);
}

.lm-card-solution--v2 .lm-law-list {
  display: none;
}

.lm-saas-teaser {
  background: linear-gradient(135deg, #0b1220, #1e3a5f);
  color: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
}

.lm-saas-teaser__title {
  font-family: var(--lm-font-display);
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}

.lm-contact-form .form-label {
  font-weight: 600;
  font-size: 0.88rem;
}

.lm-module-families__group {
  margin-bottom: 1.5rem;
}

.lm-module-families__title {
  font-family: var(--lm-font-display);
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  color: var(--lm-ink);
}

.lm-video-embed iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 991.98px) {
  .lm-nav-public__actions {
    width: 100%;
    margin-top: 0.75rem;
    padding-bottom: 0.5rem;
  }

  .lm-nav-public__collapse {
    width: 100%;
  }
}

/* --- Ritmo, jerarquía y bloques de producto --- */
.landing-page--depth .lm-page-head .lm-page-head__inner,
.landing-page--portal .lm-page-head .lm-page-head__inner,
.landing-page--contact .lm-page-head .lm-page-head__inner,
.landing-page--sgi .lm-page-head .lm-page-head__inner {
  padding-top: 1.25rem !important;
  padding-bottom: 1.35rem !important;
}

.landing-page--depth .lm-page-head .lm-page-head__lead,
.landing-page--portal .lm-page-head .lm-page-head__lead,
.landing-page--contact .lm-page-head .lm-page-head__lead {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 40rem;
}

.landing-page--portal .lm-section,
.landing-page--portal .lm-portal-hub {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.landing-page--portal .lm-section--portal-sgi {
  padding-top: 1.5rem !important;
  padding-bottom: 1.75rem !important;
}

.lm-module-families__group {
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  height: 100%;
}

.lm-module-families__title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.65rem;
}

.lm-line-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lm-line-nav__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lm-line-nav__chip:hover,
.lm-line-nav__chip:focus-visible {
  background: #e0f2fe;
  border-color: #7dd3fc;
  color: #0c4a6e;
}

.lm-depth-block--product {
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 32px -28px rgba(15, 23, 42, 0.35);
}

.lm-depth-block--product .lm-depth-block__lead {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 0.75rem;
}

.lm-depth-shot--product {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.25);
}

.lm-depth-shot--product img {
  display: block;
  width: 100%;
  height: auto;
}

.lm-section--cta-band {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.lm-page-home .lm-card-solution {
  padding: 1rem 1.05rem;
}

.lm-page-home .lm-card-solution__head h3 {
  font-size: 0.95rem;
}

.lm-page-home .lm-card-solution p {
  font-size: 0.84rem;
  line-height: 1.45;
}

.lm-page-home .lm-card-solution .lm-link-arrow {
  font-size: 0.78rem;
}

.lm-page-home .lm-card-solution .lm-law-list {
  font-size: 0.72rem;
}

.lm-page-contact .lm-contact-card {
  border-radius: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px -20px rgba(15, 23, 42, 0.2);
}

.lm-page-module .lm-depth-block--product {
  margin-top: 0;
}

.lm-page-module .lm-section:first-of-type {
  padding-top: 2.5rem;
}

.lm-modules-ayuda-banner {
  background: transparent;
}

.lm-modules-ayuda-banner__card {
  position: relative;
  overflow: visible;
  padding: 0.45rem 0 0.5rem;
  border-radius: 0.85rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.lm-modules-ayuda-banner__row {
  --lm-mod-ayuda-photo-h: 15.5rem;
  position: relative;
  overflow: visible;
}

.lm-modules-ayuda-banner__card::before {
  display: none;
}

.lm-modules-ayuda-banner__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  min-height: var(--lm-mod-ayuda-photo-h);
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}

.lm-modules-ayuda-banner__kicker {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6366f1;
  margin-bottom: 0;
}

.lm-modules-ayuda-banner__title {
  font-family: var(--lm-font-display, "Fraunces", Georgia, serif);
  font-size: clamp(1rem, 1.85vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 0;
  line-height: 1.2;
}

.lm-modules-ayuda-banner__lead {
  font-size: 0.76rem;
  line-height: 1.38;
  color: #475569;
  margin-bottom: 0;
  max-width: 36rem;
}

.lm-modules-ayuda-banner__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0;
}

.lm-modules-ayuda-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.22rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #334155;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
}

.lm-modules-ayuda-banner__pill .mdi {
  font-size: 0.85rem;
  color: #4338ca;
}

.lm-modules-ayuda-banner__pill--live {
  color: #0f766e;
  border-color: rgba(20, 184, 166, 0.35);
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.95), rgba(255, 255, 255, 0.95));
}

.lm-modules-ayuda-banner__pill--live .mdi {
  color: #0d9488;
}

.lm-modules-ayuda-banner__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
}

.lm-modules-ayuda-banner__hours {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.66rem;
  font-weight: 700;
  color: #0f766e;
  background: rgba(236, 253, 245, 0.95);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 999px;
}

.lm-modules-ayuda-banner__saas {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6366f1;
}

.lm-page-modules .lm-modules-ayuda-banner__row > [class*="col-"] {
  overflow: visible !important;
}

.lm-modules-ayuda-banner__media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
}

.lm-modules-ayuda-banner__visual {
  position: relative;
  width: 100%;
  height: var(--lm-mod-ayuda-photo-h);
  overflow: visible;
  border-radius: 0.65rem;
}

.lm-modules-ayuda-banner__photo {
  margin: 0;
  width: 100%;
  height: var(--lm-mod-ayuda-photo-h);
  border-radius: 0.65rem;
  overflow: hidden;
  box-shadow: none;
  border: none;
}

.lm-modules-ayuda-banner__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 20%;
}

.lm-modules-ayuda-banner__chat {
  position: absolute;
  z-index: 5;
  width: 300px;
  max-width: none;
  pointer-events: none;
  left: auto;
  right: calc(50% - 190px);
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 991.98px) {
  .lm-modules-ayuda-banner__chat {
    left: 0;
    right: auto;
    top: auto;
    bottom: calc(var(--lm-mod-ayuda-photo-h) / 2);
    transform: translateY(50%);
  }
}

.lm-modules-ayuda-banner__chat .lm-support-chat-mock {
  position: relative;
  left: -10px;
  width: 300px;
  max-width: none;
  height: auto;
  transform: scale(0.88);
  transform-origin: right center;
  filter: drop-shadow(0 10px 22px rgba(15, 23, 42, 0.22));
  margin-right: 0;
}

.lm-modules-ayuda-banner__media .lm-modules-ayuda-banner__visual {
  box-shadow: none;
  border: none;
}

@media (max-width: 991px) {
  .lm-modules-ayuda-banner__row {
    --lm-mod-ayuda-photo-h: 13rem;
  }

  .lm-modules-ayuda-banner__copy {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0.15rem;
  }

  .lm-modules-ayuda-banner__visual {
    margin-top: 0.15rem;
  }

  .lm-modules-ayuda-banner__chat {
    width: 250px;
    max-width: 58%;
  }

  .lm-modules-ayuda-banner__chat .lm-support-chat-mock {
    width: 250px;
    transform: scale(0.8);
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .lm-modules-ayuda-banner__card {
    padding: 0.4rem 0.65rem 0.45rem;
  }

  .lm-modules-ayuda-banner__row {
    --lm-mod-ayuda-photo-h: 11.5rem;
  }

  .lm-modules-ayuda-banner__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .lm-modules-ayuda-banner__chat {
    width: 220px;
    max-width: 62%;
  }

  .lm-modules-ayuda-banner__chat .lm-support-chat-mock {
    width: 220px;
    transform: scale(0.74);
    margin-right: 0;
  }
}
