/* ==========================================================================
   XORBIT 360 - COMPONENTS & INTERACTIVE MODULES (ESTILO RESPOND.IO)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ANNOUNCEMENT TOP BAR
   -------------------------------------------------------------------------- */
.top-announcement {
  background: rgba(13, 17, 29, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  font-size: 0.85rem;
  text-align: center;
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.top-announcement .badge-pill {
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #c084fc;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.top-announcement a {
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.top-announcement a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   2. NAVBAR
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(7, 9, 14, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-right: 36px;
  flex-shrink: 0;
}

.brand-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #cbd5e1;
  font-weight: 500;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link svg.chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link svg.chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 20, 35, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  pointer-events: none;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.dropdown-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  flex-shrink: 0;
}

.dropdown-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #f8fafc;
}

.dropdown-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.lang-selector:hover {
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: #ffffff;
  padding: 6px;
}

/* --------------------------------------------------------------------------
   3. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  text-align: center;
}

.hero-glow-bg {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.35) 0%, rgba(139, 92, 246, 0.2) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: #e2e8f0;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-pill-badge .pill-sparkle {
  color: #f59e0b;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-description {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #94a3b8;
  max-width: 820px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.rating-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

/* --------------------------------------------------------------------------
   4. INTERACTIVE CRM MOCKUP (REPLICA ESTILO RESPOND.IO SCREENSHOT)
   -------------------------------------------------------------------------- */
.crm-showcase-wrapper {
  margin-top: 50px;
  position: relative;
  z-index: 5;
}

.crm-mockup-window {
  background: #0d121f;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 70px -15px rgba(0, 0, 0, 0.9), 0 0 50px rgba(59, 130, 246, 0.15);
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 300px 1fr 280px;
  height: 640px;
  position: relative;
}

/* Column 1: App Sidebar & Folders */
.crm-col-nav {
  background: #090c15;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

.crm-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
}

.crm-user-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f8fafc;
}

.user-avatar-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
}

.crm-nav-group-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  padding: 0 8px 6px;
  font-weight: 700;
}

.crm-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.crm-nav-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  width: 100%;
  text-align: left;
}

.crm-nav-btn:hover, .crm-nav-btn.active {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.crm-nav-btn.active {
  border-left: 3px solid var(--brand-primary);
  background: rgba(59, 130, 246, 0.12);
}

.crm-nav-btn .badge-count {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
}

.crm-stage-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

/* Column 2: Chat Conversations List */
.crm-col-chats {
  background: #0d111d;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.crm-chats-header {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crm-chats-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crm-chats-title-row h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.crm-channel-filter {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.channel-pill-btn {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.channel-pill-btn.active, .channel-pill-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.crm-conversation-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.crm-chat-item {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  gap: 10px;
  cursor: pointer;
  transition: background var(--transition-fast);
  position: relative;
}

.crm-chat-item:hover, .crm-chat-item.active {
  background: rgba(255, 255, 255, 0.05);
}

.crm-chat-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand-primary);
}

.chat-item-avatar {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.chat-channel-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  border: 2px solid #0d111d;
  color: white;
}

.chat-channel-badge.ig { background: #e1306c; }
.chat-channel-badge.tt { background: #000000; }
.chat-channel-badge.voice { background: #8b5cf6; }

.chat-item-body {
  flex: 1;
  min-width: 0;
}

.chat-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.chat-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f8fafc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-item-time {
  font-size: 0.7rem;
  color: var(--text-dim);
}

.chat-item-preview {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.chat-tag-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

/* Column 3: Active Chat Main Thread */
.crm-col-thread {
  background: #101524;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.crm-thread-header {
  padding: 12px 20px;
  background: rgba(13, 18, 31, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.thread-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.thread-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.crm-messages-container {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.msg-date-divider {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-dim);
  position: relative;
  margin: 10px 0;
}

.msg-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.86rem;
  line-height: 1.45;
  position: relative;
}

.msg-bubble.client {
  align-self: flex-start;
  background: #1e293b;
  color: #f8fafc;
  border-bottom-left-radius: 4px;
}

.msg-bubble.ai-bot {
  align-self: flex-end;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  color: #ffffff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.ai-badge-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #bfdbfe;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.msg-bubble.order-card {
  align-self: flex-end;
  background: #0f172a;
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #f8fafc;
  width: 320px;
  border-radius: var(--radius-md);
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #38bdf8;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.crm-thread-input-area {
  padding: 14px 18px;
  background: rgba(13, 18, 31, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.crm-ai-assist-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ai-assist-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #c084fc;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
}

.ai-assist-chip:hover {
  background: rgba(139, 92, 246, 0.25);
}

.crm-input-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #090d16;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 8px 14px;
}

.crm-input-box input {
  flex: 1;
  color: #ffffff;
  font-size: 0.85rem;
}

.crm-input-box input::placeholder {
  color: var(--text-dim);
}

/* Column 4: Contact & CRM Details */
.crm-col-details {
  background: #0b0f1a;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}

.contact-card-top {
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-big-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gradient-brand);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.contact-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.contact-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.detail-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 8px;
}

.detail-prop-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.prop-key { color: var(--text-muted); }
.prop-val { color: #f8fafc; font-weight: 600; }

/* Interactive Floating Hero Overlay Modal (Explora el poder) */
.crm-modal-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(15, 20, 36, 0.92);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(59, 130, 246, 0.3);
  max-width: 480px;
  width: 90%;
  z-index: 10;
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.crm-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -45%) scale(0.95);
}

.modal-hub-graphic {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
}

.hub-center-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.7);
  position: relative;
  z-index: 2;
}

.hub-satellites {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  opacity: 0.85;
}

.sat-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.crm-modal-overlay h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.crm-modal-overlay p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   5. LOGOS CLOUD & SOCIAL PROOF STRIP
   -------------------------------------------------------------------------- */
.social-proof-strip {
  padding: 60px 0 30px;
  text-align: center;
}

.social-proof-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.logos-marquee-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.65;
}

.brand-logo-item {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.brand-logo-item:hover {
  color: #ffffff;
  opacity: 1;
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   6. STRATEGY PILLARS (CAPTURA, CONVIERTE, RETÉN)
   -------------------------------------------------------------------------- */
.pillars-section {
  padding: 100px 0 80px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.pillars-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar-tab-card {
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
}

.pillar-tab-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.pillar-tab-card.active {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.pillar-tab-card.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-primary);
  border-top-left-radius: var(--radius-md);
  border-bottom-left-radius: var(--radius-md);
}

.pillar-tab-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 6px;
}

.pillar-tab-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pillar Visual Dynamic Graphic */
.pillar-visual-box {
  background: #0d1222;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.routing-flow-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.stacked-leads-container {
  position: relative;
  width: 280px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lead-stacked-card {
  position: absolute;
  width: 250px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #cbd5e1;
}

.lead-stacked-card.card-emily {
  top: 0;
  transform: scale(0.88);
  opacity: 0.5;
  background: #1e293b;
}

.lead-stacked-card.card-robert {
  top: 20px;
  transform: scale(0.94);
  opacity: 0.75;
  background: #27354a;
}

.lead-stacked-card.card-jenny {
  top: 42px;
  width: 280px;
  background: #f8fafc;
  color: #0f172a;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.card-jenny .user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-jenny .avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #0f172a;
}

.card-jenny .msg-preview {
  font-size: 0.76rem;
  color: #64748b;
}

.card-jenny .wa-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.dashed-line-down {
  width: 2px;
  height: 32px;
  border-left: 2px dashed #94a3b8;
  opacity: 0.6;
}

.route-btn-pill {
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.15);
}

.agents-row-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
  z-index: 3;
}

.agent-photo-bubble {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.agent-photo-bubble.blue {
  background: #1d4ed8;
  border: 3px solid #3b82f6;
}

.agent-photo-bubble.yellow {
  background: #d97706;
  border: 3px solid #fbbf24;
}

.agent-photo-bubble.purple {
  background: #6d28d9;
  border: 3px solid #c084fc;
}

.pillar-radial-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.35) 0%, rgba(139, 92, 246, 0.25) 45%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   SHOWCASE DE LLAMADAS Y CORREOS EN UN SOLO HILO (IMAGEN 5 RESPOND.IO)
   -------------------------------------------------------------------------- */
.omnichannel-call-showcase {
  background: #090d18;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  box-shadow: 0 25px 70px -15px rgba(0, 0, 0, 0.9);
  margin-top: 50px;
}

.call-showcase-visual {
  position: relative;
  min-height: 440px;
  background: radial-gradient(circle at 40% 50%, rgba(37, 99, 235, 0.35) 0%, rgba(15, 23, 42, 0.95) 75%), #070a12;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.call-person-mock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 40px;
  opacity: 0.35;
  font-size: 9rem;
}

.call-floating-card-widget {
  position: relative;
  z-index: 4;
  width: 320px;
}

.call-active-box {
  background: #ffffff;
  color: #0f172a;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  margin-bottom: 8px;
}

.call-active-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
}

.call-tag-badge {
  background: #e0f2fe;
  color: #0284c7;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
}

.call-user-name {
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0f172a;
}

.call-user-phone {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 12px;
}

.call-btn-end {
  width: 100%;
  background: #ef4444;
  color: #ffffff;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.call-channels-dropdown {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.channel-drop-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: #cbd5e1;
  transition: background var(--transition-fast);
}

.channel-drop-row:hover, .channel-drop-row.active {
  background: rgba(59, 130, 246, 0.2);
  color: #ffffff;
}

.channel-icon-pill {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.call-showcase-text {
  padding: 48px 40px;
}

.call-showcase-text .section-tag {
  margin-bottom: 14px;
}

.call-showcase-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.call-showcase-text p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
  position: absolute;
  bottom: -6px;
  left: -5px;
  font-size: 0.65rem;
  color: #60a5fa;
}

.flow-agents-row {
  display: flex;
  gap: 16px;
}

.agent-bubble-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
  background-size: cover;
  background-position: center;
}

/* --------------------------------------------------------------------------
   7. CORE ECOSYSTEM MODULES GRID (7 HERRAMIENTAS)
   -------------------------------------------------------------------------- */
.ecosystem-section {
  padding: 100px 0;
  position: relative;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.2);
}

.module-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(29, 38, 66, 0.8) 0%, rgba(13, 18, 33, 0.95) 100%);
  border-color: rgba(139, 92, 246, 0.35);
}

.module-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.icon-blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.icon-purple { background: rgba(139, 92, 246, 0.15); color: #c084fc; }
.icon-emerald { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.icon-rose { background: rgba(244, 63, 94, 0.15); color: #fb7185; }
.icon-amber { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }

.module-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.module-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 12px;
}

.module-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 22px;
}

.module-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.submodule-tag {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

.module-footer-action {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.module-link-btn {
  font-size: 0.88rem;
  font-weight: 600;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.module-link-btn:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   8. VOICE AGENT & AI PHONE CALL SIMULATOR
   -------------------------------------------------------------------------- */
.voice-section {
  padding: 100px 0;
  background: radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
}

.voice-simulator-card {
  background: #0d1222;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(139, 92, 246, 0.2);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.voice-call-display {
  background: #080b14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.call-avatar-pulse {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  position: relative;
}

.waveforms-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 48px;
  width: 100%;
}

.wave-bar {
  width: 4px;
  height: 12px;
  background: #8b5cf6;
  border-radius: 2px;
  transition: height 0.1s ease;
}

.voice-call-display.active .wave-bar {
  animation: waveAnim 1s ease-in-out infinite alternate;
}

.voice-call-display.active .wave-bar:nth-child(2n) { animation-delay: 0.15s; }
.voice-call-display.active .wave-bar:nth-child(3n) { animation-delay: 0.3s; }
.voice-call-display.active .wave-bar:nth-child(4n) { animation-delay: 0.45s; }

@keyframes waveAnim {
  0% { height: 8px; background: #3b82f6; }
  100% { height: 42px; background: #d946ef; }
}

.call-control-btns {
  display: flex;
  gap: 14px;
}

.voice-transcript-log {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 8px;
}

.transcript-entry {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
}

.transcript-entry.agent {
  border-left: 3px solid #8b5cf6;
}

.transcript-entry.client {
  border-left: 3px solid #10b981;
}

/* --------------------------------------------------------------------------
   9. LIVE SELLING & STREAMING INTERACTIVE SIMULATOR
   -------------------------------------------------------------------------- */
.live-selling-preview {
  background: #080b15;
  border: 1px solid rgba(244, 63, 94, 0.3);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.live-video-side {
  position: relative;
  background: #020408;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.live-badge-top {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f43f5e;
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.78rem;
  width: fit-content;
}

.pinned-product-card {
  background: rgba(15, 20, 36, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.live-chat-stream-side {
  background: #0e1322;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.live-comments-stream {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 300px;
}

.live-comment-bubble {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment-highlight {
  color: #34d399;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   10. ROI & GROWTH CALCULATOR
   -------------------------------------------------------------------------- */
.roi-section {
  padding: 90px 0;
}

.roi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-neon-blue);
}

/* --------------------------------------------------------------------------
   SECCIÓN MULTISECTORIAL (NICHOS DE NEGOCIO)
   -------------------------------------------------------------------------- */
.niche-selector-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
}

.niche-dropdown-sim {
  background: #090d18;
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 24px;
}

.niche-pills-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.niche-pill-btn {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.niche-pill-btn:hover, .niche-pill-btn.active {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

.niche-pill-btn.active {
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.niche-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
}

.niche-prompt-box {
  background: #060911;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.niche-prompt-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.niche-rules-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.86rem;
  color: #cbd5e1;
}

.niche-rules-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.niche-rules-list li span.bullet {
  color: #10b981;
  font-weight: 700;
}

.pos-card-accent {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.calc-slider-group label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.calc-slider-group input[type="range"] {
  width: 100%;
  accent-color: var(--brand-primary);
  height: 6px;
  background: #1e293b;
  border-radius: 3px;
  cursor: pointer;
}

.roi-results-display {
  background: #090d18;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.roi-metric-big {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
}

.roi-metric-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. PRICING SECTION
   -------------------------------------------------------------------------- */
.pricing-section {
  padding: 100px 0;
}

.pricing-billing-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
  font-weight: 600;
  font-size: 0.95rem;
}

.switch-pill {
  position: relative;
  width: 52px;
  height: 28px;
  background: #1e293b;
  border-radius: var(--radius-full);
  cursor: pointer;
  padding: 3px;
}

.switch-pill .switch-handle {
  width: 22px;
  height: 22px;
  background: var(--brand-primary);
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.switch-pill.active .switch-handle {
  transform: translateX(24px);
  background: var(--brand-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.channel-addon-box {
  background: rgba(139, 92, 246, 0.08);
  border: 1px dashed rgba(139, 92, 246, 0.4);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.addon-badge {
  background: #8b5cf6;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.integration-badge-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-fast);
}

.integration-badge-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
}

.integration-badge-card .int-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
  position: relative;
}

.pricing-card.popular {
  border-color: rgba(59, 130, 246, 0.6);
  background: linear-gradient(180deg, rgba(29, 39, 70, 0.9) 0%, rgba(13, 17, 30, 0.95) 100%);
  box-shadow: 0 15px 45px -10px rgba(59, 130, 246, 0.35);
  transform: scale(1.03);
}

.pricing-pop-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: white;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.pricing-plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
}

.price-currency { font-size: 1.5rem; font-weight: 700; color: #f8fafc; }
.price-amount { font-size: 3rem; font-weight: 800; color: #ffffff; font-family: var(--font-heading); }
.price-period { font-size: 0.88rem; color: var(--text-dim); }

.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.pricing-feat-item svg {
  color: #10b981;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   12. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 80px 0;
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question-btn {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f8fafc;
  text-align: left;
}

.faq-icon-toggle {
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-icon-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
  padding: 0 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #05070c;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 30px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-col p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 320px;
}

.footer-col-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-bottom-bar {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   14. FLOATING WIDGET & LEAD CAPTURE MODAL
   -------------------------------------------------------------------------- */
.floating-chat-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.6);
  z-index: 999;
  cursor: pointer;
  transition: transform var(--transition-bounce);
}

.floating-chat-trigger:hover {
  transform: scale(1.1);
}

/* Lead Modal Popup */
.lead-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.lead-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.lead-modal-card {
  background: #0d121f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 36px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-close-btn:hover {
  color: #ffffff;
}

/* ==========================================================================
   MODAL DE CHECKOUT BOLD (RECARGAS DE PAQUETES IA & CAPTURA DE CLIENTE)
   ========================================================================== */
.bold-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 15, 0.88);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  padding: 16px;
  overflow-y: auto;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.bold-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.bold-checkout-card {
  background: linear-gradient(145deg, #0d1322 0%, #080d1a 100%);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 540px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 35px rgba(139, 92, 246, 0.15);
  max-height: 90vh;
  overflow-y: auto;
}

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

.bold-badge-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bold-summary-box {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
}

.bold-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 8px;
}

.bold-summary-row.total {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 10px;
  margin-top: 10px;
  margin-bottom: 0;
}

.bold-form-group {
  margin-bottom: 14px;
}

.bold-form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.bold-input,
.bold-select {
  width: 100%;
  padding: 10px 14px;
  background: #060911;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bold-input:focus,
.bold-select:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
}

.bold-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 500px) {
  .bold-input-grid {
    grid-template-columns: 1fr;
  }
}

.bold-btn-pay {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(270deg, #ff2947 13.86%, #121e6c 83.33%);
  border: none;
  border-radius: 32px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(255, 41, 71, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  margin-top: 10px;
}

.bold-btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 41, 71, 0.5);
}

.bold-btn-pay:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.bold-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: boldSpin 0.7s linear infinite;
  display: inline-block;
}

@keyframes boldSpin {
  to { transform: rotate(360deg); }
}

.bold-payment-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #64748b;
}

.bold-pill-badge {
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sandbox-banner {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 14px;
  text-align: center;
}

