/* =============================================================================
   TrendContrax — landing.css
   Design system exclusivo para la landing page pública (dark mode)
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');

/* === VARIABLES ============================================================== */
:root {
  --lp-bg-primary: #0F172A;
  --lp-bg-secondary: #111827;
  --lp-bg-card: rgba(255, 255, 255, 0.04);
  --lp-bg-card-hover: rgba(255, 255, 255, 0.07);
  --lp-accent-blue: #4A6CF7;
  --lp-accent-purple: #7C3AED;
  --lp-accent-amber: #F59E0B;
  --lp-accent-green: #10B981;
  --lp-text-primary: #F9FAFB;
  --lp-text-muted: #9CA3AF;
  --lp-text-light: #D1D5DB;
  --lp-border: rgba(255, 255, 255, 0.08);
  --lp-border-blue: rgba(74, 108, 247, 0.35);
  --lp-border-purple: rgba(124, 58, 237, 0.35);
  --lp-shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --lp-shadow-glow: 0 0 40px rgba(74, 108, 247, 0.15);
  --lp-radius-card: 16px;
  --lp-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.lp-body {
  font-family: var(--lp-font);
  background: var(--lp-bg-primary);
  color: var(--lp-text-primary);
  margin: 0;
  overflow-x: hidden;
  line-height: 1.6;
}

/* === NAVBAR ================================================================= */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lp-border);
  transition: background 0.3s;
}

.lp-nav.scrolled {
  background: rgba(15, 23, 42, 0.97);
}

.lp-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.lp-nav-brand img {
  height: 38px;
  width: auto;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 40px;
  list-style: none;
  padding: 0;
}

.lp-nav-links a {
  color: var(--lp-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.lp-nav-links a:hover {
  color: var(--lp-text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.lp-nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-btn-solicitar {
  background: transparent;
  border: 1px solid var(--lp-border-blue);
  color: var(--lp-accent-blue);
  font-family: var(--lp-font);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.lp-btn-solicitar:hover {
  background: rgba(74, 108, 247, 0.12);
  border-color: var(--lp-accent-blue);
  transform: translateY(-1px);
}

.lp-btn-ingresar {
  background: linear-gradient(135deg, var(--lp-accent-blue), var(--lp-accent-purple));
  border: none;
  color: #fff;
  font-family: var(--lp-font);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

.lp-btn-ingresar:hover {
  box-shadow: 0 4px 20px rgba(74, 108, 247, 0.45);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.lp-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--lp-border);
  color: var(--lp-text-primary);
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  margin-left: auto;
}

.lp-nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 4px;
  margin-left: 0;
  z-index: 999;
}

/* === HERO ================================================================== */
.lp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 70px 5% 50px;
  position: relative;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(74, 108, 247, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 70%, rgba(124, 58, 237, 0.10) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 108, 247, 0.12);
  border: 1px solid rgba(74, 108, 247, 0.3);
  color: #93C5FD;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.lp-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-accent-blue);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.lp-hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--lp-text-primary);
}

.lp-hero-title .accent-ia {
  background: linear-gradient(90deg, var(--lp-accent-blue), var(--lp-accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-subtitle {
  font-size: 17px;
  color: var(--lp-text-light);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.lp-hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.lp-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--lp-accent-blue), var(--lp-accent-purple));
  color: #fff;
  font-family: var(--lp-font);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(74, 108, 247, 0.35);
}

.lp-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74, 108, 247, 0.5);
  color: #fff;
  text-decoration: none;
}

.lp-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--lp-text-light);
  font-family: var(--lp-font);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid var(--lp-border);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.lp-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--lp-text-primary);
  text-decoration: none;
}

.lp-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--lp-text-muted);
}

.lp-trust-item i {
  font-size: 14px;
  color: var(--lp-accent-green);
}

/* Mockup dashboard flotante */
.lp-hero-mockup {
  position: relative;
}

/* === DUAL MOCKUP HERO ====================================================== */
.lp-dual-mockup {
  position: relative;
  width: 100%;
  min-height: 380px;
}

.lp-mockup-back {
  position: relative;
  z-index: 1;
  transform: perspective(1100px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.4s ease;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(74, 108, 247, 0.14);
}

.lp-dual-mockup:hover .lp-mockup-back {
  transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
}

.lp-mockup-lic {
  position: absolute;
  bottom: -28px;
  right: -20px;
  z-index: 2;
  width: 68%;
  background: #1a2540;
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(245, 158, 11, 0.08);
  transform: perspective(900px) rotateY(3deg) rotateX(-1deg);
  transition: transform 0.4s ease;
}

.lp-dual-mockup:hover .lp-mockup-lic {
  transform: perspective(900px) rotateY(1.5deg) rotateX(-0.5deg);
}

.lp-mockup-lic-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lp-mockup-lic-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-text-primary);
}

.lp-mbadge-lic-active {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2px 8px;
  border-radius: 99px;
}

.lp-mockup-lic-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.lp-mlic-tab {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--lp-text-muted);
  white-space: nowrap;
  cursor: default;
}

.lp-mlic-tab.active {
  background: rgba(74, 108, 247, 0.15);
  color: #93C5FD;
  border: 1px solid rgba(74, 108, 247, 0.3);
}

.lp-mockup-lic-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.lp-mlic-req {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}

.lp-mlic-check {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  display: inline-block;
}

.lp-mlic-check.checked {
  background: var(--lp-accent-blue);
  border-color: var(--lp-accent-blue);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
}

.lp-mlic-text {
  flex: 1;
  color: var(--lp-text-light);
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-mlic-prio {
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 99px;
  flex-shrink: 0;
}

.lp-mlic-prio.alta {
  background: rgba(239, 68, 68, 0.15);
  color: #FCA5A5;
}

.lp-mlic-prio.media {
  background: rgba(245, 158, 11, 0.15);
  color: #FCD34D;
}

.lp-mlic-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--lp-accent-blue), var(--lp-accent-purple));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 8px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: default;
}


.lp-mockup-wrapper {
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(74, 108, 247, 0.12);
}

.lp-mockup-wrapper:hover {
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}

.lp-mockup-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lp-border);
}

.lp-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.lp-mockup-dot.red {
  background: #EF4444;
}

.lp-mockup-dot.amber {
  background: #F59E0B;
}

.lp-mockup-dot.green {
  background: #10B981;
}

.lp-mockup-title-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-left: 8px;
}

.lp-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.lp-stat-mini {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 12px;
}

.lp-stat-mini-label {
  font-size: 10px;
  color: var(--lp-text-muted);
  margin-bottom: 4px;
}

.lp-stat-mini-val {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.lp-stat-mini-val.blue {
  color: var(--lp-accent-blue);
}

.lp-stat-mini-val.red {
  color: #EF4444;
}

.lp-stat-mini-val.green {
  color: var(--lp-accent-green);
}

.lp-stat-mini-sub {
  font-size: 10px;
  color: var(--lp-text-muted);
  margin-top: 2px;
}

.lp-mockup-table {
  width: 100%;
}

.lp-mockup-thead th {
  font-size: 10px;
  color: var(--lp-text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 700;
  padding: 6px 8px;
  border-bottom: 1px solid var(--lp-border);
}

.lp-mockup-tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lp-mockup-tbody td {
  font-size: 11px;
  padding: 7px 8px;
  color: var(--lp-text-light);
  vertical-align: middle;
}

.lp-mbadge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 99px;
}

.lp-mbadge.green {
  background: rgba(16, 185, 129, .15);
  color: #34D399;
}

.lp-mbadge.amber {
  background: rgba(245, 158, 11, .15);
  color: #FCD34D;
}

.lp-mbadge.gray {
  background: rgba(107, 114, 128, .15);
  color: #9CA3AF;
}

.lp-mbadge.blue {
  background: rgba(74, 108, 247, .15);
  color: #93C5FD;
}

/* === SECCIONES GENÉRICAS =================================================== */
.lp-section {
  padding: 58px 5%;
}

.lp-section-alt {
  background: var(--lp-bg-secondary);
}

.lp-container {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lp-accent-blue);
  margin-bottom: 14px;
}

.lp-section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--lp-text-primary);
  margin-bottom: 14px;
}

.lp-section-subtitle {
  font-size: 17px;
  color: var(--lp-text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* === FEATURE CARDS ========================================================= */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.lp-feature-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-card);
  padding: 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.lp-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lp-accent-blue), var(--lp-accent-purple));
  opacity: 0;
  transition: opacity 0.25s;
}

.lp-feature-card:hover {
  background: var(--lp-bg-card-hover);
  border-color: rgba(74, 108, 247, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-card);
}

.lp-feature-card:hover::before {
  opacity: 1;
}

.lp-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.lp-feature-icon.blue {
  background: rgba(74, 108, 247, .15);
  color: var(--lp-accent-blue);
}

.lp-feature-icon.purple {
  background: rgba(124, 58, 237, .15);
  color: var(--lp-accent-purple);
}

.lp-feature-icon.green {
  background: rgba(16, 185, 129, .15);
  color: var(--lp-accent-green);
}

.lp-feature-icon.amber {
  background: rgba(245, 158, 11, .15);
  color: var(--lp-accent-amber);
}

.lp-feature-icon.red {
  background: rgba(239, 68, 68, .15);
  color: #EF4444;
}

.lp-feature-icon.cyan {
  background: rgba(6, 182, 212, .15);
  color: #06B6D4;
}

.lp-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-text-primary);
  margin-bottom: 8px;
}

.lp-feature-desc {
  font-size: 14px;
  color: var(--lp-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* === CÓMO FUNCIONA ========================================================= */
.lp-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 29px;
}

.lp-how-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lp-how-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s;
}

.lp-how-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.lp-how-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-accent-blue), var(--lp-accent-purple));
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(74, 108, 247, 0.35);
}

.lp-how-step-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-text-primary);
  margin: 0 0 5px;
}

.lp-how-step-content p {
  font-size: 14px;
  color: var(--lp-text-muted);
  margin: 0;
  line-height: 1.6;
}

.lp-wizard-mockup {
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--lp-shadow-card), 0 0 40px rgba(74, 108, 247, 0.1);
}

.lp-wizard-steps-bar {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.lp-wizard-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.lp-wizard-step-circle.done {
  background: linear-gradient(135deg, var(--lp-accent-blue), var(--lp-accent-purple));
  color: #fff;
}

.lp-wizard-step-circle.active {
  background: linear-gradient(135deg, var(--lp-accent-blue), var(--lp-accent-purple));
  color: #fff;
  box-shadow: 0 0 16px rgba(74, 108, 247, .5);
}

.lp-wizard-step-circle.pend {
  background: rgba(255, 255, 255, .07);
  color: var(--lp-text-muted);
  border: 1px solid var(--lp-border);
}

.lp-wizard-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--lp-accent-blue), rgba(255, 255, 255, 0.08));
  margin: 0 6px;
}

.lp-wizard-connector.pend {
  background: rgba(255, 255, 255, 0.08);
}

.lp-wizard-form-field {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--lp-text-muted);
}

.lp-wizard-form-field span {
  color: var(--lp-text-primary);
  font-weight: 500;
}

.lp-wizard-contract-preview {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 14px;
  font-size: 11px;
  color: var(--lp-text-muted);
  line-height: 1.7;
  max-height: 120px;
  overflow: hidden;
  position: relative;
}

.lp-wizard-contract-preview::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(17, 24, 39, 0.9));
}

.lp-btn-ia {
  width: 100%;
  background: linear-gradient(135deg, var(--lp-accent-blue), var(--lp-accent-purple));
  border: none;
  color: #fff;
  font-family: var(--lp-font);
  font-size: 13px;
  font-weight: 700;
  padding: 11px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.lp-btn-ia:hover {
  box-shadow: 0 4px 20px rgba(74, 108, 247, 0.45);
}

/* === LICITACIONES ========================================================== */
.lp-lic-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #FCD34D;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lp-lic-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 29px;
  margin-bottom: 29px;
}

.lp-pipeline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 29px;
}

.lp-pipeline-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-text-primary);
  background: rgba(74, 108, 247, 0.10);
  border: 1px solid rgba(74, 108, 247, 0.2);
  border-radius: 99px;
  padding: 6px 14px;
  white-space: nowrap;
}

.lp-pipeline-step i {
  font-size: 12px;
  color: var(--lp-accent-blue);
}

.lp-pipeline-arrow {
  color: var(--lp-text-muted);
  font-size: 16px;
  padding: 0 8px;
  flex-shrink: 0;
}

.lp-lic-mockup {
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--lp-shadow-card), 0 0 50px rgba(245, 158, 11, 0.06);
}

.lp-lic-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--lp-border);
}

.lp-lic-mockup-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-text-primary);
}

.lp-lic-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.lp-lic-tab {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  color: var(--lp-text-muted);
  cursor: default;
  border: 1px solid transparent;
}

.lp-lic-tab.active {
  background: rgba(74, 108, 247, 0.12);
  border-color: rgba(74, 108, 247, 0.3);
  color: var(--lp-accent-blue);
}

.lp-req-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
}

.lp-req-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--lp-border);
  flex-shrink: 0;
}

.lp-req-check.checked {
  background: var(--lp-accent-blue);
  border-color: var(--lp-accent-blue);
}

.lp-req-text {
  flex: 1;
  color: var(--lp-text-light);
}

.lp-req-prio {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
}

.lp-req-prio.alta {
  background: rgba(239, 68, 68, .15);
  color: #FCA5A5;
}

.lp-req-prio.media {
  background: rgba(245, 158, 11, .15);
  color: #FCD34D;
}

.lp-req-prio.baja {
  background: rgba(107, 114, 128, .15);
  color: #9CA3AF;
}

/* === TESTIMONIOS =========================================================== */
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.lp-testimonial {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-card);
  padding: 28px;
  transition: all 0.25s;
}

.lp-testimonial:hover {
  background: var(--lp-bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-card);
}

.lp-stars {
  color: #FBBF24;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.lp-testimonial-quote {
  font-size: 15px;
  color: var(--lp-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-accent-blue), var(--lp-accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.lp-author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-text-primary);
}

.lp-author-role {
  font-size: 12px;
  color: var(--lp-text-muted);
}

/* === CTA FINAL ============================================================= */
.lp-cta-section {
  padding: 58px 5%;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  text-align: center;
}

.lp-cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--lp-text-primary);
}

.lp-cta-subtitle {
  font-size: 17px;
  color: var(--lp-text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* === FOOTER ================================================================ */
.lp-footer {
  background: var(--lp-bg-secondary);
  border-top: 1px solid var(--lp-border);
  padding: 29px 5% 20px;
}

.lp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 24px;
}

.lp-footer-brand img {
  height: 34px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(1.2);
}

.lp-footer-desc {
  font-size: 14px;
  color: var(--lp-text-muted);
  line-height: 1.7;
  max-width: 260px;
}

.lp-footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lp-text-primary);
  margin-bottom: 16px;
}

.lp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer-links a {
  font-size: 14px;
  color: var(--lp-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.lp-footer-links a:hover {
  color: var(--lp-text-primary);
}

.lp-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--lp-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-footer-copyright {
  font-size: 13px;
  color: var(--lp-text-muted);
}

.lp-footer-legal {
  display: flex;
  gap: 20px;
}

.lp-footer-legal a {
  font-size: 13px;
  color: var(--lp-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.lp-footer-legal a:hover {
  color: var(--lp-text-primary);
}

/* === MODAL CONTACTO ======================================================== */
.lp-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lp-modal-overlay.active {
  display: flex;
}

.lp-modal {
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  animation: modal-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.lp-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lp-modal-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-modal-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lp-accent-blue), var(--lp-accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.lp-modal-header-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text-primary);
  margin: 0 0 3px;
}

.lp-modal-header-text p {
  font-size: 13px;
  color: var(--lp-text-muted);
  margin: 0;
}

.lp-modal-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--lp-border);
  color: var(--lp-text-muted);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.15s;
  flex-shrink: 0;
}

.lp-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--lp-text-primary);
}

.lp-modal-body {
  padding: 24px 28px;
}

.lp-form-group {
  margin-bottom: 16px;
}

.lp-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.lp-form-label .req {
  color: #EF4444;
  margin-left: 2px;
}

.lp-form-input,
.lp-form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--lp-text-primary);
  font-family: var(--lp-font);
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-form-input::placeholder,
.lp-form-textarea::placeholder {
  color: rgba(156, 163, 175, 0.6);
}

.lp-form-input:focus,
.lp-form-textarea:focus {
  border-color: var(--lp-accent-blue);
  box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.15);
}

.lp-form-input.error,
.lp-form-textarea.error {
  border-color: #EF4444;
}

.lp-form-error {
  font-size: 11px;
  color: #F87171;
  margin-top: 4px;
  display: none;
}

.lp-form-error.visible {
  display: block;
}

.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lp-form-textarea {
  resize: vertical;
  min-height: 90px;
}

.lp-form-required-note {
  font-size: 11px;
  color: var(--lp-text-muted);
  margin-bottom: 18px;
}

.lp-btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--lp-accent-blue), var(--lp-accent-purple));
  border: none;
  color: #fff;
  font-family: var(--lp-font);
  font-size: 15px;
  font-weight: 700;
  padding: 13px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(74, 108, 247, 0.3);
}

.lp-btn-submit:hover {
  box-shadow: 0 6px 30px rgba(74, 108, 247, 0.5);
  transform: translateY(-1px);
}

.lp-btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.lp-form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--lp-text-muted);
  margin-top: 14px;
}

.lp-modal-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.lp-modal-success.visible {
  display: block;
}

.lp-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--lp-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--lp-accent-green);
  margin: 0 auto 16px;
}

.lp-success-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text-primary);
  margin-bottom: 8px;
}

.lp-success-msg {
  font-size: 14px;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

/* === ANIMACIONES SCROLL ==================================================== */
.lp-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-animate-delay-1 {
  transition-delay: 0.1s;
}

.lp-animate-delay-2 {
  transition-delay: 0.2s;
}

.lp-animate-delay-3 {
  transition-delay: 0.3s;
}

.lp-animate-delay-4 {
  transition-delay: 0.4s;
}

.lp-animate-delay-5 {
  transition-delay: 0.5s;
}

.lp-footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--lp-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.lp-footer-contact-link:hover {
  color: var(--lp-text-primary);
}

.lp-footer-contact-link i {
  font-size: 14px;
  color: var(--lp-accent-blue);
  flex-shrink: 0;
}

.lp-wa-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #25D366;
  transition: color 0.15s;
}

.lp-footer-contact-link:hover .lp-wa-icon {
  color: #22c55e;
}

/* === RESPONSIVE ============================================================ */
@media (max-width: 1024px) {
  .lp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .lp-lic-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lp-hero {
    padding: 88px 5% 40px;
    min-height: auto;
  }

  .lp-hero-text {
    text-align: center;
  }

  .lp-hero-badge {
    justify-content: center;
    display: inline-flex;
  }

  .lp-hero-subtitle {
    max-width: 100%;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .lp-hero-ctas {
    justify-content: center;
  }

  .lp-hero-trust {
    justify-content: center;
    gap: 12px;
  }

  .lp-hero-mockup {
    display: none;
  }

  .lp-how-grid {
    grid-template-columns: 1fr;
  }

  .lp-wizard-mockup {
    display: none;
  }

  .lp-features-grid {
    grid-template-columns: 1fr;
  }

  .lp-lic-features-grid {
    grid-template-columns: 1fr;
  }

  .lp-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .lp-footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lp-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .lp-nav-links {
    display: none;
  }

  .lp-nav-toggle {
    display: block;
  }

  .lp-nav-actions .lp-btn-solicitar {
    display: none;
  }

  .lp-form-row {
    grid-template-columns: 1fr;
  }

  .lp-pipeline {
    gap: 6px;
    padding: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .lp-pipeline-step {
    font-size: 11px;
    padding: 5px 10px;
  }

  .lp-pipeline-arrow {
    padding: 0 2px;
    font-size: 12px;
  }

  .lp-lic-mockup-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .lp-lic-mockup-title {
    font-size: 13px;
    line-height: 1.4;
    word-break: break-word;
  }

  .lp-lic-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .lp-lic-tabs::-webkit-scrollbar {
    display: none;
  }

  .lp-lic-tab {
    flex-shrink: 0;
  }

  .lp-req-text {
    font-size: 12px;
    word-break: break-word;
  }

  .lp-section-title br {
    display: none;
  }

  .lp-cta-title br {
    display: none;
  }

  .lp-section-subtitle {
    max-width: 100%;
  }

  .lp-modal-header {
    padding: 20px 18px 16px;
  }

  .lp-modal-body {
    padding: 18px;
  }

  .lp-how-step {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .lp-section {
    padding: 36px 4%;
  }

  .lp-cta-section {
    padding: 36px 4%;
  }

  .lp-hero {
    padding: 84px 4% 32px;
  }

  .lp-hero-title {
    font-size: clamp(28px, 8vw, 42px);
    letter-spacing: -0.5px;
  }

  .lp-cta-primary,
  .lp-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .lp-hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .lp-trust-item {
    font-size: 12px;
  }

  .lp-hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .lp-pipeline {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-pipeline-arrow {
    transform: rotate(90deg);
    padding: 0;
    line-height: 1;
    align-self: center;
  }

  .lp-modal {
    border-radius: 16px;
  }

  .lp-feature-card {
    padding: 22px;
  }

  .lp-nav {
    padding: 0 4%;
  }
}

@media (max-width: 360px) {
  .lp-hero-title {
    font-size: 26px;
  }

  .lp-section-title {
    font-size: 24px;
  }

  .lp-btn-ingresar {
    font-size: 12px;
    padding: 5px 11px;
  }

  .lp-cta-primary {
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* =============================================================================
   HOME v2 — hero centrado, demo con switcher, tres módulos (prefijo b-)
   ============================================================================= */

.lp-new{display:inline-block;background:rgba(16,185,129,.14);border:1px solid rgba(16,185,129,.4);
  color:#10B981;font-size:10px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  padding:2px 7px;border-radius:6px;vertical-align:middle;margin-left:8px}

/* --- HERO centrado --- */
.b-hero{position:relative;padding:130px 5% 0;text-align:center;overflow:hidden}
.b-hero-bg{position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(900px 480px at 50% -8%,rgba(74,108,247,.22),transparent 62%),
    radial-gradient(700px 400px at 82% 22%,rgba(124,58,237,.16),transparent 60%),
    radial-gradient(600px 340px at 14% 30%,rgba(245,158,11,.09),transparent 60%)}
.b-hero-in{position:relative;max-width:960px;margin:0 auto}
.b-h1{font-size:clamp(36px,4.9vw,58px);font-weight:800;line-height:1.1;letter-spacing:-.03em;margin:20px 0 0}
.b-h1 .accent-ia{background:linear-gradient(135deg,#4A6CF7 0%,#A78BFA 55%,#F59E0B 100%);
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.b-sub{font-size:clamp(15px,1.6vw,18.5px);color:var(--lp-text-light);max-width:720px;margin:20px auto 0;line-height:1.65}
.b-ctas{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-top:32px}

/* franja de números */
.b-stats{display:flex;justify-content:center;flex-wrap:wrap;gap:0;margin:44px auto 0;max-width:920px;
  border:1px solid var(--lp-border);border-radius:16px;background:rgba(255,255,255,.03);
  backdrop-filter:blur(8px);overflow:hidden}
.b-stat{flex:1 1 180px;padding:20px 16px;text-align:center;border-right:1px solid var(--lp-border)}
.b-stat:last-child{border-right:none}
.b-stat-v{font-size:24px;font-weight:800;color:var(--lp-text-primary);letter-spacing:-.02em;line-height:1.15}
.b-stat-l{font-size:12px;color:var(--lp-text-muted);margin-top:5px;line-height:1.4}

/* --- DEMO con switcher --- */
.b-demo{max-width:1180px;margin:56px auto 0;padding:0 5%}
.b-switch{display:flex;gap:6px;justify-content:center;flex-wrap:wrap;margin-bottom:20px}
.b-switch button{background:rgba(255,255,255,.04);border:1px solid var(--lp-border);color:var(--lp-text-muted);
  font:600 13px/1 var(--lp-font);padding:10px 18px;border-radius:99px;cursor:pointer;
  display:inline-flex;align-items:center;gap:8px;transition:.18s;white-space:nowrap}
.b-switch button:hover{color:var(--lp-text-primary);background:rgba(255,255,255,.08)}
.b-switch button.on{background:linear-gradient(135deg,#4A6CF7,#7C3AED);border-color:transparent;color:#fff;
  box-shadow:0 8px 24px rgba(74,108,247,.32)}

.b-window{background:#0B1220;border:1px solid var(--lp-border);border-radius:18px;overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.55),0 0 0 1px rgba(255,255,255,.02)}
.b-window-bar{display:flex;align-items:center;gap:7px;padding:12px 16px;border-bottom:1px solid var(--lp-border);
  background:rgba(255,255,255,.025)}
.b-dot{width:9px;height:9px;border-radius:50%}
.b-dot.r{background:#EF4444}.b-dot.a{background:#F59E0B}.b-dot.g{background:#10B981}
.b-url{margin-left:12px;flex:1;height:22px;border-radius:6px;background:rgba(255,255,255,.05);
  display:flex;align-items:center;padding:0 10px;font-size:10.5px;color:var(--lp-text-muted)}

.b-pane{display:none;padding:0}
.b-pane.on{display:block;animation:bfade .3s ease}
@keyframes bfade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}

.b-pane-head{padding:16px 20px 12px;display:flex;align-items:center;justify-content:space-between;gap:12px;
  border-bottom:1px solid rgba(255,255,255,.05)}
.b-pane-title{font-size:14px;font-weight:700;display:flex;align-items:center;gap:9px;color:var(--lp-text-primary)}
.b-pane-title i{font-size:16px}

.b-tr{display:grid;align-items:center;gap:12px;padding:12px 20px;font-size:13px;
  border-bottom:1px solid rgba(255,255,255,.045)}
.b-tr:last-child{border-bottom:none}
.b-tr:hover{background:rgba(255,255,255,.025)}
.b-th{font-size:10.5px;text-transform:uppercase;letter-spacing:.08em;color:var(--lp-text-muted);
  font-weight:700;background:rgba(255,255,255,.02);padding:9px 20px}
.b-s{color:var(--lp-text-primary);font-weight:600}
.b-m{color:var(--lp-text-muted)}

.b-tag{font-size:10px;font-weight:700;padding:3px 8px;border-radius:99px;white-space:nowrap;display:inline-block}
.g-amber{background:rgba(245,158,11,.15);color:#F59E0B}
.g-green{background:rgba(16,185,129,.15);color:#10B981}
.g-blue{background:rgba(74,108,247,.16);color:#8AA3FF}
.g-red{background:rgba(239,68,68,.15);color:#F87171}
.g-purple{background:rgba(167,139,250,.16);color:#C4B5FD}
.g-gray{background:rgba(255,255,255,.07);color:#9CA3AF}

.b-mini{display:inline-flex;align-items:center;gap:7px;font-weight:800;font-size:12.5px}
.b-bar{width:48px;height:5px;border-radius:99px;background:rgba(255,255,255,.09);overflow:hidden}
.b-bar i{display:block;height:100%;border-radius:99px}

/* checks de funciones por módulo, debajo de la ventana */
.b-feats{display:none;grid-template-columns:repeat(3,1fr);gap:13px 28px;margin-top:20px;
  padding:20px 24px;background:var(--lp-bg-card);border:1px solid var(--lp-border);border-radius:14px}
.b-feats.on{display:grid;animation:bfade .3s ease}
.b-feat{display:flex;gap:10px;align-items:flex-start;font-size:13px;color:var(--lp-text-muted);line-height:1.5}
.b-feat i{font-size:14px;margin-top:2px;flex-shrink:0}
.b-feat b{color:var(--lp-text-primary);font-weight:600}

/* --- TRES MÓDULOS --- */
.b-jobs{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:44px}
.b-job{background:var(--lp-bg-card);border:1px solid var(--lp-border);border-radius:16px;padding:26px 24px;
  transition:.2s;position:relative;overflow:hidden}
.b-job:hover{background:var(--lp-bg-card-hover);transform:translateY(-4px);border-color:var(--lp-border-blue)}
.b-job-top{font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;margin-bottom:14px}
.b-job h3{font-size:19px;font-weight:700;margin:0 0 10px;line-height:1.3;color:var(--lp-text-primary)}
.b-job p{font-size:13.5px;color:var(--lp-text-muted);margin:0 0 16px;line-height:1.6}
.b-job ul{list-style:none;padding:0;margin:0}
.b-job li{font-size:12.5px;color:var(--lp-text-light);display:flex;gap:9px;margin-bottom:9px;line-height:1.5}
.b-job li i{font-size:13px;margin-top:2px;flex-shrink:0}
.b-job-aud{font-size:11.5px;color:var(--lp-text-muted);border-top:1px solid var(--lp-border);
  margin-top:16px;padding-top:12px;display:flex;gap:8px;align-items:center}
.b-job-aud i{font-size:13px}

/* --- ANTES / AHORA --- */
.b-cmp{display:grid;grid-template-columns:1fr 1fr;gap:0;margin-top:40px;border:1px solid var(--lp-border);
  border-radius:16px;overflow:hidden}
.b-cmp-h{padding:16px 22px;font-size:13px;font-weight:700;letter-spacing:.02em;
  border-bottom:1px solid var(--lp-border)}
.b-cmp-col.old .b-cmp-h{background:rgba(239,68,68,.07);color:#F87171}
.b-cmp-col.new .b-cmp-h{background:rgba(16,185,129,.08);color:#10B981;border-left:1px solid var(--lp-border)}
.b-cmp-i{padding:15px 22px;font-size:13.5px;line-height:1.55;border-bottom:1px solid rgba(255,255,255,.05);
  display:flex;gap:11px;align-items:flex-start;min-height:66px}
.b-cmp-col.new .b-cmp-i{border-left:1px solid var(--lp-border);color:var(--lp-text-light)}
.b-cmp-col.old .b-cmp-i{color:var(--lp-text-muted)}
.b-cmp-i:last-child{border-bottom:none}
.b-cmp-i i{font-size:14px;margin-top:2px;flex-shrink:0}

/* --- CAPACIDADES --- */
.b-modlist{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:40px}
.b-modc{background:var(--lp-bg-card);border:1px solid var(--lp-border);border-radius:14px;padding:22px 20px;
  transition:.2s}
.b-modc:hover{background:var(--lp-bg-card-hover);transform:translateY(-3px)}
.b-modc-h{display:flex;align-items:center;gap:11px;margin-bottom:11px}
.b-modc-ico{width:36px;height:36px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0}
.b-modc h4{font-size:14.5px;font-weight:700;margin:0;color:var(--lp-text-primary)}
.b-modc p{font-size:12.5px;color:var(--lp-text-muted);margin:0;line-height:1.55}
.b-ico-blue{background:rgba(74,108,247,.14);color:#4A6CF7}
.b-ico-purple{background:rgba(124,58,237,.16);color:#A78BFA}
.b-ico-amber{background:rgba(245,158,11,.14);color:#F59E0B}
.b-ico-green{background:rgba(16,185,129,.14);color:#10B981}
.b-ico-cyan{background:rgba(6,182,212,.14);color:#22D3EE}
.b-ico-red{background:rgba(239,68,68,.14);color:#F87171}

@media (max-width:1024px){
  .b-jobs,.b-modlist{grid-template-columns:1fr}
  .b-cmp{grid-template-columns:1fr}
  .b-cmp-col.new .b-cmp-h,.b-cmp-col.new .b-cmp-i{border-left:none}
  .b-feats{grid-template-columns:1fr 1fr}
}
/* en mobile la ventana de demo scrollea dentro suyo, no rompe la página */
@media (max-width:860px){
  .b-hero{padding-top:104px}
  .b-window{overflow-x:auto}
  .b-pane,.b-pane-head,.b-th{min-width:700px}
  .b-window-bar{position:sticky;left:0}
  .b-switch{justify-content:flex-start;overflow-x:auto;padding-bottom:4px}
  .b-switch button{flex:0 0 auto}
  .b-stat{flex:1 1 50%;border-right:none;border-bottom:1px solid var(--lp-border)}
}
@media (max-width:640px){
  .b-feats{grid-template-columns:1fr}
}