/* ========== MANALY — LANDING PAGE ========== */
/* White theme + 3D animations — Modern SaaS              */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: hidden;
}

body.landing {
  background: #FFFFFF;
  color: #1A1A2E;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
  width: 100%;
}

body.landing ::selection {
  background: rgba(47, 99, 255, 0.2);
  color: #1A1A2E;
}

/* ===== HERO SPLIT LAYOUT (text left + robot right) ===== */
.lp-hero-split {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 55vh;
}

/* Hero centered layout (galaxy background mode) */
.lp-hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 0 40px;
}
.lp-hero-center .lp-hero-cta {
  justify-content: center;
}
.lp-hero-center .lp-hero-users {
  justify-content: center;
}

/* Canvas as hero background */
.lp-hero #lp-robot-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.lp-hero-text {
  flex: 1 1 50%;
  text-align: left;
  min-width: 0;
}

.lp-hero-text .lp-social-proof { justify-content: flex-start; }
.lp-hero-text .lp-hero-cta { justify-content: flex-start; }
.lp-hero-text .lp-hero-users { justify-content: flex-start; }
.lp-hero-text .lp-hero-subtitle { margin-left: 0; margin-right: 0; padding: 0; }

.lp-hero-robot {
  flex: 1 1 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.lp-hero-robot canvas {
  width: 100%;
  height: 520px;
  display: block;
  border-radius: 20px;
}

/* Glow effect behind robot */
.lp-robot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(47, 99, 255,0.12) 0%, rgba(18, 62, 209,0.08) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: robotGlowPulse 4s ease-in-out infinite;
}

@keyframes robotGlowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* ===== FLOATING 3D SHAPES ===== */
.lp-3d-scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  perspective: 1200px;
  overflow: hidden;
  z-index: 0;
}

.lp-3d-shape {
  position: absolute;
  transform-style: preserve-3d;
  transition: translate 0.3s ease-out;
}

/* Sphere */
.lp-shape-sphere {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(47, 99, 255, 0.15), rgba(18, 62, 209, 0.15));
  box-shadow: 
    inset -8px -8px 20px rgba(18, 62, 209, 0.1),
    inset 8px 8px 20px rgba(255, 255, 255, 0.8),
    0 20px 60px rgba(47, 99, 255, 0.1);
  animation: lp-sphere-float 8s ease-in-out infinite;
}

.lp-shape-sphere.s2 {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(47, 99, 255, 0.1));
  animation: lp-sphere-float 10s ease-in-out infinite reverse;
}

.lp-shape-sphere.s3 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(47, 99, 255, 0.08), rgba(18, 62, 209, 0.08));
  animation: lp-sphere-float 12s ease-in-out infinite;
}

/* Torus ring */
.lp-shape-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 6px solid rgba(47, 99, 255, 0.12);
  background: transparent;
  animation: lp-ring-spin 15s linear infinite;
}

.lp-shape-ring.r2 {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(18, 62, 209, 0.12);
  animation: lp-ring-spin 12s linear infinite reverse;
}

/* Cube */
.lp-shape-cube-wrap {
  width: 60px;
  height: 60px;
  animation: lp-cube-float 10s ease-in-out infinite;
}

.lp-shape-cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: lp-cube-spin 20s linear infinite;
}

.lp-shape-cube .face {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(47, 99, 255, 0.1);
  background: rgba(47, 99, 255, 0.03);
  backdrop-filter: blur(4px);
  border-radius: 8px;
}

.lp-shape-cube .face.front  { transform: translateZ(30px); }
.lp-shape-cube .face.back   { transform: rotateY(180deg) translateZ(30px); }
.lp-shape-cube .face.right  { transform: rotateY(90deg) translateZ(30px); }
.lp-shape-cube .face.left   { transform: rotateY(-90deg) translateZ(30px); }
.lp-shape-cube .face.top    { transform: rotateX(90deg) translateZ(30px); }
.lp-shape-cube .face.bottom { transform: rotateX(-90deg) translateZ(30px); }

/* Gradient blobs — contained within hero */
.lp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.lp-blob-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(47, 99, 255, 0.12), transparent 70%);
  top: -50px;
  right: 0;
  animation: lp-blob-move 20s ease-in-out infinite;
}

.lp-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(18, 62, 209, 0.10), transparent 70%);
  bottom: -100px;
  left: 0;
  animation: lp-blob-move 25s ease-in-out infinite reverse;
}

.lp-blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(76, 123, 255, 0.08), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: lp-blob-pulse 15s ease-in-out infinite;
}

@keyframes lp-sphere-float {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  25% { transform: translateY(-20px) rotateX(10deg) rotateY(15deg); }
  50% { transform: translateY(-10px) rotateX(-5deg) rotateY(-10deg); }
  75% { transform: translateY(-25px) rotateX(8deg) rotateY(5deg); }
}

@keyframes lp-ring-spin {
  0% { transform: rotateX(60deg) rotateZ(0deg); }
  100% { transform: rotateX(60deg) rotateZ(360deg); }
}

@keyframes lp-cube-spin {
  0% { transform: rotateX(0) rotateY(0) rotateZ(0); }
  100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(180deg); }
}

@keyframes lp-cube-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

@keyframes lp-blob-move {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

@keyframes lp-blob-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

/* ===== CONTAINER ===== */
.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ===== NAVBAR ===== */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lp-nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
}

.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.lp-nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2F63FF, #123ED1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(47, 99, 255, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}

.lp-nav-logo:hover .lp-nav-logo-icon {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 6px 20px rgba(47, 99, 255, 0.35);
}

.lp-nav-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1A1A2E;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.lp-nav-logo-text span {
  background: linear-gradient(135deg, #2F63FF, #123ED1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.lp-nav-links a {
  color: #64748B;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.lp-nav-links a:hover { color: #1A1A2E; }

.lp-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2F63FF, #123ED1);
  border-radius: 1px;
  transition: width 0.3s ease;
}

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

/* Dropdown */
.lp-nav-dropdown {
  position: relative;
}
.lp-nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-nav-dropdown > a .lp-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.lp-nav-dropdown:hover > a .lp-chevron {
  transform: rotate(180deg);
}
.lp-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 150;
  display: block;
}
.lp-nav-dropdown-menu.dd-split {
  min-width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
}
.lp-nav-dropdown:hover .lp-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.lp-nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: #475569 !important;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.lp-nav-dropdown-menu a::after {
  display: none !important;
}
.lp-nav-dropdown-menu a:hover {
  background: rgba(47, 99, 255, 0.06);
  color: #2F63FF !important;
}
.lp-nav-dropdown-menu a .dd-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.lp-nav-dropdown-menu .dd-column {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-nav-dropdown-menu .dd-section-title {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748B;
  padding: 6px 12px 4px;
}
.lp-nav-dropdown-menu .dd-divider {
  height: 1px;
  background: #F1F5F9;
  margin: 6px 4px;
}
.dd-mobile-title {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748B;
  padding: 6px 2px 2px;
}

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

.lp-btn-ghost {
  padding: 9px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748B;
  background: transparent;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.lp-btn-ghost:hover {
  color: #1A1A2E;
  border-color: #CBD5E1;
  background: #F8FAFC;
}

.lp-btn-primary {
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #2F63FF, #123ED1);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(47, 99, 255, 0.25);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.lp-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4C7BFF, #7C3AED);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(47, 99, 255, 0.35);
}

.lp-btn-primary:hover::before { opacity: 1; }
.lp-btn-primary span, .lp-btn-primary svg { position: relative; z-index: 1; }

.lp-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2F63FF;
  transition: gap 0.2s;
}
.lp-feature-card:hover .lp-feature-link { gap: 8px; }

.lp-btn-large { padding: 14px 32px; font-size: 1rem; border-radius: 14px; }

.lp-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #1A1A2E;
  cursor: pointer;
  padding: 4px;
}

/* ===== HERO ===== */
.lp-hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Social proof badges */
.lp-social-proof {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.lp-proof-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #F1F5F9;
  border-radius: 100px;
  font-size: 0.8rem;
  color: #64748B;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.lp-proof-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.lp-proof-stars { display: flex; gap: 2px; color: #FBBF24; flex-shrink: 0; }
.lp-proof-badge em { font-style: italic; color: #94A3B8; white-space: nowrap; }

.lp-hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  position: relative;
  color: #1A1A2E;
}

.lp-gradient-text {
  background: linear-gradient(135deg, #2F63FF 0%, #6C8CFF 50%, #123ED1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-subtitle {
  font-size: 1.15rem;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  padding: 0 16px;
}

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

.lp-hero-users {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.lp-avatar-stack { display: flex; flex-shrink: 0; }

.lp-avatar-stack span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.lp-avatar-stack span:first-child { margin-left: 0; }
.lp-avatar-stack span:nth-child(1) { background: linear-gradient(135deg, #2F63FF, #4C7BFF); }
.lp-avatar-stack span:nth-child(2) { background: linear-gradient(135deg, #123ED1, #7C3AED); }
.lp-avatar-stack span:nth-child(3) { background: linear-gradient(135deg, #6C8CFF, #8FB1FF); }
.lp-avatar-stack span:nth-child(4) { background: linear-gradient(135deg, #4C7BFF, #2F63FF); }
.lp-avatar-stack span:nth-child(5) { background: #F1F5F9; border: 1px dashed #CBD5E1; color: #94A3B8; font-size: 0.65rem; }

.lp-hero-users-text { font-size: 0.85rem; color: #94A3B8; }
.lp-hero-users-text strong { color: #475569; }

/* ===== HERO MOCKUP — 3D PERSPECTIVE ===== */
.lp-hero-mockup-wrap {
  perspective: 1200px;
  max-width: 1000px;
  margin: 0 auto;
}

.lp-hero-mockup {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.lp-hero-mockup:hover {
  box-shadow:
    0 50px 100px rgba(47, 99, 255, 0.12),
    0 0 0 1px rgba(47, 99, 255, 0.05);
}

.lp-mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: #F8FAFC;
  border-bottom: 1px solid #F1F5F9;
}

.lp-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E2E8F0;
  flex-shrink: 0;
}

.lp-mockup-dot:nth-child(1) { background: #FF5F57; }
.lp-mockup-dot:nth-child(2) { background: #FEBC2E; }
.lp-mockup-dot:nth-child(3) { background: #28C840; }

.lp-mockup-url {
  margin-left: 12px;
  font-size: 0.75rem;
  color: #94A3B8;
  background: #F1F5F9;
  padding: 4px 12px;
  border-radius: 6px;
  flex: 1;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-mockup-body {
  padding: 24px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FAFBFF 0%, #F5F3FF 100%);
}

/* Dashboard preview */
.lp-dash-preview {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  width: 100%;
  height: 300px;
}

.lp-dash-sidebar {
  background: #0F0720;
  border-radius: 12px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}

.lp-dash-sb-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-dash-sb-logo-dot {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: linear-gradient(135deg, #2F63FF, #123ED1);
  flex-shrink: 0;
}

.lp-dash-sb-logo-text { font-size: 0.6rem; font-weight: 700; color: rgba(255, 255, 255, 0.8); white-space: nowrap; overflow: hidden; }

.lp-dash-sb-item {
  padding: 6px 7px;
  border-radius: 6px;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.lp-dash-sb-item.active { background: rgba(47, 99, 255, 0.15); color: #2F63FF; }

.lp-dash-sb-item-icon {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.lp-dash-sb-item.active .lp-dash-sb-item-icon { background: rgba(47, 99, 255, 0.25); }

.lp-dash-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 8px;
  overflow: hidden;
}

.lp-dash-stat {
  background: #fff;
  border: 1px solid #F1F5F9;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.lp-dash-stat-label { font-size: 0.5rem; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-dash-stat-value { font-size: 1.1rem; font-weight: 700; color: #1A1A2E; }
.lp-dash-stat-bar { height: 3px; border-radius: 2px; background: #F1F5F9; margin-top: 4px; overflow: hidden; }
.lp-dash-stat-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, #2F63FF, #123ED1); }

.lp-dash-chart {
  background: #fff;
  border: 1px solid #F1F5F9;
  border-radius: 8px;
  grid-column: 1 / -1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.lp-dash-chart-title { font-size: 0.55rem; color: #94A3B8; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }

.lp-dash-chart-bars { display: flex; align-items: flex-end; gap: 4px; flex: 1; min-height: 60px; }

.lp-dash-chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #2F63FF, rgba(18, 62, 209, 0.4));
  min-height: 12px;
  transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== TRUST ===== */
.lp-trust {
  padding: 50px 0;
  border-top: 1px solid #F1F5F9;
  border-bottom: 1px solid #F1F5F9;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.lp-trust-label { text-align: center; font-size: 0.8rem; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 28px; }

.lp-trust-logos { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.lp-trust-logo { font-size: 1rem; font-weight: 700; color: #CBD5E1; letter-spacing: 0.02em; white-space: nowrap; transition: color 0.3s; }
.lp-trust-logo:hover { color: #94A3B8; }

/* ===== SECTIONS ===== */
.lp-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.lp-section-alt {
  background: #FAFBFF;
}

.lp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(47, 99, 255, 0.06);
  border: 1px solid rgba(47, 99, 255, 0.1);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2F63FF;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #1A1A2E;
}

.lp-section-subtitle { font-size: 1.05rem; color: #64748B; max-width: 600px; line-height: 1.7; }

.lp-section-header { text-align: center; margin-bottom: 56px; }
.lp-section-header .lp-section-subtitle { margin: 0 auto; }

/* ===== FEATURES — 3D TILT CARDS ===== */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lp-feature-card {
  background: #FFFFFF;
  border: 1px solid #F1F5F9;
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.lp-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2F63FF, #123ED1, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.lp-feature-card:hover {
  border-color: rgba(47, 99, 255, 0.12);
  box-shadow: 0 25px 60px rgba(47, 99, 255, 0.1), 0 10px 20px rgba(0, 0, 0, 0.04);
}

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

.lp-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(47, 99, 255, 0.08), rgba(18, 62, 209, 0.08));
  border: 1px solid rgba(47, 99, 255, 0.06);
  color: #2F63FF;
  transition: transform 0.3s, box-shadow 0.3s;
}

.lp-feature-card:hover .lp-feature-icon {
  transform: translateZ(20px) scale(1.05);
  box-shadow: 0 10px 25px rgba(47, 99, 255, 0.15);
}

.lp-feature-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #1A1A2E; }
.lp-feature-desc { font-size: 0.88rem; color: #64748B; line-height: 1.7; }

/* ===== STEPS ===== */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.lp-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(47, 99, 255, 0.2), rgba(18, 62, 209, 0.2), transparent);
}

.lp-step { text-align: center; position: relative; }

.lp-step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2F63FF, #123ED1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 8px 25px rgba(47, 99, 255, 0.25);
  position: relative;
  z-index: 2;
  transition: transform 0.3s, box-shadow 0.3s;
}

.lp-step:hover .lp-step-number {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 35px rgba(47, 99, 255, 0.35);
}

.lp-step-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: #1A1A2E; }
.lp-step-desc { font-size: 0.82rem; color: #94A3B8; line-height: 1.6; }

/* ===== STATS ===== */
.lp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 60px 0; }
.lp-stat { text-align: center; }

.lp-stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #2F63FF, #123ED1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.lp-stat-label { font-size: 0.85rem; color: #94A3B8; margin-top: 4px; }

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

.lp-testimonial {
  background: #FFFFFF;
  border: 1px solid #F1F5F9;
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
}

.lp-testimonial:hover {
  border-color: rgba(47, 99, 255, 0.1);
  box-shadow: 0 20px 50px rgba(47, 99, 255, 0.08);
}

.lp-testimonial-stars { display: flex; gap: 3px; color: #FBBF24; margin-bottom: 14px; }
.lp-testimonial-text { font-size: 0.92rem; color: #475569; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.lp-testimonial-author { display: flex; align-items: center; gap: 12px; }

.lp-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.lp-testimonial-name { font-size: 0.88rem; font-weight: 600; color: #1A1A2E; }
.lp-testimonial-role { font-size: 0.78rem; color: #94A3B8; }

/* ===== PRICING ===== */
.lp-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.lp-pricing-card {
  background: #FFFFFF;
  border: 1px solid #F1F5F9;
  border-radius: 24px;
  padding: 32px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s;
  position: relative;
  transform-style: preserve-3d;
}

.lp-pricing-card:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
}

.lp-pricing-card.popular {
  background: linear-gradient(180deg, #FEFCFF, #FAF5FF);
  border-color: rgba(47, 99, 255, 0.15);
  box-shadow: 0 20px 60px rgba(47, 99, 255, 0.1);
  transform: scale(1.04);
}

.lp-pricing-card.popular:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 30px 80px rgba(47, 99, 255, 0.15);
}

.lp-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  background: linear-gradient(135deg, #2F63FF, #123ED1);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(47, 99, 255, 0.3);
}

.lp-pricing-name { font-size: 1.1rem; font-weight: 700; color: #1A1A2E; margin-bottom: 4px; }
.lp-pricing-desc { font-size: 0.82rem; color: #94A3B8; margin-bottom: 24px; }
.lp-pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; flex-wrap: wrap; }
.lp-pricing-amount { font-size: 2.8rem; font-weight: 800; color: #1A1A2E; line-height: 1; }
.lp-pricing-period { font-size: 0.82rem; color: #94A3B8; }
.lp-pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.lp-pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: #475569; }
.lp-pricing-features li svg { flex-shrink: 0; width: 18px; height: 18px; color: #2F63FF; }

.lp-pricing-btn { width: 100%; padding: 12px; font-size: 0.9rem; font-weight: 600; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; text-align: center; text-decoration: none; display: block; }

.lp-pricing-btn-outline { background: transparent; border: 1px solid #E2E8F0; color: #1A1A2E; }
.lp-pricing-btn-outline:hover { border-color: rgba(47, 99, 255, 0.2); background: rgba(47, 99, 255, 0.03); color: #2F63FF; }

.lp-pricing-btn-fill { background: linear-gradient(135deg, #2F63FF, #123ED1); border: none; color: #fff; box-shadow: 0 4px 20px rgba(47, 99, 255, 0.25); }
.lp-pricing-btn-fill:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(47, 99, 255, 0.35); }

/* ===== FINAL CTA ===== */
.lp-final-cta { text-align: center; padding: 80px 0; position: relative; z-index: 1; overflow: hidden; }

.lp-final-cta-box {
  background: linear-gradient(180deg, #FAF5FF, #F3E8FF);
  border: 1px solid rgba(47, 99, 255, 0.1);
  border-radius: 28px;
  padding: 64px 32px;
  position: relative;
  overflow: hidden;
}

.lp-final-cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(47, 99, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lp-final-cta-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; position: relative; color: #1A1A2E; }
.lp-final-cta-subtitle { font-size: 1.05rem; color: #64748B; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; position: relative; }

/* ===== FOOTER ===== */
.lp-footer {
  border-top: none;
  padding: 50px 0 32px;
  background: linear-gradient(135deg, #1232ad 0%, #0f2a93 100%);
  position: relative;
  z-index: 1;
}

.lp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.lp-footer-brand p { font-size: 0.85rem; color: rgba(206, 220, 255, 0.88); line-height: 1.7; margin-top: 14px; max-width: 280px; }
.lp-footer-col-title { font-size: 0.8rem; font-weight: 700; color: #FFFFFF; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.lp-footer-col a { display: block; font-size: 0.85rem; color: rgba(206, 220, 255, 0.88); text-decoration: none; padding: 3px 0; transition: color 0.2s; }
.lp-footer-col a:hover { color: #FFFFFF; }

.lp-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(206, 220, 255, 0.24); flex-wrap: wrap; gap: 16px; }
.lp-footer-bottom p { font-size: 0.8rem; color: rgba(206, 220, 255, 0.88); }
.lp-footer-socials { display: flex; gap: 12px; }

.lp-footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(206, 220, 255, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(206, 220, 255, 0.88);
  text-decoration: none;
  transition: all 0.2s;
}

.lp-footer-socials a:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  color: #FFFFFF;
}

/* ===== ANIMATIONS ===== */
.lp-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.lp-animate-delay-1 { transition-delay: 0.1s; }
.lp-animate-delay-2 { transition-delay: 0.2s; }
.lp-animate-delay-3 { transition-delay: 0.3s; }
.lp-animate-delay-4 { transition-delay: 0.4s; }
.lp-animate-delay-5 { transition-delay: 0.5s; }
.lp-animate-delay-6 { transition-delay: 0.6s; }

/* ===== RESPONSIVE — TABLET (1024px) ===== */
@media (max-width: 1024px) {
  .lp-features-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .lp-steps::before { display: none; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .lp-dash-preview { grid-template-columns: 1fr; }
  .lp-dash-sidebar { display: none; }
  .lp-pricing-card.popular { transform: scale(1); }
  .lp-pricing-card.popular:hover { transform: translateY(-4px); }
  .lp-3d-scene { display: none; }
  .lp-hero { padding: 140px 0 80px; }
  .lp-hero-split { gap: 30px; }
  .lp-hero-robot { min-height: 380px; }
  .lp-hero-robot canvas { height: 420px; }
  .lp-nav-links { gap: 20px; }
  .lp-nav-links a { font-size: 0.82rem; }
  .lp-section { padding: 80px 0; }
  .lp-mockup-body { min-height: 280px; }
}

/* ===== RESPONSIVE — TABLET SMALL (768px) ===== */
@media (max-width: 768px) {
  .lp-nav-links { display: none; }
  .lp-nav-dropdown-menu { display: none !important; }
  .lp-nav-actions .lp-btn-ghost { display: none; }
  .lp-menu-toggle { display: block; }

  .lp-hero { padding: 120px 0 60px; }
  .lp-hero-split {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .lp-hero-text {
    text-align: center;
    order: 1;
  }
  .lp-hero-text .lp-social-proof { justify-content: center; }
  .lp-hero-text .lp-hero-cta { justify-content: center; }
  .lp-hero-text .lp-hero-users { justify-content: center; }
  .lp-hero-text .lp-hero-subtitle { margin: 0 auto 40px; padding: 0 8px; }
  .lp-hero-robot {
    order: 0;
    min-height: 300px;
    width: 100%;
  }
  .lp-hero-robot canvas { height: 340px; }
  .lp-robot-glow { width: 220px; height: 220px; }
  .lp-hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .lp-hero-subtitle { font-size: 0.95rem; padding: 0 8px; }

  .lp-features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .lp-testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 20px; }
  .lp-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lp-stats { grid-template-columns: 1fr 1fr; gap: 20px; padding: 40px 0; }
  .lp-section { padding: 60px 0; }
  .lp-section-header { margin-bottom: 40px; }

  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lp-footer-bottom { flex-direction: column; gap: 16px; text-align: center; justify-content: center; }

  .lp-final-cta { padding: 60px 0; }
  .lp-final-cta-box { padding: 40px 20px; border-radius: 20px; }

  .lp-mockup-body { padding: 12px; min-height: 200px; }
  .lp-mockup-bar { padding: 10px 14px; }
  .lp-dash-content { grid-template-columns: 1fr; }
  .lp-dash-chart-bars { min-height: 50px; }
  .lp-dash-preview { height: auto; }

  .lp-social-proof { gap: 8px; }
  .lp-proof-badge { padding: 6px 12px; font-size: 0.72rem; }

  .lp-hero-cta { flex-direction: column; align-items: stretch; }
  .lp-btn-large { width: 100%; justify-content: center; }

  .lp-hero-users { flex-direction: column; gap: 8px; }

  .lp-trust { padding: 40px 0; }
  .lp-trust-logos { gap: 20px; }
  .lp-trust-logo { font-size: 0.9rem; }

  .lp-blob-1 { width: 250px; height: 250px; }
  .lp-blob-2 { width: 250px; height: 250px; }
  .lp-blob-3 { width: 200px; height: 200px; }
}

/* ===== RESPONSIVE — MOBILE (480px) ===== */
@media (max-width: 480px) {
  .lp-container { padding: 0 16px; }

  .lp-hero { padding: 110px 0 48px; }
  .lp-hero-title { font-size: 1.75rem; }
  .lp-hero-subtitle { font-size: 0.88rem; }
  .lp-hero-robot { min-height: 260px; }
  .lp-hero-robot canvas { height: 280px; }

  .lp-section-title { font-size: 1.5rem; }

  .lp-pricing-amount { font-size: 2.2rem; }
  .lp-pricing-card { padding: 24px; }

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

  .lp-steps { grid-template-columns: 1fr; gap: 20px; }
  .lp-step-number { width: 44px; height: 44px; font-size: 0.9rem; }

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

  .lp-final-cta-title { font-size: 1.4rem; }
  .lp-final-cta-subtitle { font-size: 0.9rem; }

  .lp-social-proof { flex-direction: column; align-items: center; }

  .lp-stats { gap: 16px; padding: 32px 0; }
  .lp-stat-value { font-size: 1.8rem; }
  .lp-stat-label { font-size: 0.78rem; }

  .lp-testimonial { padding: 22px; }
  .lp-testimonial-text { font-size: 0.85rem; }

  .lp-nav-inner { padding: 0 16px; }
  .lp-nav-actions .lp-btn-primary { padding: 8px 16px; font-size: 0.8rem; }

  .lp-mockup-body { padding: 8px; min-height: 160px; }
  .lp-dash-stat { padding: 8px; }
  .lp-dash-stat-value { font-size: 0.9rem; }
  .lp-dash-stat-label { font-size: 0.45rem; }
  .lp-dash-chart { padding: 8px; }
  .lp-dash-chart-title { font-size: 0.45rem; margin-bottom: 6px; }

  .lp-blob-1, .lp-blob-2, .lp-blob-3 { display: none; }

  .lp-hero-mockup { border-radius: 14px; }
  .lp-mockup-bar { padding: 8px 10px; gap: 5px; }
  .lp-mockup-dot { width: 7px; height: 7px; }
  .lp-mockup-url { font-size: 0.6rem; padding: 3px 8px; margin-left: 6px; }
}

/* ===== RESPONSIVE — TINY (360px) ===== */
@media (max-width: 360px) {
  .lp-hero-title { font-size: 1.5rem; }
  .lp-container { padding: 0 12px; }
  .lp-pricing-grid { max-width: 100%; }
  .lp-nav-actions .lp-btn-primary span { display: none; }
  .lp-nav-actions .lp-btn-primary::after { content: 'Essai'; position: relative; z-index: 1; }
}

/* ===== MOBILE MENU ===== */
.lp-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 200;
  padding: 100px 32px 32px;
  flex-direction: column;
  gap: 4px;
}

.lp-mobile-menu.open { display: flex; }

.lp-mobile-menu a {
  font-size: 1.15rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #F1F5F9;
  transition: color 0.2s;
}

.lp-mobile-menu a:hover { color: #2F63FF; }

.lp-mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #1A1A2E;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
}

/* ===== DISABLE TILT & PARALLAX ON TOUCH DEVICES ===== */
@media (hover: none) and (pointer: coarse) {
  .lp-feature-card,
  .lp-testimonial,
  .lp-pricing-card {
    transform: none !important;
  }
  .lp-hero-mockup {
    transform: none !important;
  }
  .lp-3d-shape {
    translate: none !important;
  }
}

/* ===== LANDING — MOBILE BOTTOM TAB BAR ===== */
.lp-bottom-bar {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 998;
  height: 68px;
  padding: 0 6px;
  align-items: center;
  justify-content: space-around;
}

.lp-bottom-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 218, 240, 0.6);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 1px 6px rgba(0, 0, 0, 0.04);
  border-radius: 28px;
}

@media (max-width: 768px) {
  .lp-bottom-bar {
    display: flex;
  }
  body.landing {
    padding-bottom: 92px;
  }
  /* Hide desktop nav actions on mobile */
  .lp-nav-actions {
    display: none;
  }
}

/* Tab items */
.lp-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  color: #718096;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 8px;
  border-radius: 14px;
  transition: all 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 52px;
}

.lp-tab svg {
  transition: all 0.25s ease;
}

.lp-tab:active {
  transform: scale(0.92);
}

/* Center logo button */
.lp-tab-center {
  position: relative;
  top: -14px;
  padding: 0;
  min-width: auto;
}

.lp-tab-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2F63FF, #123ED1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(47, 99, 255, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.lp-tab-center:active .lp-tab-logo {
  transform: scale(0.92);
  box-shadow: 0 3px 12px rgba(47, 99, 255, 0.2);
}

/* Chat icon button */
.lp-tab-chat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2F63FF, #123ED1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(47, 99, 255, 0.2);
}
.lp-tab-chat:active .lp-tab-chat-icon {
  transform: scale(0.9);
}

/* ===== LANDING — CHATBOT STYLES ===== */
#tp-chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  z-index: 9998;
  color: #1A202C;
}
#tp-chatbot.tp-chatbot-hidden #tp-chatbot-window { display: none; }

/* Floating button */
#tp-chatbot-btn {
  background: linear-gradient(135deg, #2F63FF, #123ED1);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(47, 99, 255, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#tp-chatbot-btn svg { pointer-events: none; }
#tp-chatbot-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 36px rgba(47, 99, 255, 0.3), 0 6px 16px rgba(0, 0, 0, 0.12);
}

.tp-chatbot-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(47, 99, 255, 0.35);
  animation: lpChatPulse 2.2s ease-out infinite;
}
@keyframes lpChatPulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 99, 255, 0.35); }
  70% { box-shadow: 0 0 0 18px rgba(47, 99, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 99, 255, 0); }
}

/* Chat window */
#tp-chatbot-window {
  width: 380px;
  height: 540px;
  background: #FFFFFF;
  border: 1px solid rgba(226, 218, 240, 0.8);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: lpChatPopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: absolute;
  bottom: 72px;
  right: 0;
}
@keyframes lpChatPopIn {
  from { transform: translateY(12px) scale(0.95); opacity: 0; }
  to { transform: none; opacity: 1; }
}

/* Header */
#tp-chatbot-header {
  background: linear-gradient(135deg, #2F63FF, #123ED1);
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
#tp-chatbot-header::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.tp-chatbot-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.tp-chatbot-brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tp-chatbot-brand-text strong {
  font-weight: 800;
  letter-spacing: 0.3px;
  display: block;
  line-height: 1;
  font-size: 0.95rem;
}
.tp-chatbot-subtitle {
  font-size: 0.7rem;
  opacity: 0.8;
  font-weight: 500;
}

#tp-chatbot-close {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
#tp-chatbot-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

/* Messages */
#tp-chatbot-messages {
  flex: 1;
  padding: 16px 14px 8px;
  overflow-y: auto;
  background: #FAF5FF;
}

.tp-msg {
  max-width: 82%;
  padding: 12px 16px;
  margin: 8px 0;
  border-radius: 18px;
  font-size: 0.85rem;
  line-height: 1.5;
  animation: lpMsgSlide 0.25s ease;
}
@keyframes lpMsgSlide {
  from { transform: translateY(8px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

.tp-msg.user {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, #2F63FF, #123ED1);
  border-bottom-right-radius: 6px;
  box-shadow: 0 4px 12px rgba(47, 99, 255, 0.15);
}
.tp-msg.bot {
  margin-right: auto;
  color: #1A202C;
  background: #FFFFFF;
  border: 1px solid rgba(226, 218, 240, 0.8);
  border-bottom-left-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Typing indicator */
.tp-typing { padding: 14px 18px; }
.tp-dots {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
.tp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #718096;
  opacity: 0.35;
  animation: lpBlink 1.2s infinite;
}
.tp-dot:nth-child(2) { animation-delay: 0.2s; }
.tp-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes lpBlink {
  0%, 80%, 100% { opacity: 0.25; }
  40% { opacity: 1; }
}

/* Suggestions */
#tp-chatbot-suggestions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px 12px 8px;
  background: #FFFFFF;
  border-top: 1px solid rgba(226, 218, 240, 0.8);
}
.tp-suggest {
  border: 1px solid rgba(226, 218, 240, 0.8);
  background: #FAF5FF;
  color: #2F63FF;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.tp-suggest:hover {
  background: linear-gradient(135deg, #2F63FF, #123ED1);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(47, 99, 255, 0.2);
}

/* Input */
#tp-chatbot-input {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(226, 218, 240, 0.8);
  background: #FFFFFF;
  padding: 10px 12px;
}
#tp-chatbot-input input {
  flex: 1;
  border: 1.5px solid rgba(226, 218, 240, 0.8);
  background: #FAF5FF;
  color: #1A202C;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 0.85rem;
  outline: none;
  font-family: inherit;
  transition: all 0.2s ease;
}
#tp-chatbot-input input:focus {
  border-color: #2F63FF;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(47, 99, 255, 0.15);
}
#tp-chatbot-input input::placeholder {
  color: #718096;
  opacity: 0.7;
}

#tp-chatbot-send {
  background: linear-gradient(135deg, #2F63FF, #123ED1);
  color: #fff;
  border: none;
  border-radius: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(47, 99, 255, 0.2);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
#tp-chatbot-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(47, 99, 255, 0.25);
}
#tp-chatbot-send:active {
  transform: translateY(0);
}

/* Chatbot mobile */
@media (max-width: 768px) {
  #tp-chatbot-btn {
    display: none !important;
  }
  #tp-chatbot-window {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 85vh;
    border-radius: 24px 24px 0 0;
    animation: lpChatSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  @keyframes lpChatSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
  #tp-chatbot {
    right: 0;
    bottom: 0;
    left: 0;
  }
}

/* ========== HELP CENTER / FAQ / CONTACT ========== */

/* FAQ Accordion */
.lp-help-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.lp-faq-item:hover {
  border-color: rgba(47, 99, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.lp-faq-item.open {
  border-color: rgba(47, 99, 255, 0.3);
  box-shadow: 0 8px 24px rgba(47, 99, 255, 0.08);
}
.lp-faq-q {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.lp-faq-q span {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1A1A2E;
  transition: color 0.15s;
}
.lp-faq-q:hover span { color: #2F63FF; }
.lp-faq-q svg {
  flex-shrink: 0;
  color: #A0AEC0;
  transition: transform 0.35s ease, color 0.2s;
}
.lp-faq-item.open .lp-faq-q svg {
  transform: rotate(180deg);
  color: #2F63FF;
}
.lp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.lp-faq-item.open .lp-faq-a {
  max-height: 1200px;
  padding: 0 24px 20px;
}
.lp-faq-a p {
  font-size: 0.88rem;
  color: #4A5568;
  line-height: 1.7;
}

/* Contact Cards */
.lp-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .lp-contact-grid { grid-template-columns: 1fr; gap: 16px; }
}
.lp-contact-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.lp-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: rgba(47, 99, 255, 0.2);
}
.lp-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.lp-contact-card h4 {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1A1A2E;
  margin-bottom: 8px;
}
.lp-contact-card p {
  font-size: 0.85rem;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 16px;
}
.lp-contact-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2F63FF;
  text-decoration: none;
  transition: all 0.2s;
  padding: 6px 0;
}
.lp-contact-link:hover {
  color: #2A58E8;
  letter-spacing: 0.02em;
}

/* ===== MANALY BRAND OVERRIDES (global public pages) ===== */
:root {
  --manaly-blue-1: #2f63ff;
  --manaly-blue-2: #123ed1;
  --manaly-blue-3: #2a58e8;
  --manaly-blue-soft: rgba(47, 99, 255, 0.08);
  --manaly-blue-border: rgba(47, 99, 255, 0.2);
}

body.landing ::selection {
  background: rgba(47, 99, 255, 0.2);
}

.lp-nav-logo {
  gap: 0;
}

.lp-nav-logo-icon {
  width: 297px;
  height: 76px;
  border-radius: 0;
  background: url("Charte%20graphique/Logo%20Manaly%20(500%20x%20250%20px)/logo%20noir.png") center / contain no-repeat;
  box-shadow: none !important;
}

.lp-nav-logo-icon svg,
.lp-nav-logo-text {
  display: none !important;
}

.lp-footer .lp-nav-logo-icon {
  background-image: url("Charte%20graphique/Logo%20Manaly%20(500%20x%20250%20px)/logo%20blanc.png");
}

.lp-btn-primary,
.lp-pricing-btn-fill,
.lp-pricing-badge,
.lp-tab-logo,
.lp-tab-chat-icon,
#tp-chatbot-btn,
#tp-chatbot-send,
#tp-chatbot-header,
.lp-step-number {
  background: linear-gradient(135deg, var(--manaly-blue-1), var(--manaly-blue-2)) !important;
}

.lp-btn-primary::before {
  background: linear-gradient(135deg, var(--manaly-blue-3), var(--manaly-blue-2)) !important;
}

.lp-gradient-text,
.lp-stat-value {
  background: linear-gradient(135deg, var(--manaly-blue-1), var(--manaly-blue-2)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.lp-section-label,
.lp-proof-badge,
.lp-feature-icon,
.lp-nav-dropdown-menu a:hover,
.lp-pricing-btn-outline:hover,
.lp-footer-socials a:hover,
.lp-faq-item.open,
.lp-contact-card:hover {
  border-color: var(--manaly-blue-border) !important;
}

.lp-section-label,
.lp-proof-badge,
.lp-feature-icon,
.lp-nav-dropdown-menu a:hover,
.lp-pricing-btn-outline:hover,
.lp-footer-socials a:hover {
  background-color: var(--manaly-blue-soft) !important;
}

.lp-feature-link,
.lp-contact-link,
.lp-faq-q:hover span,
.lp-nav-dropdown-menu a:hover {
  color: var(--manaly-blue-1) !important;
}

#tp-chatbot-messages,
#tp-chatbot-suggestions,
#tp-chatbot-input input {
  background: #f3f7ff !important;
}

/* Pages publiques avec styles inline (tarifs/aide/legal) */
.tarifs-hero,
.tarifs-cta {
  background: linear-gradient(180deg, rgba(47, 99, 255, 0.06) 0%, transparent 100%) !important;
}

.p-card.popular {
  border-color: var(--manaly-blue-1) !important;
  box-shadow: 0 0 0 2px rgba(47, 99, 255, 0.12), 0 16px 48px rgba(47, 99, 255, 0.1) !important;
}

.p-card.popular::before,
.p-btn-primary,
.help-btn,
.legal-hero .badge,
.lp-animate a[style*="linear-gradient"] {
  background: linear-gradient(135deg, var(--manaly-blue-1), var(--manaly-blue-2)) !important;
}

.hp-hero-label,
.hp-section-label {
  color: var(--manaly-blue-1) !important;
  background: linear-gradient(135deg, rgba(47, 99, 255, 0.08), rgba(18, 62, 209, 0.08)) !important;
}

.hp-hero h1 .hp-gradient,
.legal-hero h1 .gradient {
  background: linear-gradient(135deg, var(--manaly-blue-1), var(--manaly-blue-2)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

@media (max-width: 768px) {
  .lp-nav-logo-icon {
    width: 165px;
    height: 42px;
  }
}

/* ===== HOME ONLY: SaaS mockup style adaptation ===== */
body.home-saas {
  background: #f8fbff;
}

body.home-saas .lp-3d-scene,
body.home-saas #lp-robot-canvas {
  display: none !important;
}

body.home-saas .lp-hero {
  background:
    radial-gradient(90% 95% at 0% 100%, rgba(63, 126, 255, 0.28), transparent 58%),
    radial-gradient(90% 95% at 100% 100%, rgba(63, 126, 255, 0.28), transparent 58%),
    linear-gradient(180deg, #eef3ff 0%, #e6edff 42%, #dbe6ff 100%);
  padding: 148px 0 20px;
  position: relative;
  overflow: visible;
}

body.home-saas .lp-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 22%;
  width: min(980px, 88vw);
  height: 240px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(77, 138, 255, 0.2) 0%, rgba(77, 138, 255, 0.06) 42%, transparent 72%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

body.home-saas .lp-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 64px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, #ffffff 85%);
  clip-path: none;
}

body.home-saas .lp-hero .lp-container {
  z-index: 2;
}

body.home-saas .lp-hero .lp-container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 22px;
  opacity: 0.35;
  background-image:
    linear-gradient(to right, rgba(18, 62, 209, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(18, 62, 209, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.75) 44%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.75) 44%, transparent 78%);
}

body.home-saas .lp-hero-title {
  color: #101828;
}

body.home-saas .lp-hero .lp-gradient-text {
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: #1f4de0 !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

body.home-saas .lp-hero-subtitle {
  color: #4b5f83;
}

body.home-saas .lp-hero-users {
  margin-bottom: 26px;
}

body.home-saas .lp-nav:not(.scrolled) .lp-nav-links a,
body.home-saas .lp-nav:not(.scrolled) .lp-nav-actions .lp-btn-ghost,
body.home-saas .lp-nav:not(.scrolled) .lp-menu-toggle {
  color: #334155;
}

body.home-saas .lp-nav:not(.scrolled) .lp-nav-logo-icon {
  background-image: url("Charte%20graphique/Logo%20Manaly%20(500%20x%20250%20px)/logo%20noir.png");
}

body.home-saas .lp-nav.scrolled .lp-nav-logo-icon {
  background-image: url("Charte%20graphique/Logo%20Manaly%20(500%20x%20250%20px)/logo%20noir.png");
}

body.home-saas .lp-nav:not(.scrolled) .lp-btn-ghost {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

body.home-saas .lp-blob {
  display: block !important;
  opacity: 0.42;
  filter: blur(56px);
}

body.home-saas .lp-blob-1 {
  width: 340px;
  height: 340px;
  top: -90px;
  right: -80px;
  background: radial-gradient(circle, rgba(86, 156, 255, 0.46), rgba(41, 101, 235, 0.1) 65%, transparent 74%);
}

body.home-saas .lp-blob-2 {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: 26%;
  background: radial-gradient(circle, rgba(95, 164, 255, 0.4), rgba(37, 92, 232, 0.12) 64%, transparent 76%);
}

body.home-saas .lp-blob-3 {
  width: 240px;
  height: 240px;
  left: 50%;
  top: 22%;
  background: radial-gradient(circle, rgba(142, 194, 255, 0.24), rgba(50, 108, 241, 0.08) 62%, transparent 76%);
}

body.home-saas .lp-hero-mockup-wrap {
  max-width: 960px;
  margin-top: 24px;
  position: relative;
  z-index: 3;
  transform: translateY(74px);
}

body.home-saas .lp-hero-mockup {
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 26px 65px rgba(26, 67, 168, 0.22),
    0 6px 18px rgba(26, 67, 168, 0.14);
}

body.home-saas .lp-mockup-bar {
  background: linear-gradient(180deg, #f4f7ff 0%, #eef3ff 100%);
}

body.home-saas .lp-mockup-body {
  background: linear-gradient(180deg, #fafdff 0%, #f2f6ff 100%);
}

body.home-saas .lp-trust {
  background: #ffffff;
  border-top: none;
  border-bottom: 1px solid #edf2ff;
  padding: 154px 0 46px;
}

body.home-saas .lp-trust-logos {
  opacity: 0.6;
}

body.home-saas .lp-section {
  padding: 110px 0;
  background: #ffffff;
}

body.home-saas .lp-section-alt {
  background: #f9fbff;
}

body.home-saas .lp-section-header {
  margin-bottom: 64px;
}

body.home-saas .lp-section-title {
  color: #12245a;
}

body.home-saas .lp-section-subtitle {
  color: #6678a5;
}

body.home-saas .lp-feature-card,
body.home-saas .lp-testimonial,
body.home-saas .lp-pricing-card,
body.home-saas .lp-faq-item,
body.home-saas .lp-contact-card {
  border-color: #e8eeff;
  box-shadow: 0 8px 30px rgba(22, 53, 158, 0.05);
}

body.home-saas .lp-feature-card:hover,
body.home-saas .lp-testimonial:hover,
body.home-saas .lp-pricing-card:hover,
body.home-saas .lp-contact-card:hover {
  box-shadow: 0 20px 50px rgba(22, 53, 158, 0.12);
}

body.home-saas .lp-pricing-card.popular {
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  transform: translateY(-6px);
}

body.home-saas .lp-final-cta {
  background: #edf5ff;
  padding: 96px 0;
}

body.home-saas .lp-final-cta-box {
  background: transparent;
  border: none;
  box-shadow: none;
}

body.home-saas .lp-final-cta-box::before {
  display: none;
}

body.home-saas .lp-footer {
  background: linear-gradient(135deg, #1232ad 0%, #0f2a93 100%);
  border-top: none;
}

body.home-saas .lp-footer .lp-footer-col-title,
body.home-saas .lp-footer .lp-nav-logo-text,
body.home-saas .lp-footer .lp-nav-logo-text span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

body.home-saas .lp-footer .lp-footer-col a,
body.home-saas .lp-footer .lp-footer-brand p,
body.home-saas .lp-footer .lp-footer-bottom p {
  color: rgba(206, 220, 255, 0.88);
}

@media (max-width: 768px) {
  body.home-saas .lp-hero {
    padding: 120px 0 10px;
  }

  body.home-saas .lp-hero::after {
    bottom: -1px;
    height: 38px;
  }

  body.home-saas .lp-hero::before {
    width: 94vw;
    height: 160px;
    top: 24%;
    filter: blur(18px);
  }

  body.home-saas .lp-hero-mockup-wrap {
    margin-top: 16px;
    transform: translateY(42px);
  }

  body.home-saas .lp-trust {
    padding-top: 92px;
  }

  body.home-saas .lp-section {
    padding: 78px 0;
  }
}

/* ===== LOGIN PAGE: SaaS blue visual ===== */
body.page-login {
  background: linear-gradient(180deg, #f6f9ff 0%, #eef4ff 100%) !important;
  background-image:
    radial-gradient(ellipse at 12% 24%, rgba(47, 99, 255, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 88% 12%, rgba(18, 62, 209, 0.1) 0%, transparent 50%) !important;
}

body.page-login .lp-nav {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid #e5edff !important;
}

body.page-login .auth-tab.active {
  border-bottom-color: var(--manaly-blue-1) !important;
  color: #1438b8 !important;
}

body.page-login .login-input:focus,
body.page-login .login-select:focus {
  border-color: var(--manaly-blue-1) !important;
  box-shadow: 0 0 0 3px rgba(47, 99, 255, 0.14) !important;
}

body.page-login .login-btn {
  background: linear-gradient(135deg, var(--manaly-blue-1), var(--manaly-blue-2)) !important;
  box-shadow: 0 8px 24px rgba(47, 99, 255, 0.3) !important;
}

body.page-login .link-text,
body.page-login .back-link,
body.page-login .module-card.selected {
  color: var(--manaly-blue-1) !important;
}

body.page-login .module-card.selected {
  border-color: var(--manaly-blue-1) !important;
  background: rgba(47, 99, 255, 0.06) !important;
  box-shadow: 0 0 0 3px rgba(47, 99, 255, 0.12) !important;
}

body.page-login .login-page-offset {
  padding-top: 42px !important;
}

/* ===== TARIFS PAGE: SaaS blue visual ===== */
body.page-tarifs .tarifs-hero {
  background: linear-gradient(180deg, rgba(47, 99, 255, 0.09) 0%, rgba(47, 99, 255, 0.02) 55%, transparent 100%) !important;
}

body.page-tarifs .tarifs-hero h1 span {
  background: linear-gradient(135deg, var(--manaly-blue-1), var(--manaly-blue-2)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

body.page-tarifs .pricing-section {
  position: relative;
}

body.page-tarifs .p-card {
  border-color: #e4ebff !important;
  box-shadow: 0 8px 26px rgba(20, 56, 184, 0.05);
}

body.page-tarifs .p-card.popular {
  border-color: var(--manaly-blue-1) !important;
  box-shadow: 0 0 0 2px rgba(47, 99, 255, 0.14), 0 18px 54px rgba(20, 56, 184, 0.12) !important;
}

body.page-tarifs .p-btn-primary {
  background: linear-gradient(135deg, var(--manaly-blue-1), var(--manaly-blue-2)) !important;
  box-shadow: 0 8px 26px rgba(47, 99, 255, 0.28) !important;
}
