/* ==========================================================================
   EnterSoft MultiGateway — Modern Landing Page Design System (landing.css)
   ========================================================================== */

:root {
  --lp-bg-dark: #090d16;
  --lp-bg-surface: #0f172a;
  --lp-bg-surface-elevated: #1e293b;
  --lp-bg-light: #f8fafc;
  --lp-bg-card-light: #ffffff;
  
  --lp-primary: #4f46e5;
  --lp-primary-hover: #4338ca;
  --lp-primary-light: #818cf8;
  --lp-primary-glow: rgba(79, 70, 229, 0.25);
  
  --lp-sky: #0284c7;
  --lp-sky-light: #38bdf8;
  --lp-sky-glow: rgba(56, 189, 248, 0.25);
  
  --lp-whatsapp: #10b981;
  --lp-whatsapp-hover: #059669;
  --lp-whatsapp-glow: rgba(16, 185, 129, 0.25);
  
  --lp-connect: #e1251b;
  --lp-connect-glow: rgba(225, 37, 27, 0.25);
  
  --lp-telegram: #0088cc;
  --lp-telegram-glow: rgba(0, 136, 204, 0.25);
  
  --lp-bitrix: #0284c7;
  --lp-kaspi: #f14635;
  
  --lp-text-title: #0f172a;
  --lp-text-body: #334155;
  --lp-text-muted: #64748b;
  --lp-text-light: #ffffff;
  --lp-text-light-muted: #94a3b8;
  
  --lp-border-light: #e2e8f0;
  --lp-border-dark: rgba(255, 255, 255, 0.1);
  --lp-border-glow: rgba(99, 102, 241, 0.3);
  
  --lp-radius-sm: 8px;
  --lp-radius-md: 12px;
  --lp-radius-lg: 18px;
  --lp-radius-xl: 24px;
  --lp-radius-pill: 9999px;
  
  --lp-shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.05);
  --lp-shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  --lp-shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  
  --lp-font-heading: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --lp-font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Base resets & typography for landing */
.lp-landing {
  font-family: var(--lp-font-body);
  color: var(--lp-text-body);
  background-color: var(--lp-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

.lp-landing h1,
.lp-landing h2,
.lp-landing h3,
.lp-landing h4,
.lp-landing h5,
.lp-landing h6 {
  font-family: var(--lp-font-heading);
  color: var(--lp-text-title);
  font-weight: 700;
  line-height: 1.25;
}

/* Explicit high-contrast rules for dark sections */
.lp-landing .lp-hero-section h1,
.lp-landing .lp-hero-section h2,
.lp-landing .lp-hero-section h3,
.lp-landing .lp-hero-section h4,
.lp-landing .lp-hero-title,
.lp-landing .lp-pipeline-section h2,
.lp-landing .lp-pipeline-section h3,
.lp-landing .lp-pipeline-section h4,
.lp-landing .lp-cta-banner h2,
.lp-landing .lp-cta-banner h3,
.lp-landing .lp-cta-banner h4,
.lp-landing .lp-contact-box-info h4,
.lp-landing .lp-footer h3,
.lp-landing .lp-footer h4 {
  color: #ffffff !important;
}

.lp-landing a {
  text-decoration: none;
  transition: all 0.2s ease;
}

.lp-container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   1. Header (Sticky Glassmorphic Nav)
   ========================================================================== */
.lp-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  transition: all 0.3s ease;
}

.lp-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 70px;
}

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

.lp-logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4f46e5 0%, #0284c7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
  flex-shrink: 0;
}

.lp-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-logo-title {
  font-family: var(--lp-font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--lp-text-title);
  letter-spacing: -0.02em;
  line-height: 1.15;
  white-space: nowrap;
}

.lp-logo-subtitle {
  font-size: 9.5px;
  color: var(--lp-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-top: 2px;
  white-space: nowrap;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 1;
}

.lp-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.lp-nav a:hover {
  color: var(--lp-primary);
}

.lp-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lp-primary);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.lp-nav a:hover::after {
  width: 100%;
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--lp-radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  font-family: var(--lp-font-heading);
}

.lp-btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: var(--lp-radius-sm);
}

.lp-btn-lg {
  padding: 13px 28px;
  font-size: 15px;
  border-radius: var(--lp-radius-md);
}

.lp-btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.lp-btn-primary:hover {
  background: linear-gradient(135deg, #4338ca 0%, #2563eb 100%);
  box-shadow: 0 8px 22px rgba(79, 70, 229, 0.4);
  transform: translateY(-1px);
}

.lp-btn-secondary {
  background: #ffffff;
  color: var(--lp-text-title) !important;
  border: 1px solid var(--lp-border-light);
  box-shadow: var(--lp-shadow-sm);
}

.lp-btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.lp-btn-ghost {
  background: transparent;
  color: var(--lp-text-body);
}

.lp-btn-ghost:hover {
  background: rgba(15, 23, 42, 0.05);
  color: var(--lp-text-title);
}

.lp-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--lp-text-title);
  cursor: pointer;
  padding: 4px;
}

/* ==========================================================================
   2. Hero Section (High Impact Contrast & Spacing)
   ========================================================================== */
.lp-hero-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.28) 0%, transparent 45%),
              radial-gradient(circle at 90% 30%, rgba(2, 132, 199, 0.25) 0%, transparent 45%),
              radial-gradient(circle at 50% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
              #090d16;
  color: #ffffff;
  padding: 60px 0 76px;
  overflow: hidden;
  border-bottom: 1px solid var(--lp-border-dark);
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 40px;
  align-items: center;
}

.lp-hero-content {
  min-width: 0;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 70, 229, 0.18);
  border: 1px solid rgba(129, 140, 248, 0.35);
  color: #c7d2fe;
  padding: 6px 14px;
  border-radius: var(--lp-radius-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.lp-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: lpPulse 2s infinite;
  flex-shrink: 0;
}

@keyframes lpPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.lp-hero-title,
.lp-landing .lp-hero-title,
.lp-hero-section h1 {
  font-size: clamp(30px, 3.4vw, 42px) !important;
  color: #ffffff !important;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.22 !important;
  font-weight: 800;
}

.lp-gradient-text {
  background: linear-gradient(135deg, #a5b4fc 0%, #38bdf8 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.lp-hero-desc {
  font-size: 16px;
  color: #cbd5e1 !important;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 580px;
}

.lp-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.lp-hero-btn-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-hero-microcopy {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: #94a3b8;
  flex-wrap: wrap;
}

.lp-hero-microcopy span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-hero-microcopy i {
  color: #10b981;
}

.lp-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: var(--lp-radius-sm);
  font-size: 12px;
  color: #cbd5e1;
  white-space: nowrap;
}

.lp-hero-chip i {
  font-size: 13px;
}

/* ==========================================================================
   Hero Mockup Window & Simulator
   ========================================================================== */
.lp-mockup-wrapper {
  position: relative;
  min-width: 0;
}

.lp-mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, rgba(2, 132, 199, 0.12) 45%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.lp-sim-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.lp-sim-tab-btn {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
  padding: 8px 14px;
  border-radius: var(--lp-radius-sm);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s ease;
  font-family: var(--lp-font-heading);
  white-space: nowrap;
}

.lp-sim-tab-btn.active {
  background: rgba(79, 70, 229, 0.3);
  border-color: #818cf8;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(79, 70, 229, 0.4);
}

.lp-mockup-window {
  position: relative;
  z-index: 2;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--lp-radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.lp-mockup-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-mockup-dots {
  display: flex;
  gap: 6px;
  margin-right: 12px;
}

.lp-mockup-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.lp-dot-red { background: #ef4444; }
.lp-dot-yellow { background: #f59e0b; }
.lp-dot-green { background: #10b981; }

.lp-mockup-title {
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-mockup-body {
  padding: 16px;
}

.lp-bridge-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 8px 12px;
  border-radius: var(--lp-radius-sm);
  margin-bottom: 12px;
}

.lp-bridge-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #34d399;
}

.lp-bridge-arrow {
  color: #94a3b8;
  font-size: 13px;
  transition: all 0.3s ease;
}

.lp-bridge-arrow.active-glow {
  color: #38bdf8;
  transform: scale(1.3);
  text-shadow: 0 0 10px #38bdf8;
}

.lp-bridge-latency {
  font-size: 11px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-bridge-latency i { color: #f59e0b; }

/* Chat Simulator Stream */
.lp-chat-container {
  min-height: 320px;
  max-height: 350px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 6px 14px 2px;
  scroll-behavior: smooth;
}

.lp-chat-container::-webkit-scrollbar {
  width: 4px;
}
.lp-chat-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.chat-bubble {
  position: relative;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
  max-width: 88%;
  animation: fadeIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
  word-break: break-word;
}

.chat-bubble.client.whatsapp-style {
  align-self: flex-start;
  background: #064e3b;
  color: #ecfdf5;
  border-left: 3px solid #10b981;
  border-bottom-left-radius: 2px;
}

.chat-bubble.client.connect {
  align-self: flex-start;
  background: #450a0a;
  color: #fef2f2;
  border-left: 3px solid #ef4444;
  border-bottom-left-radius: 2px;
}

.chat-bubble.operator.bitrix-style,
.chat-bubble.operator {
  align-self: flex-end;
  background: #1e3a8a;
  color: #eff6ff;
  border-right: 3px solid #38bdf8;
  border-bottom-right-radius: 2px;
}

.chat-system-event {
  align-self: center;
  background: rgba(79, 70, 229, 0.22);
  border: 1px dashed rgba(129, 140, 248, 0.5);
  color: #c7d2fe;
  font-size: 11.5px;
  padding: 6px 12px;
  border-radius: var(--lp-radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: center;
  max-width: 94%;
}

.bubble-sender {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.bubble-file, .bubble-audio, .bubble-image {
  margin-top: 6px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.msg-meta-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.msg-double-tick {
  color: #38bdf8;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #cbd5e1;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* ==========================================================================
   3. Trust Bar / Metrics
   ========================================================================== */
.lp-trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--lp-border-light);
  padding: 28px 0;
}

.lp-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.lp-metric-card {
  text-align: center;
  padding: 16px 12px;
  border-radius: var(--lp-radius-md);
  background: #f8fafc;
  border: 1px solid var(--lp-border-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
}

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

.lp-metric-val {
  font-family: var(--lp-font-heading);
  font-size: clamp(26px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--lp-primary);
  line-height: 1;
  margin-bottom: 6px;
  white-space: nowrap;
}

.lp-metric-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--lp-text-title);
  margin-bottom: 2px;
  white-space: nowrap;
}

.lp-metric-sub {
  font-size: 11.5px;
  color: var(--lp-text-muted);
  white-space: nowrap;
}

/* ==========================================================================
   Section Title Standards
   ========================================================================== */
.lp-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.lp-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--lp-radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  font-family: var(--lp-font-heading);
}

.lp-tag-primary { background: rgba(79, 70, 229, 0.1); color: var(--lp-primary); }
.lp-tag-emerald { background: rgba(16, 185, 129, 0.1); color: #059669; }
.lp-tag-sky { background: rgba(2, 132, 199, 0.1); color: #0284c7; }
.lp-tag-amber { background: rgba(245, 158, 11, 0.1); color: #d97706; }

.lp-section-title {
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.lp-section-sub {
  font-size: 15.5px;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   4. Section: Before vs After (Infographic Comparison)
   ========================================================================== */
.lp-comparison-section {
  padding: 84px 0;
  background: #f8fafc;
  position: relative;
}

/* 4.1 KPI Transformation Strip */
.lp-info-kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.lp-info-kpi-item {
  background: #ffffff;
  border: 1px solid var(--lp-border-light);
  border-radius: var(--lp-radius-lg);
  padding: 22px 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.lp-info-kpi-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.lp-info-kpi-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-text-muted);
  margin-bottom: 10px;
}

.lp-info-kpi-comparison {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.lp-kpi-old {
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 6px;
}

.lp-kpi-arrow {
  color: #64748b;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.lp-kpi-new {
  font-size: 16px;
  font-weight: 800;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: -0.2px;
}

.lp-info-kpi-meter {
  height: 6px;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}

.lp-meter-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.6s ease;
}

.lp-fill-emerald { background: linear-gradient(90deg, #34d399, #059669); }
.lp-fill-blue    { background: linear-gradient(90deg, #60a5fa, #2563eb); }
.lp-fill-indigo  { background: linear-gradient(90deg, #818cf8, #4f46e5); }
.lp-fill-purple  { background: linear-gradient(90deg, #c084fc, #9333ea); }

.lp-info-kpi-note {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-top: auto;
}

/* 4.2 Infographic Lanes Matrix */
.lp-info-lanes-matrix {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}

.lp-info-lane {
  background: #ffffff;
  border: 1px solid var(--lp-border-light);
  border-radius: var(--lp-radius-xl);
  padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.lp-info-lane:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
}

.lp-lane-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.lp-lane-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-text-title);
}

.lp-lane-cat i {
  color: var(--lp-primary);
  font-size: 17px;
}

.lp-lane-impact {
  font-size: 13px;
  font-weight: 600;
  color: #059669;
  background: rgba(16, 185, 129, 0.08);
  padding: 4px 12px;
  border-radius: 999px;
}

/* Lane Flow Grid: Before | Bridge | After */
.lp-lane-flow {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  align-items: center;
  gap: 16px;
}

.lp-lane-side {
  padding: 20px 22px;
  border-radius: var(--lp-radius-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lp-lane-side.before {
  background: #fef2f2;
  border: 1px solid #fee2e2;
}

.lp-lane-side.after {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
}

.lp-side-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.lp-lane-side.before .lp-side-tag {
  color: #dc2626;
}

.lp-lane-side.after .lp-side-tag {
  color: #16a34a;
}

.lp-side-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.lp-lane-side.before .lp-side-icon-box {
  background: #fee2e2;
  color: #ef4444;
}

.lp-lane-side.after .lp-side-icon-box {
  background: #d1fae5;
  color: #059669;
}

.lp-side-heading {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--lp-text-title);
  margin-bottom: 6px;
}

.lp-side-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.lp-side-metric {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.45;
  padding: 10px 12px;
  border-radius: 8px;
}

.lp-side-metric i {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-side-metric.danger {
  background: #ffffff;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.lp-side-metric.danger i {
  color: #dc2626;
}

.lp-side-metric.success {
  background: #ffffff;
  border: 1px solid #86efac;
  color: #166534;
}

.lp-side-metric.success i {
  color: #16a34a;
}

/* Center Transformation Bridge */
.lp-lane-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 4px;
}

.lp-bridge-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  margin-bottom: 8px;
}

.lp-bridge-logo-badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.lp-bridge-text {
  font-size: 11px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.lp-bridge-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.lp-bridge-action {
  font-size: 10.5px;
  font-weight: 600;
  color: #64748b;
  line-height: 1.25;
}

.lp-bridge-arrow {
  font-size: 18px;
  color: #3b82f6;
  animation: pulseArrow 2s infinite ease-in-out;
}

@keyframes pulseArrow {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(4px); opacity: 1; }
}

/* 4.3 Day-1 Timeline Infographic Card */
.lp-info-day1-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--lp-radius-xl);
  padding: 36px 32px;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  position: relative;
  overflow: hidden;
}

.lp-info-day1-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.lp-day1-header {
  margin-bottom: 32px;
  max-width: 720px;
}

.lp-day1-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.3);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.lp-day1-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 8px;
  line-height: 1.35;
}

.lp-day1-sub {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

.lp-day1-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.lp-day1-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 1;
}

.lp-day1-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.lp-step-time {
  font-size: 12px;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.lp-step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3b82f6;
  border: 3px solid #0f172a;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
  margin-bottom: 14px;
}

.lp-step-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  flex-grow: 1;
  transition: background 0.2s ease;
}

.lp-step-content:hover {
  background: rgba(255, 255, 255, 0.08);
}

.lp-step-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.lp-step-desc {
  font-size: 12.5px;
  color: #cbd5e1;
  line-height: 1.5;
}

/* ==========================================================================
   5. Section: Channels Showcase
   ========================================================================== */
.lp-channels-section {
  padding: 76px 0;
  background: #ffffff;
}

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

.lp-channel-card {
  padding: 32px 24px;
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border-light);
  background: #ffffff;
  box-shadow: var(--lp-shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.lp-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
  border-color: #cbd5e1;
}

.lp-channel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.lp-channel-wa::before { background: var(--lp-whatsapp); }
.lp-channel-connect::before { background: var(--lp-connect); }
.lp-channel-tg::before { background: var(--lp-telegram); }

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

.lp-channel-wa .lp-channel-icon-wrap { background: rgba(16, 185, 129, 0.12); color: var(--lp-whatsapp); }
.lp-channel-connect .lp-channel-icon-wrap { background: rgba(225, 37, 27, 0.1); }
.lp-channel-tg .lp-channel-icon-wrap { background: rgba(0, 136, 204, 0.12); color: var(--lp-telegram); }

.lp-channel-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}

.lp-channel-desc {
  font-size: 13.5px;
  color: var(--lp-text-body);
  margin-bottom: 18px;
  line-height: 1.5;
}

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

.lp-channel-features li {
  font-size: 13px;
  color: var(--lp-text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-channel-features i {
  color: #10b981;
  font-size: 14px;
  flex-shrink: 0;
}

.lp-channel-badge {
  margin-top: auto;
  padding: 6px 12px;
  border-radius: var(--lp-radius-pill);
  font-size: 11.5px;
  font-weight: 600;
  align-self: flex-start;
  background: #f1f5f9;
  color: #475569;
}

/* ==========================================================================
   6. Section: Data Flow Pipeline
   ========================================================================== */
.lp-pipeline-section {
  padding: 76px 0;
  background: radial-gradient(circle at 50% 30%, rgba(79, 70, 229, 0.18) 0%, transparent 60%), #090d16;
  color: #ffffff;
  border-top: 1px solid var(--lp-border-dark);
  border-bottom: 1px solid var(--lp-border-dark);
}

.lp-pipeline-section .lp-section-sub {
  color: #cbd5e1;
}

.lp-pipeline-grid {
  display: grid;
  grid-template-columns: 1fr auto 1.15fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 36px;
}

.lp-pipeline-node {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--lp-radius-xl);
  padding: 26px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  min-width: 0;
}

.lp-pipeline-node:hover {
  transform: translateY(-3px);
  border-color: rgba(129, 140, 248, 0.4);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.25);
}

.lp-node-primary {
  border-color: rgba(99, 102, 241, 0.6);
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.2) 0%, rgba(15, 23, 42, 0.98) 100%);
}

.lp-node-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
  flex-shrink: 0;
}

.lp-node-primary .lp-node-icon {
  background: linear-gradient(135deg, #4f46e5 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
}

.lp-pipeline-node h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.lp-pipeline-node p {
  color: #94a3b8;
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0;
}

.lp-node-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--lp-radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.lp-tag-blue { background: rgba(56, 189, 248, 0.15); color: #38bdf8; }
.lp-tag-purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; }
.lp-tag-green { background: rgba(52, 211, 153, 0.15); color: #34d399; }

.lp-pipeline-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
}

.lp-connector-line {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.2) 0%, #818cf8 50%, rgba(79, 70, 229, 0.2) 100%);
  position: relative;
  overflow: hidden;
}

.lp-connector-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 100%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
  animation: streamPass 1.8s infinite linear;
}

@keyframes streamPass {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

.lp-connector-badge {
  font-size: 10px;
  color: #818cf8;
  font-weight: 600;
  white-space: nowrap;
}

/* ==========================================================================
   7. Section: Bento Grid Use Cases
   ========================================================================== */
.lp-usecases-section {
  padding: 76px 0;
  background: #f8fafc;
}

.lp-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-bento-item {
  background: #ffffff;
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border-light);
  padding: 28px 24px;
  box-shadow: var(--lp-shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lp-bento-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-md);
  border-color: #cbd5e1;
}

.lp-bento-span-2 {
  grid-column: span 2;
}

.lp-bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.lp-bento-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.lp-bento-item p {
  font-size: 13.5px;
  color: var(--lp-text-body);
  line-height: 1.55;
  margin-bottom: 16px;
}

.lp-bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.lp-bento-tag {
  background: #f1f5f9;
  color: #475569;
  font-size: 11.5px;
  padding: 4px 9px;
  border-radius: var(--lp-radius-sm);
  font-weight: 500;
  white-space: nowrap;
}

/* ==========================================================================
   8. Section: Comparison Table
   ========================================================================== */
.lp-table-section {
  padding: 76px 0;
  background: #ffffff;
}

.lp-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--lp-border-light);
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-sm);
  -webkit-overflow-scrolling: touch;
}

.lp-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
  background: #ffffff;
}

.lp-table th, .lp-table td {
  padding: 16px 20px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--lp-border-light);
}

.lp-table th {
  background: #f8fafc;
  color: var(--lp-text-title);
  font-weight: 700;
  font-size: 14px;
}

.lp-table th.lp-highlight-col,
.lp-table td.lp-highlight-col {
  background: rgba(79, 70, 229, 0.04);
}

.lp-table th.lp-highlight-col {
  color: var(--lp-primary);
  border-top: 3px solid var(--lp-primary);
}

.lp-table tr:last-child td {
  border-bottom: none;
}

.lp-check-yes {
  color: #10b981;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.lp-check-no {
  color: #ef4444;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.8;
}

/* ==========================================================================
   9. Section: Interactive ROI Calculator
   ========================================================================== */
.lp-calc-section {
  padding: 84px 0;
  background: #f8fafc;
  position: relative;
}

.lp-calc-card {
  background: #ffffff;
  border-radius: var(--lp-radius-xl);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
  padding: 36px 34px;
  position: relative;
  overflow: hidden;
}

/* Preset Bar */
.lp-calc-preset-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid #f1f5f9;
  flex-wrap: wrap;
}

.lp-preset-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--lp-text-title);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-preset-label i {
  color: var(--lp-primary);
}

.lp-preset-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-preset-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: var(--lp-radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s ease;
}

.lp-preset-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #1e293b;
}

.lp-preset-btn.active {
  background: #eef2ff;
  border-color: #818cf8;
  color: #4338ca;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.18);
}

.lp-preset-btn i {
  font-size: 14px;
}

/* Grid layout */
.lp-calc-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.95fr;
  gap: 36px;
  align-items: stretch;
}

/* Left Controls */
.lp-calc-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-calc-slider-group {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: var(--lp-radius-lg);
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-calc-slider-group:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.lp-calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
}

.lp-calc-slider-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-calc-slider-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.icon-blue  { background: #e0e7ff; color: #4338ca; }
.icon-green { background: #dcfce7; color: #15803d; }
.icon-cyan  { background: #e0f2fe; color: #0369a1; }

.lp-calc-slider-name {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--lp-text-title);
  line-height: 1.3;
}

.lp-calc-slider-hint {
  display: block;
  font-size: 12px;
  color: var(--lp-text-muted);
  line-height: 1.3;
  margin-top: 2px;
}

.lp-calc-slider-badge {
  font-size: 14px;
  font-weight: 800;
  color: var(--lp-primary);
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.15);
  padding: 5px 14px;
  border-radius: var(--lp-radius-pill);
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.badge-green {
  color: #059669;
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
}

.badge-cyan {
  color: #0284c7;
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.2);
}

/* Custom Range Input with Gradient Track */
.lp-range-wrap {
  position: relative;
  padding: 4px 0;
}

.lp-range-input {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(to right, #4f46e5 0%, #3b82f6 10%, #e2e8f0 10%, #e2e8f0 100%);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: background 0.1s ease;
}

.lp-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #4f46e5;
  cursor: grab;
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lp-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.55);
}

.lp-range-input::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.15);
}

.lp-range-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
}

.lp-calc-method-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  margin-top: 14px;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px dashed #cbd5e1;
}

.lp-calc-method-note i {
  color: #3b82f6;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Right Column: Premium Dark Glassmorphic Dashboard */
.lp-calc-results {
  background: linear-gradient(145deg, #090e1a 0%, #172033 100%);
  color: #ffffff;
  border-radius: var(--lp-radius-xl);
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2), 0 0 30px rgba(59, 130, 246, 0.08);
  position: relative;
  overflow: hidden;
}

.lp-results-glow-bg {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.lp-results-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  position: relative;
  z-index: 2;
}

.lp-results-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #38bdf8;
}

.lp-results-title {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff !important;
}

/* Hero Savings Box */
.lp-hero-saving-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 18px;
  position: relative;
  z-index: 2;
}

.lp-saving-label {
  font-size: 12.5px;
  color: #94a3b8 !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.lp-saving-num-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.lp-saving-big-val {
  font-family: var(--lp-font-heading);
  font-size: 38px;
  font-weight: 900;
  color: #38bdf8 !important;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.lp-saving-badge-time {
  font-size: 12px;
  font-weight: 700;
  background: rgba(56, 189, 248, 0.15);
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
}

.lp-saving-desc {
  font-size: 11.5px;
  color: #94a3b8;
  line-height: 1.45;
}

/* Financial Box */
.lp-finance-saving-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 14px;
  padding: 14px 18px;
  position: relative;
  z-index: 2;
}

.lp-finance-label {
  font-size: 12px;
  font-weight: 600;
  color: #86efac;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.lp-finance-val {
  font-family: var(--lp-font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #34d399 !important;
  line-height: 1.1;
  margin-bottom: 4px;
}

.lp-finance-sub {
  font-size: 11px;
  color: #a7f3d0;
  opacity: 0.85;
}

/* Secondary Metrics Row */
.lp-calc-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.lp-metric-mini-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
}

.lp-metric-mini-label {
  font-size: 11px;
  color: #94a3b8 !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}

.lp-metric-mini-val {
  font-size: 18px;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.2;
}

.lp-metric-mini-note {
  font-size: 10.5px;
  color: #64748b;
  margin-top: 2px;
}

/* Tariff & CTA */
.lp-calc-tariff-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.lp-tariff-cta-text {
  display: flex;
  flex-direction: column;
}

.lp-tariff-cta-sub {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
}

.lp-tariff-cta-name {
  font-size: 18px;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1.2;
}

.lp-btn-glow {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 10px;
}

.lp-btn-glow:hover {
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.7);
  transform: translateY(-1px);
}

.lp-calc-foot-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 4px;
}

.lp-calc-foot-guarantee i {
  color: #10b981;
  font-size: 13px;
}

/* ==========================================================================
   10. Section: Tariffs
   ========================================================================== */
.lp-tariffs-section {
  padding: 76px 0;
  background: #ffffff;
}

.lp-tariffs-grid, #landingTariffsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 18px;
}

.lp-tariff-card, .tariff-card {
  background: #ffffff;
  border-radius: var(--lp-radius-xl, 20px);
  border: 1px solid var(--lp-border-light, #e2e8f0);
  padding: 38px 28px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  min-width: 0;
  overflow: visible !important;
}

#landingTariffsGrid .tariff-card,
#landingTariffsGrid .lp-tariff-card,
.lp-tariffs-grid .tariff-card,
.lp-tariffs-grid .lp-tariff-card {
  overflow: visible !important;
}

.lp-tariff-card:hover, .tariff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}

.lp-tariff-card.popular, .tariff-card.popular {
  border: 2px solid #4f46e5 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%) !important;
  box-shadow: 0 20px 45px -10px rgba(79, 70, 229, 0.18) !important;
  transform: translateY(-6px);
}

.lp-tariff-card.popular:hover, .tariff-card.popular:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 55px -10px rgba(79, 70, 229, 0.28) !important;
}

.lp-tariff-card.popular::before,
.lp-tariffs-grid .tariff-card.popular::before {
  display: none !important;
}

.lp-tariff-badge, .tariff-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 18px;
  border-radius: 9999px;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.35);
  white-space: nowrap;
  z-index: 10;
  border: none;
}

.lp-tariff-name, .tariff-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--lp-text-title, #0f172a);
  margin-bottom: 8px;
}

.lp-tariff-price, .tariff-price {
  font-family: var(--lp-font-heading, inherit);
  font-size: 34px;
  font-weight: 800;
  color: var(--lp-text-title, #0f172a);
  margin-bottom: 22px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.lp-tariff-price span, .tariff-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-text-muted, #64748b);
}

.lp-tariff-features, .tariff-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.lp-tariff-features li, .tariff-features li {
  font-size: 13.5px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.lp-tariff-features li i, .tariff-features li i {
  font-size: 15px;
  flex-shrink: 0;
}

.lp-tariff-features li.lp-feature-disabled,
.tariff-features li.lp-feature-disabled,
.lp-tariff-features li.disabled,
.tariff-features li.disabled {
  opacity: 0.7;
  color: #94a3b8;
  text-decoration: none !important;
}

.lp-tariff-features li.lp-feature-disabled span,
.tariff-features li.lp-feature-disabled span,
.lp-tariff-features li.disabled span,
.tariff-features li.disabled span {
  text-decoration: none !important;
  color: #94a3b8;
}

/* ==========================================================================
   11. Section: FAQ Accordion
   ========================================================================== */
.lp-faq-section {
  padding: 76px 0;
  background: #f8fafc;
}

.lp-faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-faq-item {
  background: #ffffff;
  border: 1px solid var(--lp-border-light);
  border-radius: var(--lp-radius-md);
  overflow: hidden;
  box-shadow: var(--lp-shadow-sm);
  transition: all 0.2s ease;
}

.lp-faq-item:hover {
  border-color: #cbd5e1;
}

.lp-faq-trigger {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--lp-text-title);
  user-select: none;
}

.lp-faq-chevron {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-text-body);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.lp-faq-item.active .lp-faq-chevron {
  transform: rotate(180deg);
  background: rgba(79, 70, 229, 0.1);
  color: var(--lp-primary);
}

.lp-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.lp-faq-item.active .lp-faq-content {
  max-height: 400px;
  transition: max-height 0.35s ease-in-out;
}

.lp-faq-answer {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--lp-text-body);
  line-height: 1.6;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

/* ==========================================================================
   12. Section: Bottom CTA & Contacts
   ========================================================================== */
.lp-cta-section {
  padding: 60px 0 76px;
  background: #ffffff;
}

.lp-cta-banner {
  background: radial-gradient(circle at 80% 20%, rgba(2, 132, 199, 0.25) 0%, transparent 45%),
              linear-gradient(135deg, #090d16 0%, #1e1b4b 100%);
  color: #ffffff;
  border-radius: var(--lp-radius-xl);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-cta-banner h2 {
  font-size: clamp(26px, 3.2vw, 34px);
  margin-bottom: 12px;
}

.lp-cta-banner p {
  color: #cbd5e1;
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto 28px;
}

.lp-cta-contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 680px;
  margin: 36px auto 0;
}

.lp-contact-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--lp-radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  transition: all 0.2s ease;
  color: #ffffff;
  min-width: 0;
}

.lp-contact-box:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.lp-contact-box-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(79, 70, 229, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #a5b4fc;
  flex-shrink: 0;
}

.lp-contact-box-info {
  min-width: 0;
}

.lp-contact-box-info h4 {
  font-size: 14px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-contact-box-info p {
  color: #94a3b8;
  font-size: 12.5px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   13. Footer
   ========================================================================== */
.lp-footer {
  background: #090d16;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 44px 0 28px;
  color: #64748b;
  font-size: 13px;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 36px;
}

.lp-footer-brand h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.lp-footer-brand p {
  line-height: 1.6;
  max-width: 320px;
  color: #94a3b8;
}

.lp-footer-col h4 {
  font-size: 13.5px;
  margin-bottom: 14px;
}

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

.lp-footer-links a {
  color: #94a3b8;
  font-size: 12.5px;
}

.lp-footer-links a:hover {
  color: #ffffff;
}

.lp-footer-disclaimer {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lp-radius-lg);
  padding: 16px 20px;
  margin-top: 24px;
  margin-bottom: 22px;
  font-size: 12px;
  line-height: 1.6;
  color: #94a3b8;
}

.lp-disclaimer-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #f1f5f9;
}

.lp-disclaimer-badge {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lp-footer-disclaimer p {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.55;
}

.lp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   Registration Disabled / Early Access Modal
   ========================================================================== */
.lp-reg-disabled-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-reg-disabled-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: var(--lp-radius-md);
  padding: 14px 16px;
}

.lp-reg-disabled-banner i {
  color: #f59e0b;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-reg-disabled-banner strong {
  display: block;
  font-size: 14px;
  color: #92400e;
  margin-bottom: 2px;
}

.lp-reg-disabled-banner p {
  margin: 0;
  font-size: 12.5px;
  color: #b45309;
  line-height: 1.45;
}

.lp-reg-pilot-box {
  background: #f8fafc;
  border: 1px solid var(--lp-border-light);
  border-radius: var(--lp-radius-lg);
  padding: 18px 20px;
}

.lp-pilot-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--lp-text-title);
  margin-bottom: 6px;
}

.lp-pilot-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
}

.lp-pilot-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border: 1px solid #22bf5b;
}

.lp-btn-whatsapp:hover {
  background: #20ba5a;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   14. Mobile Drawer Navigation
   ========================================================================== */
.lp-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 13, 22, 0.96);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  flex-direction: column;
  padding: 24px;
}

.lp-mobile-drawer.show {
  display: flex;
}

.lp-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.lp-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
}

.lp-drawer-nav a {
  color: #ffffff;
}

.lp-drawer-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   15. Responsive Breakpoints
   ========================================================================== */
/* Tablet & Medium Laptops (1080px) */
@media (max-width: 1080px) {
  .lp-nav {
    display: none;
  }
  .lp-mobile-toggle {
    display: block;
  }
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .lp-hero-desc {
    margin: 0 auto 24px;
  }
  .lp-hero-actions {
    align-items: center;
  }
  .lp-hero-chips {
    justify-content: center;
  }
  .lp-pipeline-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lp-pipeline-connector {
    transform: rotate(90deg);
    margin: 6px 0;
  }
  .lp-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-channels-grid {
    grid-template-columns: 1fr;
  }
  .lp-tariffs-grid, #landingTariffsGrid {
    grid-template-columns: 1fr;
  }
  .lp-bento-grid {
    grid-template-columns: 1fr;
  }
  .lp-bento-span-2 {
    grid-column: span 1;
  }
  .lp-calc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lp-calc-card {
    padding: 28px 24px;
  }
  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Infographic Responsive (1080px) */
  .lp-info-kpi-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-lane-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .lp-lane-bridge {
    padding: 8px 0;
  }
  .lp-bridge-pill {
    flex-direction: row;
    margin-bottom: 4px;
    padding: 6px 14px;
  }
  .lp-bridge-line {
    flex-direction: row;
    gap: 8px;
  }
  .lp-bridge-arrow {
    transform: rotate(90deg);
  }
  .lp-day1-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .lp-day1-timeline::before {
    display: none;
  }
}

/* Mobile Screens (768px) */
@media (max-width: 768px) {
  .lp-hero-title,
  .lp-landing .lp-hero-title,
  .lp-hero-section h1 {
    font-size: 28px !important;
  }
  .lp-vs-grid {
    grid-template-columns: 1fr;
  }
  .lp-info-kpi-strip {
    grid-template-columns: 1fr;
  }
  .lp-info-lane {
    padding: 20px 16px;
  }
  .lp-lane-badge-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .lp-day1-timeline {
    grid-template-columns: 1fr;
  }
  .lp-info-day1-card {
    padding: 26px 18px;
  }
  .lp-day1-title {
    font-size: 18px !important;
  }
  .lp-cta-contacts-grid {
    grid-template-columns: 1fr;
  }
  .lp-metrics-grid {
    grid-template-columns: 1fr;
  }
  .lp-calc-card {
    padding: 20px 16px;
  }
  .lp-calc-slider-group {
    padding: 14px 14px;
  }
  .lp-calc-slider-name {
    font-size: 13.5px;
  }
  .lp-calc-metrics-row {
    grid-template-columns: 1fr;
  }
  .lp-calc-tariff-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .lp-calc-preset-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .lp-preset-pills {
    width: 100%;
  }
  .lp-preset-btn {
    flex: 1;
    justify-content: center;
    font-size: 12px;
    padding: 6px 10px;
  }
  .lp-cta-banner {
    padding: 36px 18px;
  }
}
