/* ==========================================================================
   IQViral — Landing Page 6 CSS
   Strategic Repositioning & Differentiation System
   - Glassmorphic Design System (Orange #F97316 & Purple #8B5CF6)
   - Layout Resets & Responsive Framework
   - Equation Banner & Interactive Angle Explorer
   - 6-Dimension Creator DNA Cards
   - 6-Phase Continuous Growth Cycle
   - 4-Way Differentiation Matrix
   - Production Flow Pipeline
   - Strategist 4 Pillars & Mesa de Leyendas
   - Clean Mockups & Guaranteed Non-Overflowing Images
   ========================================================================== */

/* ── Global Image & Media Safety Resets ───────────────────────────────── */
img, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Navigation / Header Corrections ──────────────────────────────────── */
.lp2-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.90);
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  width: 100%;
}

.lp2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: clamp(10px, 1.5vw, 20px);
  max-width: 1280px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 clamp(16px, 2.5vw, 32px);
}

.lp2-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.lp2-logo-img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(249, 115, 22, 0.35));
  transition: transform 0.25s ease;
}

.lp2-logo:hover .lp2-logo-img {
  transform: scale(1.08) rotate(3deg);
}

.lp2-logo-text {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0F1117;
}

.lp2-logo-accent {
  color: var(--lp-orange, #F97316);
}

.lp2-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.1vw, 18px);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
}

.lp2-nav-link {
  color: #4B5563;
  text-decoration: none;
  font-size: clamp(0.82rem, 0.9vw, 0.92rem);
  font-weight: 600;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.lp2-nav-link:hover {
  color: var(--lp-orange, #F97316);
}

.lp2-header-actions {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  flex-shrink: 0;
}

.lp2-btn-login {
  background: #FFFFFF;
  color: #0F1117;
  border: 1px solid #E5E7EB;
  padding: 8px clamp(12px, 1vw, 16px);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lp2-btn-login:hover {
  background: #F3F4F6;
  border-color: #D1D5DB;
}

.lp2-btn-register {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  border: 1px solid rgba(249, 115, 22, 0.4);
  padding: 8px clamp(14px, 1.2vw, 18px);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(249, 115, 22, 0.3);
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.lp2-btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.5);
}

/* Mobile Navbar Toggle */
.lp6-mobile-menu-btn {
  display: none;
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  color: #0F1117;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lp6-mobile-menu-btn:hover {
  background: #F3F4F6;
  border-color: #9CA3AF;
}

@media (max-width: 1180px) {
  .lp2-nav-links {
    display: none;
  }
  .lp2-nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    padding: 20px 24px;
    gap: 16px;
    z-index: 999;
  }
  .lp6-mobile-menu-btn {
    display: block;
  }
}

/* ── Hero Section Fixes & Mascot Framing ──────────────────────────────── */
.lp2-hero {
  padding: 70px 0 50px;
  background: radial-gradient(circle at 70% 20%, rgba(255, 120, 0, 0.08) 0%, transparent 45%), #FFFFFF;
  position: relative;
  overflow: hidden;
}

.lp2-hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.lp2-hero-content {
  text-align: left;
}

.lp2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.08);
  color: #EA580C;
  border: 1px solid rgba(249, 115, 22, 0.28);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.lp2-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F97316;
  box-shadow: 0 0 10px #F97316;
  animation: lp6-blink 2s infinite ease-in-out;
}

@keyframes lp6-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.lp2-hero-title {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #0F1117;
  margin: 0 0 18px;
}

.lp2-hero-subtitle {
  font-size: clamp(1.25rem, 1.6vw, 1.45rem);
  color: #4B5563;
  line-height: 1.5;
  margin: 0 0 28px;
  max-width: 720px;
}

.lp2-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.lp2-hero-btn-creator {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.lp2-hero-btn-creator:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.48);
}

.lp2-hero-btn-mentor {
  background: #FFFFFF;
  color: #0F1117;
  padding: 15px 28px;
  border-radius: 12px;
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #E5E7EB;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.lp2-hero-btn-mentor:hover {
  background: #F9FAFB;
  border-color: #D1D5DB;
  transform: translateY(-2px);
}

.lp2-hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #6B7280;
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
}

.lp2-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #4B5563;
}

/* Hero Mascot Container with Floating Badges */
.lp2-hero-lion-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp2-hero-lion-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
}

.lp2-hero-lion-img,
.lp2-hero-mascot-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.08));
  animation: lp6-mascot-float 4.5s ease-in-out infinite;
}

@keyframes lp6-mascot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.lp2-hero-float-badge {
  position: absolute;
  z-index: 3;
  background: rgba(18, 20, 29, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.82rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}

.lp2-hero-float-badge.badge-top {
  top: 10%;
  left: -20px;
  border-color: rgba(249, 115, 22, 0.4);
}

.lp2-hero-float-badge.badge-top i {
  color: #F97316;
}

.lp2-hero-float-badge.badge-bottom {
  bottom: 12%;
  right: -20px;
  border-color: rgba(139, 92, 246, 0.4);
}

.lp2-hero-float-badge.badge-bottom i {
  color: #A78BFA;
}

@media (max-width: 960px) {
  .lp2-hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .lp2-hero-content {
    text-align: center;
  }
  .lp2-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .lp2-hero-ctas {
    justify-content: center;
  }
  .lp2-hero-trust {
    justify-content: center;
  }
  .lp2-hero-lion-img,
  .lp2-hero-mascot-img {
    max-width: 260px;
  }
  .lp2-hero-float-badge.badge-top {
    left: 0;
  }
  .lp2-hero-float-badge.badge-bottom {
    right: 0;
  }
}

/* ── Section Header Components ────────────────────────────────────────── */
.lp2-section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}

.lp2-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lp2-badge-orange {
  background: rgba(249, 115, 22, 0.08);
  color: #C2410C;
  border: 1px solid rgba(249, 115, 22, 0.32);
  font-weight: 800;
}

.lp2-badge-purple {
  background: rgba(139, 92, 246, 0.08);
  color: #6D28D9;
  border: 1px solid rgba(139, 92, 246, 0.32);
  font-weight: 800;
}

.lp2-badge-green {
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.32);
  font-weight: 800;
}

.lp2-badge-pink {
  background: rgba(236, 72, 153, 0.08);
  color: #DB2777;
  border: 1px solid rgba(236, 72, 153, 0.28);
}

.lp2-section-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #0F1117;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.lp2-section-subtitle {
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  color: #4B5563;
  line-height: 1.55;
  margin: 0;
}

/* ── 01. LA FÓRMULA (Tendencia × Identidad) ───────────────────────────── */
.lp6-formula-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 10%, rgba(249, 115, 22, 0.05), transparent 70%),
              #0B0C12;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lp6-formula-banner {
  background: linear-gradient(145deg, rgba(26, 29, 43, 0.8) 0%, rgba(15, 17, 26, 0.9) 100%);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(249, 115, 22, 0.08);
  margin-bottom: 40px;
}

.lp6-equation-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.lp6-eq-item {
  flex: 1;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.lp6-eq-item:hover {
  transform: translateY(-2px);
}

.lp6-eq-item.tendencia {
  border-color: rgba(249, 115, 22, 0.4);
}

.lp6-eq-item.adn {
  border-color: rgba(139, 92, 246, 0.4);
}

.lp6-eq-item.resultado {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18) 0%, rgba(139, 92, 246, 0.18) 100%);
  border-color: rgba(249, 115, 22, 0.6);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
}

.lp6-eq-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.lp6-eq-icon.orange {
  background: rgba(249, 115, 22, 0.15);
  color: #FB923C;
}

.lp6-eq-icon.purple {
  background: rgba(139, 92, 246, 0.18);
  color: #C4B5FD;
}

.lp6-eq-icon.gradient {
  background: linear-gradient(135deg, #F97316, #8B5CF6);
  color: #FFFFFF;
}

.lp6-eq-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94A3B8;
  display: block;
  margin-bottom: 3px;
}

.lp6-eq-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.lp6-eq-symbol {
  font-size: 1.8rem;
  font-weight: 900;
  color: #64748B;
  padding: 0 6px;
}

@media (max-width: 900px) {
  .lp6-equation-grid {
    flex-direction: column;
  }
  .lp6-eq-item {
    width: 100%;
  }
  .lp6-eq-symbol {
    display: none;
  }
}

/* Interactive Angle Explorer Card */
.lp6-example-card {
  background: #12141D;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.lp6-example-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.lp6-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94A3B8;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.lp6-tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
}

.lp6-tab-btn.active {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.3));
  border-color: #F97316;
  color: #FFEDD5;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.25);
}

.lp6-example-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 20px;
  margin-bottom: 28px;
}

@media (max-width: 980px) {
  .lp6-example-content {
    grid-template-columns: 1fr;
  }
}

.lp6-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lp6-box.tendencia {
  border-left: 3px solid #F97316;
}

.lp6-box.adn {
  border-left: 3px solid #8B5CF6;
}

.lp6-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.lp6-box-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #CBD5E1;
}

.lp6-box-body {
  font-size: 0.92rem;
  color: #E2E8F0;
  line-height: 1.55;
  margin: 0 0 16px;
  font-style: italic;
}

.lp6-box-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.lp6-meta-chip {
  background: rgba(255, 255, 255, 0.06);
  color: #94A3B8;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.lp6-angle-hero-box {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
  border: 1.5px solid rgba(249, 115, 22, 0.5);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
}

.lp6-angle-quote {
  font-size: 1.08rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.45;
  margin: 10px 0 18px;
}

.lp6-angle-badge-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lp6-angle-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.lp6-angle-tag.ctr {
  background: rgba(249, 115, 22, 0.25);
  color: #FDBA74;
  border: 1px solid rgba(249, 115, 22, 0.5);
}

.lp6-angle-tag.auth {
  background: rgba(16, 185, 129, 0.2);
  color: #6EE7B7;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.lp6-angle-tag.diff {
  background: rgba(139, 92, 246, 0.25);
  color: #DDD6FE;
  border: 1px solid rgba(139, 92, 246, 0.5);
}

/* ── 02. ADN CREADOR (6 Dimensiones) ──────────────────────────────────── */
.lp6-adn-section {
  padding: 90px 0;
  background: #090A0F;
  position: relative;
}

.lp6-adn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 960px) {
  .lp6-adn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lp6-adn-grid {
    grid-template-columns: 1fr;
  }
}

.lp6-adn-card {
  background: #12141D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.lp6-adn-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.15);
}

.lp6-adn-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.15);
  color: #C4B5FD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.lp6-adn-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.lp6-adn-card-desc {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.55;
  margin: 0 0 16px;
  flex-grow: 1;
}

.lp6-adn-card-example {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #8B5CF6;
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 0.82rem;
  color: #DDD6FE;
  font-style: italic;
  line-height: 1.45;
}

/* ── 03. EL CICLO CONTINUO (6 Fases) ─────────────────────────────────── */
.lp6-cycle-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.06), transparent 70%),
              #0D0E15;
  position: relative;
}

.lp6-cycle-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 1100px) {
  .lp6-cycle-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .lp6-cycle-grid {
    grid-template-columns: 1fr;
  }
}

.lp6-cycle-card {
  background: #12141D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.lp6-cycle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 18px rgba(249, 115, 22, 0.1);
}

.lp6-cycle-step {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FB923C;
  margin-bottom: 12px;
}

.lp6-cycle-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.12);
  color: #FB923C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.lp6-cycle-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 6px;
}

.lp6-cycle-desc {
  font-size: 0.82rem;
  color: #94A3B8;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

/* ── 04. PRODUCCIÓN DE CONTENIDO (Pipeline & Agency Demo) ─────────────── */
.lp6-production-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #12141D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 40px;
  overflow-x: auto;
}

.lp6-flow-node {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.lp6-flow-arrow {
  color: #64748B;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── 05. DIFERENCIACIÓN CLARA (4-Way Matrix) ─────────────────────────── */
.lp6-diff-section {
  padding: 90px 0;
  background: #090A0F;
  position: relative;
}

.lp6-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1080px) {
  .lp6-diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .lp6-diff-grid {
    grid-template-columns: 1fr;
  }
}

.lp6-diff-card {
  background: #12141D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}

.lp6-diff-card.negative {
  opacity: 0.9;
}

.lp6-diff-card.winner {
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.15) 0%, #161824 100%);
  border: 1.5px solid rgba(249, 115, 22, 0.6);
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.15);
  transform: translateY(-4px);
}

.lp6-diff-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: fit-content;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp6-diff-badge.red {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.lp6-diff-badge.winner-badge {
  background: rgba(34, 197, 94, 0.18);
  color: #4ADE80;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.lp6-diff-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px;
}

.lp6-diff-body {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.55;
  margin: 0 0 16px;
  flex-grow: 1;
}

.lp6-diff-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.lp6-diff-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #CBD5E1;
}

.lp6-diff-bullet-item i {
  font-size: 0.78rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp6-diff-bullet-item.bad i {
  color: #F87171;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.lp6-diff-bullet-item.good i {
  color: #4ADE80;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.lp6-diff-bullet-item strong {
  color: #FFFFFF;
  font-weight: 700;
}

.lp6-diff-summary {
  font-size: 0.8rem;
  font-weight: 600;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #FDA4AF;
}

.lp6-diff-card.winner .lp6-diff-summary {
  color: #86EFAC;
  border-top-color: rgba(249, 115, 22, 0.25);
}

/* ── 06. MENTOR BRIDGE & ACADEMIAS ────────────────────────────────────── */
.lp6-mentor-bridge {
  padding: 90px 0;
  background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08), transparent 70%),
              #0D0E15;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── 07. PRINCIPIO FINAL CARD ─────────────────────────────────────────── */
.lp6-principle-card {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.14) 0%, rgba(139, 92, 246, 0.14) 100%);
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.lp6-principle-quote {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.lp6-principle-sub {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Pricing Switcher Styles ──────────────────────────────────────────── */
.lp2-ptab-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lp2-ptab-btn:hover {
  color: #FFFFFF;
}

.lp2-ptab-btn.active {
  background: #F97316;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.lp2-ptab-btn.active-mentor {
  background: #8B5CF6;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}

/* ── Mesa de Leyendas (Avatares Estratégicos) ─────────────────────────── */
.lp6-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.lp2-legends-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.lp2-legend-card {
  background: linear-gradient(180deg, rgba(26, 29, 45, 0.7) 0%, rgba(15, 17, 26, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 22px;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.lp2-legend-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.lp2-legend-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.lp2-legend-avatar {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  min-height: 54px !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  color: #FFFFFF !important;
  margin-bottom: 18px !important;
  border: none !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.lp2-legend-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.lp2-legend-archetype {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Individual Archetype Colors & Top Accents */
.lp2-legend-card:nth-child(1) .lp2-legend-archetype {
  color: #FB923C;
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.25);
}
.lp2-legend-card:nth-child(1):hover::before {
  background: linear-gradient(90deg, #F97316, #FB923C);
}

.lp2-legend-card:nth-child(2) .lp2-legend-archetype {
  color: #C084FC;
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.25);
}
.lp2-legend-card:nth-child(2):hover::before {
  background: linear-gradient(90deg, #8B5CF6, #C084FC);
}

.lp2-legend-card:nth-child(3) .lp2-legend-archetype {
  color: #34D399;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
}
.lp2-legend-card:nth-child(3):hover::before {
  background: linear-gradient(90deg, #10B981, #34D399);
}

.lp2-legend-card:nth-child(4) .lp2-legend-archetype {
  color: #F472B6;
  background: rgba(236, 72, 153, 0.12);
  border-color: rgba(236, 72, 153, 0.25);
}
.lp2-legend-card:nth-child(4):hover::before {
  background: linear-gradient(90deg, #EC4899, #F472B6);
}

.lp2-legend-desc {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .lp6-pillars-grid,
  .lp2-legends-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lp6-pillars-grid,
  .lp2-legends-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Landing Page Language Selector ── */
.lp2-lang-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lp2-lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  padding: 7px 28px 7px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  line-height: 1.2;
}

.lp2-lang-select:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(249, 115, 22, 0.5);
}

.lp2-lang-select:focus {
  border-color: #F97316;
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

.lp2-lang-select option {
  background-color: #111827;
  color: #FFFFFF;
  font-weight: 600;
  padding: 6px;
}

/* Auth Modal Language Field */
.lp2-auth-lang-field {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s;
  cursor: pointer;
}

.lp2-auth-lang-field:focus {
  border-color: #F97316;
}

.lp2-auth-lang-field option {
  background-color: #1E293B;
  color: #FFFFFF;
}

/* ==========================================================================
   IQViral — Elite Redesign Additions (Steve Jobs + Alex Hormozi System)
   ========================================================================== */

/* ── 01. EL PROBLEMA (El Dilema del Creador) ─────────────────────────── */
.lp6-problem-section {
  padding: 85px 0 75px;
  background: #F3F4F6;
  position: relative;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.lp6-problem-dilemma {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.lp6-problem-dilemma .lp2-section-badge {
  background: #FFFFFF;
  border: 1px solid rgba(234, 88, 12, 0.35);
  color: #C2410C;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.lp6-dilemma-quote {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0F1117;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.lp6-problem-dilemma .lp2-gradient-text {
  background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #C2410C;
  font-weight: 800;
}

.lp6-dilemma-sub {
  font-size: clamp(1.15rem, 1.4vw, 1.28rem);
  color: #374151;
  font-weight: 500;
  line-height: 1.55;
}

.lp6-contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

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

.lp6-contrast-card {
  border-radius: 20px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s var(--lp-ease-premium);
  position: relative;
}

.lp6-contrast-card:hover {
  transform: translateY(-4px);
}

.lp6-contrast-card.old-way {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 10px 25px -4px rgba(15, 23, 42, 0.05), 0 4px 10px -2px rgba(15, 23, 42, 0.02);
}

.lp6-contrast-card.new-way {
  background: #FFFFFF;
  border: 2px solid #F97316;
  box-shadow: 0 12px 32px -4px rgba(249, 115, 22, 0.12), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
}

.lp6-contrast-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.lp6-contrast-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.lp6-contrast-card.old-way .lp6-contrast-icon {
  background: #FEE2E2;
  border: 1px solid #FECACA;
  color: #DC2626;
}

.lp6-contrast-card.new-way .lp6-contrast-icon {
  background: #FFEDD5;
  border: 1px solid #FED7AA;
  color: #C2410C;
  font-size: 1.3rem;
}

.lp6-contrast-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0F1117;
  margin: 0;
}

.lp6-contrast-tag {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 3px;
}

.lp6-contrast-card.old-way .lp6-contrast-tag {
  color: #B91C1C;
}

.lp6-contrast-card.new-way .lp6-contrast-tag {
  color: #C2410C;
}

.lp6-contrast-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp6-contrast-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #374151;
}

.lp6-contrast-card.new-way .lp6-contrast-item {
  color: #111827;
}

.lp6-contrast-card.old-way .lp6-contrast-item i {
  color: #DC2626;
  margin-top: 4px;
  flex-shrink: 0;
}

.lp6-contrast-card.new-way .lp6-contrast-item i {
  color: #059669;
  margin-top: 4px;
  flex-shrink: 0;
}

.lp6-contrast-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 26px;
  flex-wrap: wrap;
}

.lp6-contrast-pill {
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 1.02rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.lp6-contrast-pill.danger {
  background: #FEF2F2;
  color: #991B1B;
  border: 1.5px solid #FCA5A5;
}

.lp6-contrast-pill.success {
  background: #ECFDF5;
  color: #065F46;
  border: 1.5px solid #6EE7B7;
}

.lp6-contrast-flow-arrow {
  color: #374151;
  font-size: 0.95rem;
  font-weight: 900;
}

.lp6-contrast-conclusion {
  padding: 15px 20px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.01em;
}

.lp6-contrast-card.old-way .lp6-contrast-conclusion {
  background: #FEF2F2;
  color: #991B1B;
  border: 1.5px dashed #F87171;
}

.lp6-contrast-card.new-way .lp6-contrast-conclusion {
  background: #FFF7ED;
  color: #9A3412;
  border: 1.5px solid #FB923C;
}

/* ── 02. QUÉ PUBLICAR (Mockup de la Interfaz Real) ─────────────────────── */
.lp6-what-publish-section {
  padding: 85px 0;
  background: #FFFFFF;
  position: relative;
  border-top: 1px solid #E5E7EB;
}

.lp6-value-grid {
  max-width: 900px;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.lp6-value-card {
  background: #FFFFFF;
  border: 1px solid #ECECEF;
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--lp-shadow-card);
  transition: transform 0.25s var(--lp-ease-premium);
}

.lp6-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-card-hover);
}

.lp6-value-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.lp6-value-desc {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.5;
}

.lp6-what-mockup {
  max-width: 1000px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #ECECEF;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.lp6-mockup-topbar {
  background: #F9FAFB;
  border-bottom: 1px solid #ECECEF;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp6-mockup-apptitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F1117;
}

.lp6-mockup-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.lp6-mockup-body {
  padding: 32px;
}

@media (max-width: 768px) {
  .lp6-mockup-body {
    padding: 20px;
  }
}

.lp6-decision-card {
  background: #FAFAFC;
  border: 1.5px solid rgba(249, 115, 22, 0.35);
  border-radius: 18px;
  padding: 30px;
  position: relative;
}

.lp6-decision-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.lp6-decision-badge {
  background: #FFEDD5;
  color: #C2410C;
  border: 1px solid #FDBA74;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp6-decision-confidence {
  font-size: 0.85rem;
  color: #059669;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp6-decision-headline {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: #0F1117;
  line-height: 1.35;
  margin: 0 0 18px;
}

.lp6-decision-rationale {
  background: #FFFFFF;
  border: 1px solid #ECECEF;
  border-left: 4px solid #8B5CF6;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.lp6-rationale-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7C3AED;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp6-rationale-text {
  font-size: 0.98rem;
  color: #374151;
  line-height: 1.55;
  margin: 0;
}

.lp6-decision-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #E5E7EB;
}

.lp6-decision-signals {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: #6B7280;
  flex-wrap: wrap;
}

.lp6-decision-signals span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp6-action-btn-pill {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
  transition: all 0.2s ease;
}

.lp6-action-btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
}

/* ── 03. CÓMO FUNCIONA / EL CICLO ANIMADO ──────────────────────────────── */
.lp6-cycle-section {
  padding: 75px 0;
  background: #FFFFFF;
  position: relative;
  border-top: 1px solid #E5E7EB;
}

.lp6-cycle-flow-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 36px auto 0;
  max-width: 1060px;
  padding: 32px 30px 28px;
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}

/* Glowing Top Progress Track indicating current stage */
.lp6-cycle-progress-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(229, 231, 235, 0.6);
}

.lp6-cycle-progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, #F97316 0%, #EA580C 100%);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.8);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp6-cycle-step-node {
  font-size: 1rem;
  font-weight: 700;
  color: #0F1117;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
  user-select: none;
}

.lp6-cycle-step-tag {
  font-size: 0.74rem;
  color: #4B5563;
  font-weight: 800;
  display: block;
  margin-bottom: 3px;
  letter-spacing: 0.04em;
  transition: color 0.35s ease;
}

.lp6-cycle-step-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: #0F1117;
  display: block;
  letter-spacing: -0.01em;
  transition: color 0.35s ease;
}

.lp6-cycle-step-desc {
  font-size: 0.84rem;
  color: #6B7280;
  font-weight: 500;
  margin-top: 3px;
  transition: color 0.35s ease;
}

/* Default state for central focus node (DECIDIR) */
.lp6-cycle-step-node.focus-node {
  background: #FFFDF9;
  border: 1.5px solid #FDBA74;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.08);
  transform: scale(1.02);
}

.lp6-cycle-step-node.focus-node .lp6-cycle-step-tag {
  color: #C2410C;
}

.lp6-cycle-step-node.focus-node .lp6-cycle-step-desc {
  color: #9A3412;
  font-weight: 600;
}

/* ── ACTIVE SCANNING STATE (Efecto de Recorrido Iluminado) ── */
.lp6-cycle-step-node.is-scanning-active {
  background: #FFFFFF;
  border-color: #F97316;
  box-shadow: 0 14px 30px -4px rgba(249, 115, 22, 0.32), 0 0 0 3px rgba(249, 115, 22, 0.16);
  transform: translateY(-6px) scale(1.06);
}

.lp6-cycle-step-node.is-scanning-active .lp6-cycle-step-tag {
  color: #EA580C;
}

.lp6-cycle-step-node.is-scanning-active .lp6-cycle-step-name {
  color: #C2410C;
}

.lp6-cycle-step-node.is-scanning-active .lp6-cycle-step-desc {
  color: #1F2937;
}

.lp6-cycle-step-node.focus-node.is-scanning-active {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
  border: 2px solid #F97316;
  box-shadow: 0 18px 38px -4px rgba(249, 115, 22, 0.45), 0 0 0 5px rgba(249, 115, 22, 0.22);
  transform: translateY(-8px) scale(1.12);
}

/* Arrows between Nodes */
.lp6-cycle-arrow {
  color: #9CA3AF;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp6-cycle-arrow.is-scanning-active {
  color: #F97316;
  transform: scale(1.35) translateX(3px);
  filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.7));
}

/* ── 04. MERCADO & OPORTUNIDADES ──────────────────────────────────────── */
.lp6-market-section {
  padding: 85px 0;
  background: #F8F9FA;
  position: relative;
  border-top: 1px solid #E5E7EB;
}

.lp6-market-section .lp2-feat-bullet-title {
  color: #0F1117 !important;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.lp6-market-section .lp2-feat-bullet-desc {
  color: #4B5563 !important;
  font-size: 0.95rem;
  line-height: 1.5;
}

.lp6-market-section .lp2-feat-bullet-icon {
  background: rgba(249, 115, 22, 0.12) !important;
  color: #C2410C !important;
}

.lp6-market-section .lp2-sample-video-title {
  color: #0F1117 !important;
  font-weight: 800;
  font-size: 1.05rem;
}

.lp6-market-section .lp2-sample-metrics {
  color: #4B5563 !important;
}

.lp6-market-section .lp2-sample-metrics span strong {
  color: #0F1117 !important;
  font-weight: 800;
}

/* ── 05. ADN CREADOR ─────────────────────────────────────────────────── */
.lp6-adn-section {
  padding: 75px 0;
  background: #FFFFFF;
  position: relative;
  border-top: 1px solid #E5E7EB;
}

.lp6-adn-pills-wrap {
  max-width: 860px;
  margin: 32px auto 0;
  background: #F8F9FA;
  border: 1px solid #ECECEF;
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--lp-shadow-card);
}

.lp6-adn-pills-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.lp6-adn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #0F1117;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lp6-adn-pill:hover {
  transform: translateY(-2px);
  border-color: #F97316;
  background: #FFF7ED;
}

.lp6-adn-pill i {
  color: #8B5CF6;
}

.lp6-adn-clean-footer {
  color: #EA580C;
  font-size: 1.15rem;
  font-weight: 800;
  border-top: 1px solid #E5E7EB;
  padding-top: 20px;
}

/* ── 06. PRODUCCIÓN DE CONTENIDO ──────────────────────────────────────── */
.lp6-production-section {
  padding: 75px 0;
  background: #F8F9FA;
  position: relative;
  border-top: 1px solid #E5E7EB;
}

.lp6-production-flow-wrap {
  max-width: 920px;
  margin: 32px auto 0;
  text-align: center;
}

.lp6-production-flow-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 28px 24px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 22px;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}

/* Glowing Top Progress Track indicating stage */
.lp6-production-progress-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(229, 231, 235, 0.6);
}

.lp6-production-progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, #F97316 0%, #EA580C 100%);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.8);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp6-production-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 14px;
  background: #F8F9FA;
  border: 1.5px solid #E5E7EB;
  color: #0F1117;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
  user-select: none;
}

.lp6-production-step i {
  font-size: 1.15rem;
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* ACTIVE SCANNING STATE (Efecto de Recorrido Iluminado) */
.lp6-production-step.is-scanning-active {
  background: #FFFFFF;
  border-color: #F97316;
  box-shadow: 0 14px 28px -4px rgba(249, 115, 22, 0.30), 0 0 0 3px rgba(249, 115, 22, 0.16);
  transform: translateY(-5px) scale(1.06);
  color: #0F1117;
}

.lp6-production-step.is-scanning-active i {
  transform: scale(1.22);
  filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.45));
}

.lp6-production-arrow {
  color: #9CA3AF;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp6-production-arrow.is-scanning-active {
  color: #F97316;
  transform: scale(1.35) translateX(3px);
  filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.7));
}

/* ── 07. APRENDIZAJE CONTINUO ─────────────────────────────────────────── */
.lp6-learning-section {
  padding: 70px 0;
  background: #FFFFFF;
  position: relative;
  border-top: 1px solid #E5E7EB;
}

.lp6-learning-box {
  max-width: 880px;
  margin: 0 auto;
  background: #F8F9FA;
  border: 1px solid #ECECEF;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--lp-shadow-card);
}

.lp6-learning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}

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

.lp6-learning-item {
  background: #FFFFFF;
  border: 1px solid #ECECEF;
  border-radius: 14px;
  padding: 20px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.lp6-learning-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #EA580C;
  border-top: 1px solid #E5E7EB;
  padding-top: 18px;
}

/* ── 08. DOS CAMINOS (Creador vs Coach) ───────────────────────────────── */
.lp2-section-dual {
  padding: 85px 0;
  background: #FFFFFF;
  position: relative;
  border-top: 1px solid #E5E7EB;
}

.lp2-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

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

.lp2-dual-card {
  background: #FFFFFF;
  border: 1px solid #ECECEF;
  border-radius: 20px;
  box-shadow: var(--lp-shadow-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease;
}

.lp2-dual-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-card-hover);
}

.lp2-dual-card.creator {
  border: 1.5px solid rgba(249, 115, 22, 0.4);
  background: #FFFDFB;
}

.lp2-dual-card.mentor {
  border: 1.5px solid rgba(139, 92, 246, 0.35);
  background: #FAF9FF;
}

.lp2-dual-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.lp2-dual-card.creator .lp2-dual-icon {
  background: #FFEDD5;
  color: #EA580C;
}

.lp2-dual-card.mentor .lp2-dual-icon {
  background: #EDE9FE;
  color: #7C3AED;
}

.lp2-dual-tag {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 6px;
}

.lp2-dual-card.creator .lp2-dual-tag {
  color: #EA580C;
}

.lp2-dual-card.mentor .lp2-dual-tag {
  color: #7C3AED;
}

.lp2-dual-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0F1117;
  margin: 0 0 12px;
}

.lp2-dual-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.lp2-dual-list li {
  font-size: 1.05rem;
  color: #374151;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp2-dual-action-btn {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  width: 100%;
  text-align: center;
  transition: all 0.2s ease;
}

.lp2-dual-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.lp2-dual-action-btn.mentor {
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
}

.lp2-dual-action-btn.mentor:hover {
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

/* ── 09. SECCIÓN COACHES (STRATEGIC DARK 1) ───────────────────────────── */
.lp6-mentor-bridge {
  padding: 95px 0;
  background: #0B0C12;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.lp6-mentor-bridge .lp2-section-title {
  color: #FFFFFF;
}

.lp6-mentor-bridge .lp2-section-subtitle {
  color: #E5E7EB;
}

.lp6-mentor-bridge .lp2-feat-bullet-title {
  color: #FFFFFF;
}

.lp6-mentor-bridge .lp2-feat-bullet-desc {
  color: #D1D5DB;
}

.lp6-mentor-bridge .lp2-mockup-frame {
  background: #131520;
  border-color: rgba(139, 92, 246, 0.35);
}

.lp6-mentor-bridge .lp2-mockup-header {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp6-mentor-bridge .lp2-mockup-title {
  color: #FFFFFF;
}

.lp6-mentor-bridge .lp2-student-name {
  color: #FFFFFF;
}

.lp6-mentor-bridge .lp2-student-channel {
  color: #D1D5DB;
}

.lp6-coach-banner-quote {
  max-width: 880px;
  margin: 40px auto 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.16) 0%, rgba(249, 115, 22, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
}

.lp6-coach-quote-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.4;
}

.lp6-coach-discreet-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #C4B5FD;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 14px;
  transition: all 0.2s ease;
}

.lp6-coach-discreet-link:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

/* ── 10. DIFERENCIACIÓN CLARA (3 Columnas) ────────────────────────────── */
.lp6-diff-section {
  padding: 85px 0;
  background: #F8F9FA;
  position: relative;
  border-top: 1px solid #E5E7EB;
}

.lp6-simple-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 40px auto 0;
}

@media (max-width: 820px) {
  .lp6-simple-diff-grid {
    grid-template-columns: 1fr;
  }
}

.lp6-simple-diff-card {
  background: #FFFFFF;
  border: 1px solid #ECECEF;
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--lp-shadow-card);
  transition: transform 0.25s ease;
}

.lp6-simple-diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-card-hover);
}

.lp6-simple-diff-card.winner {
  background: #FFFDF9;
  border: 2px solid #F97316;
  box-shadow: 0 14px 36px rgba(249, 115, 22, 0.12);
}

.lp6-simple-diff-tag {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.lp6-simple-diff-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0F1117;
  margin: 0 0 14px;
}

.lp6-simple-diff-punchline {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

.lp6-diff-summary {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6B7280;
}

/* ── 12. TESTIMONIOS (Slider Enfocado 3 Cards - Light Theme) ─────────── */
.lp2-section-testimonials {
  padding: 85px 0 75px;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #E5E7EB;
}

.lp6-testi-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp6-testi-track-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 4px 20px;
}

.lp6-testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.lp6-testi-card {
  width: calc((100% - 40px) / 3);
  min-width: calc((100% - 40px) / 3);
  background: #FFFFFF;
  border: 1px solid #ECECEF;
  border-radius: 18px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.lp6-testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.lp6-testi-card.active {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 12px 36px rgba(249, 115, 22, 0.1);
  transform: translateY(-3px);
}

.lp6-testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lp6-testi-metric-pill {
  font-size: 0.78rem;
  font-weight: 800;
  color: #C2410C;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.22);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.lp6-testi-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.lp6-testi-quote {
  font-size: 1.05rem;
  color: #1F2937;
  line-height: 1.55;
  font-weight: 450;
  margin: 0;
  flex-grow: 1;
  letter-spacing: -0.01em;
}

.lp6-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
}

.lp6-testi-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid #E2E8F0;
  background: #F3F4F6;
}

.lp6-testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp6-testi-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F1117;
  letter-spacing: -0.01em;
}

.lp6-testi-role {
  font-size: 0.82rem;
  color: #4B5563;
  font-weight: 500;
}

.lp6-testi-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #0F1117;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  z-index: 2;
}

.lp6-testi-arrow:hover {
  background: #F97316;
  color: #FFFFFF;
  border-color: #F97316;
  transform: scale(1.06);
}

.lp6-testi-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.lp6-testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.lp6-testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lp6-testi-dot.active {
  width: 24px;
  border-radius: 10px;
  background: #F97316;
}

@media (max-width: 900px) {
  .lp6-testi-card {
    width: calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 640px) {
  .lp6-testi-card {
    width: 100%;
    min-width: 100%;
  }
  .lp6-testi-arrow {
    display: none;
  }
}

/* ── 12. PRECIOS & PLANES ─────────────────────────────────────────────── */
.lp2-section-pricing {
  padding: 85px 0;
  background: #FFFFFF;
  position: relative;
  border-top: 1px solid #E5E7EB;
}

.lp2-pricing-tabs {
  display: inline-flex;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 4px;
  margin: 0 auto 40px;
}

.lp2-ptab-btn {
  background: transparent;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lp2-ptab-btn.active {
  background: #FFFFFF;
  color: #0F1117;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.lp2-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.lp2-pricing-grid.coach-3cols {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1140px;
}

@media (max-width: 820px) {
  .lp2-pricing-grid,
  .lp2-pricing-grid.coach-3cols {
    grid-template-columns: 1fr;
  }
}

.lp2-price-card {
  background: #FFFFFF;
  border: 1px solid #ECECEF;
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--lp-shadow-card);
  transition: all 0.25s ease;
}

.lp2-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-card-hover);
}

.lp2-price-card.featured {
  border: 2px solid #F97316;
  background: #FFFDF9;
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.12);
  transform: scale(1.02);
}

.lp2-price-card.featured-purple {
  border: 2px solid #8B5CF6;
  background: #FAF9FF;
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.12);
  transform: scale(1.02);
}

.lp2-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.lp2-price-badge-purple {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
}

.lp2-price-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0F1117;
  margin-bottom: 6px;
}

.lp2-price-target {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.45;
}

.lp2-price-val-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 20px 0;
}

.lp2-price-val {
  font-size: 2.8rem;
  font-weight: 900;
  color: #0F1117;
}

.lp2-price-period {
  font-size: 0.95rem;
  color: #6B7280;
  font-weight: 600;
}

.lp2-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp2-price-feat-item {
  font-size: 1.05rem;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.lp2-price-feat-item i {
  color: #10B981;
  margin-top: 4px;
  flex-shrink: 0;
}

.lp2-price-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
}

.lp2-pbtn-primary {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.lp2-pbtn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.5);
}

.lp2-pbtn-outline {
  background: #FFFFFF;
  color: #0F1117;
  border: 1.5px solid #D1D5DB;
}

.lp2-pbtn-outline:hover {
  background: #F9FAFB;
  border-color: #4B5563;
  transform: translateY(-2px);
}

/* Pricing Feature Accordion ("Ver todo lo incluido") */
.lp6-pricing-accordion {
  margin: -10px 0 24px;
}

.lp6-pricing-toggle {
  font-size: 0.88rem;
  font-weight: 700;
  color: #4B5563;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
  padding: 6px 0;
}

.lp6-pricing-toggle::-webkit-details-marker {
  display: none;
}

.lp6-pricing-toggle:hover {
  color: #EA580C;
}

.lp6-pricing-chevron {
  font-size: 0.78rem;
  transition: transform 0.25s ease;
}

.lp6-pricing-accordion[open] .lp6-pricing-chevron {
  transform: rotate(180deg);
  color: #EA580C;
}

.lp6-pricing-extra-features {
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  padding-top: 12px !important;
  border-top: 1px dashed #E5E7EB;
}

.lp2-pbtn-purple {
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}

.lp2-pbtn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(139, 92, 246, 0.5);
}

/* ── 12. FAQ SECTION ─────────────────────────────────────────────────── */
.lp2-section-faq {
  padding: 85px 0;
  background: #F8F9FA;
  position: relative;
  border-top: 1px solid #E5E7EB;
}

.lp2-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp2-faq-item {
  background: #FFFFFF;
  border: 1px solid #ECECEF;
  border-radius: 16px;
  box-shadow: var(--lp-shadow-card);
  overflow: hidden;
  transition: all 0.25s ease;
}

.lp2-faq-item:hover {
  border-color: #D1D5DB;
}

.lp2-faq-question {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: #0F1117;
  font-size: 1.15rem;
  font-weight: 700;
  user-select: none;
}

.lp2-faq-icon {
  color: #4B5563;
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.lp2-faq-item.open .lp2-faq-icon {
  transform: rotate(180deg);
  color: #F97316;
}

.lp2-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 1.05rem;
  color: #4B5563;
  line-height: 1.6;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.lp2-faq-item.open .lp2-faq-answer {
  padding: 0 24px 22px;
}

/* ── 13. CTA FINAL (STRATEGIC DARK 2) ────────────────────────────────── */
.lp2-final-cta {
  padding: 95px 0;
  background: #0B0C12;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  text-align: center;
}

.lp2-final-cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: radial-gradient(circle at 50% 30%, rgba(249, 115, 22, 0.15) 0%, transparent 65%), #11131C;
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .lp2-final-cta-card {
    padding: 40px 24px;
  }
}

.lp2-final-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.lp2-final-sub {
  font-size: clamp(1.15rem, 1.4vw, 1.3rem);
  color: #E5E7EB;
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto 36px;
}

.lp2-final-btn {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  padding: 18px 36px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.45);
  transition: all 0.25s ease;
}

.lp2-final-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(249, 115, 22, 0.6);
}

/* ── 14. FOOTER ──────────────────────────────────────────────────────── */
.lp2-footer {
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
  padding: 40px 0;
}

.lp2-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.lp2-footer .lp2-logo-text {
  color: #0F1117;
}

.lp2-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.lp2-footer-links a {
  color: #6B7280;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lp2-footer-links a:hover {
  color: #F97316;
}

.lp2-footer-copy {
  color: #6B7280;
  font-size: 0.88rem;
  text-align: center;
  border-top: 1px solid #F3F4F6;
  padding-top: 20px;
}

/* ── 15. SCROLL REVEAL & ANIMATIONS ENGINE ───────────────────────────── */
.lp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--lp-ease-premium), transform 0.6s var(--lp-ease-premium);
  will-change: opacity, transform;
}

.lp-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Children */
.lp-stagger > *:nth-child(1) { transition-delay: 0ms; }
.lp-stagger > *:nth-child(2) { transition-delay: 80ms; }
.lp-stagger > *:nth-child(3) { transition-delay: 160ms; }
.lp-stagger > *:nth-child(4) { transition-delay: 240ms; }
.lp-stagger > *:nth-child(5) { transition-delay: 320ms; }
.lp-stagger > *:nth-child(6) { transition-delay: 400ms; }

/* Micro-interaction for all cards */
.lp-card-hover {
  transition: transform 0.25s var(--lp-ease-premium), box-shadow 0.25s var(--lp-ease-premium);
}

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

/* Smooth anchor offset for sticky header */
section[id] {
  scroll-margin-top: 84px;
}

/* ── Hero Stagger Sequence (< 800ms) ─────────────────────────────────── */
@keyframes lpHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lpHeroScaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lp2-hero-badge {
  animation: lpHeroFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0ms both;
}

.lp2-hero-title {
  animation: lpHeroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 100ms both;
}

.lp2-hero-subtitle {
  animation: lpHeroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 200ms both;
}

.lp2-hero-ctas {
  animation: lpHeroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 300ms both;
}

.lp6-hero-mini-tests {
  animation: lpHeroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 380ms both;
}

.lp2-hero-lion-wrapper {
  animation: lpHeroScaleIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

/* ── Section Narrative Motion ────────────────────────────────────────── */
/* Qué Publicar: Card convergence & highlight */
.lp6-decision-card {
  transition: transform 0.4s var(--lp-ease-premium), box-shadow 0.4s var(--lp-ease-premium), border-color 0.4s ease;
}

.lp-reveal.is-revealed .lp6-decision-card {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 16px 44px rgba(249, 115, 22, 0.08);
}

/* Ciclo: Focal Node DECIDIR pulse & glow */
.lp6-cycle-step-node.focus-node {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lp-reveal.is-revealed .lp6-cycle-step-node.focus-node {
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.25);
}

/* ADN: Pills convergence & hover highlight */
.lp6-adn-pill {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.lp6-adn-pill:hover {
  transform: translateY(-3px) scale(1.03);
  background: #FFFFFF;
  border-color: #F97316;
  color: #F97316;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.12);
}

/* Button & Link Microinteractions */
.lp2-hero-btn-creator i,
.lp2-pbtn-primary i,
.lp2-final-btn i,
.lp6-action-btn-pill i {
  transition: transform 0.22s ease;
}

.lp2-hero-btn-creator:hover i,
.lp2-pbtn-primary:hover i,
.lp2-final-btn:hover i,
.lp6-action-btn-pill:hover i {
  transform: translateX(3px);
}

/* FAQ Accordion icon rotation & smooth transition */
.lp2-faq-icon {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp2-faq-item.open .lp2-faq-icon {
  transform: rotate(180deg);
  color: #F97316;
}

.lp2-faq-answer {
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

/* Accessibility: Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .lp-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .lp2-hero-badge,
  .lp2-hero-title,
  .lp2-hero-subtitle,
  .lp2-hero-ctas,
  .lp6-hero-mini-tests,
  .lp2-hero-lion-wrapper {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
