/*
 * LOLASMM ELITE DESIGN SYSTEM v3.0
 * Premium Dark SaaS â€” Public Pages (body.home)
 * CSS custom uniquement â€” aucun Bootstrap override pour body.user
 */

/* ============================================================
   1. VARIABLES
   ============================================================ */
:root {
  --el-bg:        #0A0A0F;
  --el-surface:   #12121F;
  --el-surface-h: #1A1A2E;
  --el-violet:    #8B5CF6;
  --el-cyan:      #06B6D4;
  --el-indigo:    #6366F1;
  --el-violet-l:  #A78BFA;
  --el-text:      #F1F5F9;
  --el-text-2:    #CBD5E1;
  --el-text-3:    #94A3B8;
  --el-text-4:    #64748B;
  --el-text-5:    #475569;
  --el-success:   #22C55E;
  --el-danger:    #EF4444;
  --el-border:    rgba(139,92,246,0.12);
  --el-border-h:  rgba(139,92,246,0.3);
  --el-shadow:    0 4px 24px rgba(0,0,0,0.35);
  --el-shadow-h:  0 8px 40px rgba(139,92,246,0.15);
  --el-grad:      linear-gradient(135deg,#8B5CF6,#6366F1);
  --el-grad-cw:   linear-gradient(135deg,#A78BFA,#06B6D4);
  --el-r:         16px;
  --el-r-lg:      24px;
  --el-ease:      0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   2. RESET + GLOBAL  (body.home scope only)
   ============================================================ */
body.home {
  background: var(--el-bg) !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  color: var(--el-text) !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.home *, body.home *::before, body.home *::after { box-sizing: border-box; }
body.home a { text-decoration: none; color: inherit; }
body.home img { max-width: 100%; display: block; }
body.home ul { list-style: none; margin: 0; padding: 0; }
body.home h1,body.home h2,body.home h3,body.home h4 { margin: 0; }
body.home p { margin: 0; }

/* gradient text utility */
body.home .grad-text {
  background: var(--el-grad-cw);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* section helper */
body.home .el-section { padding: 96px 0; }
body.home .el-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* Alerts */
body.home .el-alert {
  padding: 12px 16px;
  border-radius: var(--el-r);
  margin-bottom: 16px;
  font-size: 14px;
}
body.home .el-alert-danger  { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); color: #FCA5A5; }
body.home .el-alert-success { background: rgba(34,197,94,0.12);  border: 1px solid rgba(34,197,94,0.3);  color: #86EFAC; }

/* ============================================================
   3. NAVBAR
   ============================================================ */
body.home .elite-nav {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,15,0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139,92,246,0.08);
  padding: 0 48px;
  gap: 24px;
  overflow: hidden;
}

body.home .elite-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
body.home .elite-nav-logo-img {
  display: block !important;
  height: 32px !important;
  width: auto !important;
  max-width: 100px !important;
  max-height: 32px !important;
  min-width: 0 !important;
  object-fit: contain !important;
  border-radius: 6px;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
}
body.home .elite-nav-logo-text {
  font-size: 22px;
  font-weight: 800;
  background: var(--el-grad-cw);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

body.home .elite-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
body.home .elite-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--el-text-3);
  transition: color var(--el-ease);
}
body.home .elite-nav-links a:hover,
body.home .elite-nav-links a.active { color: var(--el-text); }

body.home .elite-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Buttons */
body.home .btn-ghost {
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--el-text-2);
  border: 1px solid rgba(139,92,246,0.2);
  background: transparent;
  cursor: pointer;
  transition: all var(--el-ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
body.home .btn-ghost:hover {
  color: var(--el-text);
  border-color: rgba(139,92,246,0.5);
  background: rgba(139,92,246,0.06);
}

body.home .btn-primary {
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--el-grad);
  border: none;
  cursor: pointer;
  transition: all var(--el-ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
body.home .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139,92,246,0.35);
  color: #fff;
}

body.home .btn-outline {
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--el-violet-l);
  border: 1px solid rgba(139,92,246,0.3);
  background: transparent;
  cursor: pointer;
  transition: all var(--el-ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
body.home .btn-outline:hover {
  border-color: rgba(139,92,246,0.6);
  background: rgba(139,92,246,0.07);
  color: var(--el-text);
  transform: translateY(-2px);
}

body.home .btn-lg {
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
}

/* Hamburger */
body.home .elite-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
body.home .elite-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--el-text-2);
  border-radius: 2px;
  transition: all var(--el-ease);
}
body.home .elite-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.home .elite-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.home .elite-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
body.home .elite-nav-drawer {
  position: fixed;
  top: 72px; right: 0;
  width: 280px;
  height: calc(100vh - 72px);
  background: var(--el-surface);
  border-left: 1px solid var(--el-border);
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--el-ease);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.home .elite-nav-drawer.open { transform: translateX(0); }
body.home .elite-nav-drawer a {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--el-text-2);
  transition: all var(--el-ease);
}
body.home .elite-nav-drawer a:hover {
  background: rgba(139,92,246,0.08);
  color: var(--el-text);
}
body.home .elite-nav-drawer .drawer-divider {
  height: 1px;
  background: var(--el-border);
  margin: 12px 0;
}

/* ============================================================
   4. HERO SECTION
   ============================================================ */
body.home .elite-hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
body.home .elite-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -5%;
  width: 650px; height: 650px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.09;
  pointer-events: none;
  animation: meshBlob1 15s ease-in-out infinite;
}
body.home .elite-hero::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -5%;
  width: 550px; height: 550px;
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.07;
  pointer-events: none;
  animation: meshBlob2 18s ease-in-out infinite;
}

body.home .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

body.home .hero-content { min-width: 0; }
body.home .hero-subtitle,
body.home .hero-slogan { overflow-wrap: break-word; }

body.home .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.25);
  font-size: 13px;
  font-weight: 500;
  color: var(--el-violet-l);
  margin-bottom: 24px;
}
body.home .hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--el-violet);
  animation: pulse-dot 2s infinite;
}

body.home .hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--el-text);
  margin-bottom: 24px;
}

body.home .hero-subtitle {
  font-size: 18px;
  color: var(--el-text-4);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 40px;
}
body.home .hero-slogan {
  font-size: clamp(15px, 1.5vw, 18px);
  white-space: normal;
  max-width: 560px;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  body.home .hero-slogan { white-space: normal; }
}

body.home .hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   5. AUTH CARD (login / signup)
   ============================================================ */
body.home .elite-auth-card {
  background: var(--el-surface);
  border: 1px solid var(--el-border);
  border-radius: var(--el-r-lg);
  padding: 40px;
  box-shadow: var(--el-shadow);
  transition: box-shadow var(--el-ease);
}
body.home .elite-auth-card:hover {
  box-shadow: var(--el-shadow-h);
  border-color: rgba(139,92,246,0.2);
}

body.home .auth-card-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  background: var(--el-grad-cw);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.home .auth-card-subtitle {
  font-size: 14px;
  color: var(--el-text-4);
  text-align: center;
  margin-bottom: 28px;
}

/* Form inputs */
body.home .el-field { margin-bottom: 16px; }
body.home .el-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--el-text-2);
  margin-bottom: 8px;
}
body.home .el-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
body.home .el-input-icon {
  position: absolute;
  left: 14px;
  color: var(--el-text-5);
  pointer-events: none;
  display: flex;
  align-items: center;
}
body.home .el-input {
  width: 100%;
  background: var(--el-surface-h);
  border: 1px solid rgba(139,92,246,0.12);
  border-radius: 10px;
  padding: 12px 16px 12px 44px;
  font-size: 15px;
  font-family: inherit;
  color: var(--el-text);
  transition: border-color var(--el-ease), box-shadow var(--el-ease);
  outline: none;
  -webkit-appearance: none;
}
body.home .el-input::placeholder { color: var(--el-text-5); }
body.home .el-input:focus {
  border-color: rgba(139,92,246,0.5);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
}

body.home .el-checkbox-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0 20px;
}
body.home .el-checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--el-text-3) !important;
  cursor: pointer;
}
body.home .el-checkbox {
  width: 16px; height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(139,92,246,0.3);
  background: transparent;
  cursor: pointer;
  accent-color: var(--el-violet);
}
body.home .el-forgot {
  font-size: 14px;
  color: var(--el-violet);
  transition: color var(--el-ease);
}
body.home .el-forgot:hover { color: var(--el-violet-l); }

body.home .btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--el-grad);
  border: none;
  cursor: pointer;
  transition: all var(--el-ease);
  margin-bottom: 16px;
}
body.home .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139,92,246,0.4);
}

body.home .auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  font-size: 13px;
  color: var(--el-text-5);
}
body.home .auth-divider::before,
body.home .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--el-border);
}

body.home .auth-footer-link {
  text-align: center;
  font-size: 14px;
  color: var(--el-text-4);
  margin-top: 20px;
}
body.home .auth-footer-link a {
  color: var(--el-violet);
  font-weight: 500;
  transition: color var(--el-ease);
}
body.home .auth-footer-link a:hover { color: var(--el-violet-l); }

body.home .btn-google {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--el-text-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--el-border);
  cursor: pointer;
  transition: all var(--el-ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
body.home .btn-google:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(139,92,246,0.25);
  color: var(--el-text);
}

/* recaptcha */
body.home .g-recaptcha { margin: 12px 0; }

/* standalone auth page (signup) */
body.home .elite-auth-page {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home .elite-auth-wrap {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   6. SOCIAL TICKER
   ============================================================ */
body.home .elite-ticker {
  padding: 40px 0;
  border-top: 1px solid var(--el-border);
  border-bottom: 1px solid var(--el-border);
  overflow: hidden;
  background: rgba(18,18,31,0.5);
}
body.home .ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
  align-items: center;
}
body.home .ticker-track:hover { animation-play-state: paused; }
body.home .ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--el-text-5);
  font-size: 13px;
  font-weight: 500;
  transition: color var(--el-ease);
}
body.home .ticker-item:hover { color: var(--el-violet-l); }
body.home .ticker-item svg {
  width: 20px; height: 20px;
  fill: currentColor;
  transition: color var(--el-ease), transform var(--el-ease);
}
body.home .ticker-item:hover svg { transform: translateY(-2px); }

/* ============================================================
   7. STATS SECTION
   ============================================================ */
body.home .elite-stats {
  padding: 80px 0;
}
body.home .stats-card {
  background: linear-gradient(135deg,rgba(139,92,246,0.05) 0%,rgba(6,182,212,0.05) 100%);
  border: 1px solid var(--el-border);
  border-radius: var(--el-r-lg);
  padding: 64px 48px;
  text-align: center;
}
body.home .stats-number {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  background: var(--el-grad-cw);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
body.home .stats-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--el-text-4);
  margin-bottom: 40px;
}
body.home .stats-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
body.home .stats-badge {
  padding: 8px 20px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 500;
  color: var(--el-text-3);
}
body.home .stats-badge--icon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* ============================================================
   8. FEATURE CARDS (How to use)
   ============================================================ */
body.home .elite-features {
  padding: 80px 0;
}
body.home .section-header {
  text-align: center;
  margin-bottom: 56px;
}
body.home .section-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 9999px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  font-size: 12px;
  font-weight: 600;
  color: var(--el-violet-l);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
body.home .section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--el-text);
  margin-bottom: 16px;
  line-height: 1.2;
}
body.home .section-subtitle {
  font-size: 16px;
  color: var(--el-text-4);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

body.home .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
body.home .el-card {
  background: var(--el-surface);
  border: 1px solid var(--el-border);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all var(--el-ease);
  position: relative;
  overflow: hidden;
}
body.home .el-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.4), transparent);
  opacity: 0;
  transition: opacity var(--el-ease);
}
body.home .el-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.3);
  box-shadow: var(--el-shadow-h);
}
body.home .el-card:hover::before { opacity: 1; }

body.home .card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg,rgba(139,92,246,0.15),rgba(99,102,241,0.15));
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}
body.home .card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--el-text);
  margin-bottom: 12px;
}
body.home .card-desc {
  font-size: 14px;
  color: var(--el-text-4);
  line-height: 1.6;
}

/* ============================================================
   9. WHY CHOOSE US
   ============================================================ */
body.home .elite-why {
  padding: 80px 0;
  background: rgba(18,18,31,0.4);
}
body.home .why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
body.home .why-card {
  background: var(--el-surface);
  border: 1px solid var(--el-border);
  border-radius: 16px;
  padding: 28px 24px;
  border-top: 2px solid transparent;
  border-image: linear-gradient(135deg,var(--el-violet),var(--el-cyan)) 1;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  transition: all var(--el-ease);
}
body.home .why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(139,92,246,0.1);
}
body.home .why-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
body.home .why-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--el-text);
  margin-bottom: 8px;
}
body.home .why-desc {
  font-size: 13px;
  color: var(--el-text-4);
  line-height: 1.5;
}

/* ============================================================
   10. HOW IT WORKS
   ============================================================ */
body.home .elite-how {
  padding: 80px 0;
}
body.home .how-steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  position: relative;
}
body.home .how-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(16.66% + 28px); right: calc(16.66% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--el-violet), var(--el-cyan));
  opacity: 0.3;
}
body.home .how-step { text-align: center; padding: 0 24px; }
body.home .step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--el-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(139,92,246,0.08);
}
body.home .step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--el-text);
  margin-bottom: 10px;
}
body.home .step-desc {
  font-size: 14px;
  color: var(--el-text-4);
  line-height: 1.6;
}

/* ============================================================
   11. TESTIMONIALS
   ============================================================ */
body.home .elite-testimonials {
  padding: 80px 0;
  background: rgba(18,18,31,0.4);
}
body.home .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
body.home .testi-card {
  background: var(--el-surface);
  border: 1px solid var(--el-border);
  border-radius: var(--el-r);
  padding: 28px 24px;
  transition: all var(--el-ease);
}
body.home .testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
body.home .testi-text {
  font-size: 14px;
  color: var(--el-text-3);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
body.home .testi-quote {
  font-size: 28px;
  color: rgba(139,92,246,0.3);
  line-height: 1;
  margin-bottom: 8px;
  font-style: normal;
}
body.home .testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
body.home .testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(139,92,246,0.2);
  background: var(--el-surface-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--el-violet-l);
  flex-shrink: 0;
}
body.home .testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--el-text);
}
body.home .testi-role {
  font-size: 12px;
  color: var(--el-text-4);
  margin-top: 2px;
}
body.home .testi-stars {
  color: #F59E0B;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ============================================================
   12. CTA BANNER
   ============================================================ */
body.home .elite-cta {
  padding: 80px 0;
}
body.home .cta-inner {
  background: linear-gradient(135deg,rgba(139,92,246,0.1) 0%,rgba(6,182,212,0.08) 100%);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--el-r-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.home .cta-inner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.08), transparent 70%);
  pointer-events: none;
}
body.home .cta-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--el-text);
  margin-bottom: 12px;
}
body.home .cta-sub {
  font-size: 16px;
  color: var(--el-text-4);
  margin-bottom: 32px;
}

/* ============================================================
   13. FOOTER
   ============================================================ */
body.home .elite-footer {
  background: var(--el-bg);
  border-top: 1px solid var(--el-border);
  padding: 64px 0 0;
}
body.home .footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
body.home .footer-brand-logo {
  font-size: 20px;
  font-weight: 800;
  background: var(--el-grad-cw);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
body.home .footer-brand-desc {
  font-size: 14px;
  color: var(--el-text-4);
  line-height: 1.6;
  max-width: 260px;
}
body.home .footer-col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--el-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
body.home .footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.home .footer-links a {
  font-size: 14px;
  color: var(--el-text-4);
  transition: color var(--el-ease);
  display: flex;
  align-items: center;
  gap: 6px;
}
body.home .footer-links a:hover { color: var(--el-violet-l); }
body.home .footer-bottom {
  border-top: 1px solid var(--el-border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--el-text-5);
}
body.home .footer-bottom a {
  color: var(--el-text-5);
  transition: color var(--el-ease);
}
body.home .footer-bottom a:hover { color: var(--el-violet-l); }
/* LOLASMM: footer payment logos (auto-listed from /images/payment-logos) */
body.home .footer-pay-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
body.home .footer-pay-logos img { height: 34px; width: auto; max-width: 80px; border-radius: 6px; background: #fff; padding: 4px 6px; object-fit: contain; }
/* LOLASMM: social engagement showcase illustration (home) */
body.home .lola-showcase { padding: 80px 0; text-align: center; }
body.home .lola-showcase-img { margin: 40px auto 0; max-width: 980px; border-radius: 20px; overflow: hidden; border: 1px solid var(--el-border); box-shadow: 0 24px 70px rgba(0,0,0,.45); }
body.home .lola-showcase-img img { display: block; width: 100%; height: auto; }
@media (max-width: 767px) { body.home .lola-showcase { padding: 48px 0; } body.home .lola-showcase-img { border-radius: 14px; margin-top: 28px; } }

/* Private contact (auth users only) */
body.home .footer-private-contact {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
body.home .footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.15);
  font-size: 13px;
  color: var(--el-text-3);
  transition: all var(--el-ease);
}
body.home .footer-contact-link:hover {
  background: rgba(139,92,246,0.12);
  color: var(--el-text);
}

/* ============================================================
   14. SERVICES PAGE
   ============================================================ */
body.home .elite-page-header {
  padding: 120px 0 48px;
  text-align: center;
}
body.home .elite-page-header h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
}
body.home .breadcrumb-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--el-text-4);
}
body.home .breadcrumb-bar a { color: var(--el-violet); }
body.home .breadcrumb-bar span { color: var(--el-text-5); }

body.home .services-page { padding-bottom: 80px; }

body.home .services-filter-bar {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
body.home .el-select {
  background: var(--el-surface) !important;
  border: 1px solid var(--el-border) !important;
  border-radius: 10px !important;
  padding: 10px 40px 10px 14px !important;
  font-size: 14px;
  font-family: inherit;
  color: var(--el-text-2) !important;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  min-width: 200px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  transition: border-color var(--el-ease);
}
body.home .el-select:focus { border-color: rgba(139,92,246,0.4); }

body.home .el-search-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
}
body.home .el-search-wrap svg {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--el-text-5);
  pointer-events: none;
}
body.home .el-search {
  width: 100%;
  background: var(--el-surface);
  border: 1px solid var(--el-border);
  border-radius: 10px;
  padding: 10px 16px 10px 42px;
  font-size: 14px;
  font-family: inherit;
  color: var(--el-text);
  outline: none;
  transition: border-color var(--el-ease), box-shadow var(--el-ease);
}
body.home .el-search::placeholder { color: var(--el-text-5); }
body.home .el-search:focus {
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.08);
}

body.home .services-table-wrap {
  background: var(--el-surface);
  border: 1px solid var(--el-border);
  border-radius: var(--el-r);
  overflow: hidden;
  overflow-x: auto;
}
body.home .el-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
body.home .el-table thead tr {
  background: rgba(139,92,246,0.06);
  border-bottom: 1px solid var(--el-border);
}
body.home .el-table thead th {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--el-violet-l);
  white-space: nowrap;
  text-align: left;
}
body.home .el-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(139,92,246,0.05);
  color: var(--el-text-2);
  vertical-align: middle;
}
body.home .el-table tbody tr:last-child td { border-bottom: none; }
body.home .el-table tbody tr:hover td { background: rgba(139,92,246,0.04); }
body.home .el-table .service-category-row td {
  background: rgba(139,92,246,0.05);
  font-weight: 600;
  color: var(--el-violet-l);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
body.home .price-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.2);
  color: var(--el-cyan);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
body.home .el-table .hidden { display: none; }
body.home .el-btn-desc {
  background: transparent;
  border: 1px solid var(--el-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--el-text-4);
  cursor: pointer;
  transition: all var(--el-ease);
}
body.home .el-btn-desc:hover {
  border-color: var(--el-violet);
  color: var(--el-violet-l);
}

/* ============================================================
   15. API PAGE
   ============================================================ */
body.home .elite-api { padding-bottom: 80px; }
body.home .api-card {
  background: var(--el-surface);
  border: 1px solid var(--el-border);
  border-radius: var(--el-r-lg);
  padding: 40px;
  margin-bottom: 32px;
}
body.home .api-key-block {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--el-bg);
  border: 1px solid var(--el-border);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 16px 0;
}
body.home .api-key-val {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--el-cyan);
  word-break: break-all;
}
body.home .api-key-copy {
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--el-violet-l);
  cursor: pointer;
  transition: all var(--el-ease);
  white-space: nowrap;
}
body.home .api-key-copy:hover {
  background: rgba(139,92,246,0.2);
}
body.home .api-method-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 8px;
}
body.home .badge-post { background: rgba(34,197,94,0.15); color: #4ADE80; border: 1px solid rgba(34,197,94,0.2); }
body.home .badge-get  { background: rgba(6,182,212,0.15); color: var(--el-cyan); border: 1px solid rgba(6,182,212,0.2); }
body.home .api-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0;
}
body.home .api-table th {
  background: rgba(139,92,246,0.06);
  padding: 10px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--el-violet-l);
  letter-spacing: 0.08em;
}
body.home .api-table td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(139,92,246,0.05);
  color: var(--el-text-2);
}
body.home .api-table code {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--el-cyan);
  background: rgba(6,182,212,0.08);
  padding: 2px 6px;
  border-radius: 4px;
}
body.home .api-pre {
  background: var(--el-bg);
  border: 1px solid var(--el-border);
  border-radius: 10px;
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #86EFAC;
  overflow-x: auto;
  line-height: 1.6;
  margin: 16px 0;
}
body.home .api-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--el-text);
  margin: 32px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
body.home .api-info-table { border: 1px solid var(--el-border); border-radius: 10px; overflow: hidden; }
body.home .api-info-table td:first-child { width: 160px; font-weight: 500; color: var(--el-text-3); }
body.home .api-info-table td { padding: 12px 16px; border-bottom: 1px solid rgba(139,92,246,0.05); }
body.home .api-info-table tr:last-child td { border-bottom: none; }

/* ============================================================
   16. FAQ PAGE
   ============================================================ */
body.home .elite-faq { padding-bottom: 80px; }
body.home .faq-list { max-width: 760px; margin: 0 auto; }
body.home .faq-item {
  border-bottom: 1px solid rgba(139,92,246,0.08);
}
body.home .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
}
body.home .faq-q-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--el-text);
  flex: 1;
  transition: color var(--el-ease);
}
body.home .faq-item.open .faq-q-text { color: var(--el-violet-l); }
body.home .faq-chevron {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--el-ease);
}
body.home .faq-item.open .faq-chevron {
  background: rgba(139,92,246,0.2);
  transform: rotate(180deg);
}
body.home .faq-chevron svg {
  width: 12px; height: 12px;
  fill: none;
  stroke: var(--el-violet-l);
  stroke-width: 2;
  stroke-linecap: round;
}
body.home .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
body.home .faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--el-text-3);
  line-height: 1.7;
}

/* ============================================================
   17. TERMS PAGE
   ============================================================ */
body.home .elite-terms { padding-bottom: 80px; }
body.home .terms-card {
  background: var(--el-surface);
  border: 1px solid var(--el-border);
  border-radius: var(--el-r-lg);
  padding: 56px;
  max-width: 800px;
  margin: 0 auto;
}
body.home .terms-card h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}
body.home .terms-updated {
  font-size: 14px;
  color: var(--el-text-4);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--el-border);
}
body.home .terms-section { margin-bottom: 32px; }
body.home .terms-section h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--el-violet-l);
  margin-bottom: 12px;
}
body.home .terms-section p, body.home .terms-section li {
  font-size: 15px;
  color: var(--el-text-3);
  line-height: 1.7;
  margin-bottom: 8px;
}
body.home .terms-section ul {
  padding-left: 20px;
}
body.home .terms-section ul li { list-style: disc; }
body.home .terms-contact {
  background: rgba(139,92,246,0.06);
  border: 1px solid rgba(139,92,246,0.12);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 12px;
}
body.home .terms-contact a { color: var(--el-violet); }
body.home .terms-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--el-border);
  font-size: 13px;
  color: var(--el-text-5);
  text-align: center;
}

/* ============================================================
   18. ANIMATIONS
   ============================================================ */
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
body.home .fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}
body.home .fade-in-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
body.home .fade-in-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
body.home .fade-in-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
body.home .el-reveal {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* JS adds reveal-ready class before observing — only THEN hide the element */
body.home .el-reveal.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
}
body.home .el-reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ============================================================
   19. RESPONSIVE
   ============================================================ */

/* 1024px â€” tablet landscape */
@media (max-width: 1279px) {
  body.home .elite-nav { padding: 0 24px; }
  body.home .why-grid { grid-template-columns: repeat(2,1fr); }
  body.home .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  body.home .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px; }
}

/* 1024px â€” tablets */
@media (max-width: 1023px) {
  body.home .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  body.home .elite-auth-card { max-width: 480px; margin: 0 auto; }
  body.home .hero-title { font-size: 42px; }
  body.home .hero-subtitle { max-width: 100%; }
  body.home .cards-grid { grid-template-columns: repeat(2,1fr); }
  body.home .how-steps::before { display: none; }
}

/* 768px â€” hamburger nav */
@media (max-width: 767px) {
  body.home .elite-nav { padding: 0 20px; height: 64px; }
  body.home .elite-nav-links { display: none; }
  body.home .elite-nav-actions .btn-ghost,
  body.home .elite-nav-actions .btn-primary { display: none; }
  body.home .elite-hamburger { display: flex; }
  body.home .elite-nav-drawer { top: 64px; height: calc(100vh - 64px); }
  body.home .elite-nav-drawer .btn-ghost,
  body.home .elite-nav-drawer .btn-primary { display: flex; width: 100%; justify-content: center; }

  body.home .elite-hero { padding-top: 100px; }
  body.home .hero-title { font-size: 36px; }
  body.home .hero-cta { flex-direction: column; }
  body.home .hero-cta .btn-lg { width: 100%; justify-content: center; }

  body.home .el-section { padding: 64px 0; }
  body.home .el-container { padding: 0 20px; }

  body.home .cards-grid { grid-template-columns: 1fr; }
  body.home .why-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  body.home .how-steps { grid-template-columns: 1fr; gap: 40px; }
  body.home .how-steps::before { display: none; }
  body.home .testimonials-grid { grid-template-columns: 1fr; }
  body.home .stats-badges { flex-direction: column; align-items: center; }
  body.home .stats-number { font-size: 48px; }
  body.home .section-title { font-size: 28px; }
  body.home .cta-inner { padding: 40px 24px; }
  body.home .cta-title { font-size: 24px; }
  body.home .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  body.home .footer-grid .footer-col:last-child { display: block; }
  body.home .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  body.home .terms-card { padding: 32px 20px; }
  body.home .elite-page-header { padding: 100px 0 32px; }
  body.home .elite-page-header h1 { font-size: 28px; }
  body.home .api-card { padding: 24px 20px; }
  body.home .ticker-track { gap: 32px; }
  body.home .elite-auth-card { padding: 28px 24px; }
}

/* 480px */
@media (max-width: 479px) {
  body.home .hero-title { font-size: 30px; }
  body.home .why-grid { grid-template-columns: 1fr; }
  body.home .stats-number { font-size: 40px; }
  body.home .hero-badge { font-size: 12px; }
}

/* Hero stats (compact inline counters in hero section) */
body.home .hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 32px 0;
}
body.home .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.home .hero-stat .stats-number {
  font-size: 36px;
  margin-bottom: 0;
}
body.home .hero-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--el-text-5);
}

/* Mobile : réduire la taille des pastilles de confiance pour qu'elles tiennent proprement (wrap naturel conservé) */
@media (max-width: 640px) {
  body.home .hero-trust li { font-size: .72rem !important; padding: 6px 11px !important; gap: 5px !important; }
}
@media (max-width: 380px) {
  body.home .hero-trust li { font-size: .66rem !important; padding: 5px 9px !important; }
}

/* Section wrappers (padding-only, inner grids handle layout) */
body.home .how-section,
body.home .why-section,
body.home .testimonials-section { padding: 80px 0; }
body.home .how-section { background: rgba(139,92,246,0.03); }
body.home .testimonials-section { background: var(--el-surface); }

/* How-It-Works connector line between steps */
body.home .how-connector {
  display: none;
}

/* Auth extras row (remember + forgot) */
body.home .auth-extras {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0 20px;
  gap: 8px;
}
body.home .auth-forgot {
  font-size: 13px;
  color: var(--el-violet);
  white-space: nowrap;
  flex-shrink: 0;
}
body.home .auth-forgot:hover { color: var(--el-violet-l); }

/* Footer brand logo text style when no image */
body.home .footer-brand-logo { display: block; }

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  body.home * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   20. ANIMATED HERO BACKGROUND â€” MESH BLOBS
   ============================================================ */
@keyframes meshBlob1 {
  0%,100% { transform: translate(0,0) scale(1); }
  25%      { transform: translate(60px,40px) scale(1.08); }
  50%      { transform: translate(20px,80px) scale(0.94); }
  75%      { transform: translate(-40px,20px) scale(1.04); }
}
@keyframes meshBlob2 {
  0%,100% { transform: translate(0,0) scale(1); }
  25%      { transform: translate(-50px,-30px) scale(1.06); }
  50%      { transform: translate(-20px,-60px) scale(0.96); }
  75%      { transform: translate(40px,-20px) scale(1.10); }
}

/* ============================================================
   21. STAT SUFFIX (+, %)
   ============================================================ */
body.home .stat-suffix {
  font-size: 0.65em;
  font-weight: 900;
  background: var(--el-grad-cw);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  vertical-align: baseline;
  display: inline;
  line-height: 1;
}

/* ============================================================
   22. SOCIAL TICKER â€” BRAND COLORS (always on, via si-* class)
   ============================================================ */
body.home .ticker-item { color: var(--el-text-5); }
body.home .ticker-item svg { fill: currentColor; }

body.home .ticker-item .si-instagram { color: #E4405F; }
body.home .ticker-item .si-tiktok    { color: #25F4EE; }
body.home .ticker-item .si-youtube   { color: #FF0000; }
body.home .ticker-item .si-facebook  { color: #1877F2; }
body.home .ticker-item .si-twitter   { color: #E7E9EA; }
body.home .ticker-item .si-telegram  { color: #0088CC; }
body.home .ticker-item .si-snapchat  { color: #FEFC5A; }
body.home .ticker-item .si-pinterest { color: #E60023; }
body.home .ticker-item .si-reddit    { color: #FF4500; }
body.home .ticker-item .si-spotify   { color: #1DB954; }
body.home .ticker-item .si-discord   { color: #5865F2; }
body.home .ticker-item .si-twitch    { color: #9146FF; }
body.home .ticker-item .si-linkedin  { color: #0A66C2; }

body.home .ticker-item:hover { color: var(--el-text-2); transform: translateY(-2px); }

/* ============================================================
   23. CHILD PANEL SECTION
   ============================================================ */
body.home .child-panel-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: rgba(18,18,31,0.3);
}
body.home .child-panel-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.07), transparent 70%);
  pointer-events: none;
}
body.home .child-panel-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(6,182,212,0.05), transparent 70%);
  pointer-events: none;
}
body.home .child-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  body.home .child-panel-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}
body.home .child-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  color: var(--el-violet-l);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
body.home .child-panel-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--el-text);
  margin-bottom: 16px;
}
body.home .child-panel-desc {
  font-size: 16px;
  color: var(--el-text-4);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
}
body.home .child-panel-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}
body.home .child-panel-price {
  font-size: 52px;
  font-weight: 900;
  background: var(--el-grad-cw);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
body.home .child-panel-price .price-per {
  font-size: 18px;
  font-weight: 500;
  -webkit-text-fill-color: var(--el-text-4);
  color: var(--el-text-4);
}
body.home .child-panel-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
body.home .child-panel-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--el-text-3);
  font-size: 15px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
body.home .child-panel-features li:last-child { border-bottom: none; }
body.home .child-panel-features li .cp-check { color: var(--el-success); flex-shrink: 0; }
body.home .child-panel-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Mockup card */
body.home .child-panel-mockup {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(145deg, #12121f, #0e0e1a);
  border: 1px solid rgba(139,92,246,0.14);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
body.home .child-panel-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), transparent);
}
body.home .mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
body.home .mockup-logo {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--el-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
body.home .mockup-brand {
  font-size: 14px;
  font-weight: 700;
  color: var(--el-text);
}
body.home .mockup-brand span { font-weight: 400; color: var(--el-text-4); }
body.home .mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-bottom: 20px;
}
body.home .mockup-stat {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}
body.home .mockup-stat-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--el-text);
}
body.home .mockup-stat-label {
  font-size: 9px;
  color: var(--el-text-5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}
body.home .mockup-label {
  font-size: 10px;
  color: var(--el-text-5);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
body.home .mockup-themes { display: flex; gap: 8px; flex-wrap: wrap; }
body.home .mockup-theme-dot {
  width: 24px; height: 24px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
}
body.home .mockup-theme-dot:hover { transform: scale(1.2); border-color: rgba(255,255,255,0.4); }
body.home .mockup-theme-dot.active { border-color: var(--el-violet); }
body.home .mt-dark   { background: linear-gradient(135deg,#0a0a0f,#12121f); }
body.home .mt-blue   { background: linear-gradient(135deg,#0f172a,#1e3a5f); }
body.home .mt-purple { background: linear-gradient(135deg,#1a103c,#2d1b69); }
body.home .mt-green  { background: linear-gradient(135deg,#064e3b,#065f46); }
body.home .mt-red    { background: linear-gradient(135deg,#450a0a,#7f1d1d); }
body.home .mt-orange { background: linear-gradient(135deg,#431407,#7c2d12); }
body.home .mt-pink   { background: linear-gradient(135deg,#500724,#831843); }
body.home .mt-ocean  { background: linear-gradient(135deg,#082f49,#164e63); }
body.home .mockup-footer {
  text-align: center;
  padding: 14px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 12px;
  font-size: 11px;
  color: var(--el-text-5);
}

/* ============================================================
   24. SERVICES — SIGNUP PROMO BANNER
   ============================================================ */
body.home .services-signup-promo {
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(6,182,212,0.06));
  border: 1px solid rgba(139,92,246,0.18);
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
body.home .services-signup-promo p {
  margin: 0;
  font-size: 14px;
  color: var(--el-text-3);
  flex: 1;
  min-width: 0;
}
body.home .services-signup-promo strong { color: var(--el-text); }
body.home .services-signup-promo .btn-primary { flex-shrink: 0; white-space: nowrap; }

/* ============================================================
   25. SERVICES — MOBILE CARD LAYOUT
   ============================================================ */
@media (max-width: 640px) {
  body.home .services-filter-bar { flex-direction: column; gap: 12px; }
  body.home .el-select { width: 100% !important; min-width: 0 !important; }
  body.home .el-search-wrap { width: 100%; }

  /* Unwrap the scroll container */
  body.home .services-table-wrap {
    overflow-x: visible !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }

  /* Table becomes block */
  body.home .el-table        { display: block; }
  body.home .el-table thead  { display: none; }
  body.home .el-table tbody  { display: block; }

  /* Category headers */
  body.home .service-category-row    { display: block; }
  body.home .service-category-row td { display: block; padding: 14px 4px 6px; border-bottom: none; }

  /* Service rows → cards */
  body.home .el-table tbody tr.serviceData {
    display: block;
    margin-bottom: 10px;
    padding: 14px 16px;
    background: var(--el-surface);
    border: 1px solid var(--el-border);
    border-radius: 12px;
  }
  body.home .el-table tbody tr.serviceData td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(139,92,246,0.05);
    font-size: 13px;
    color: var(--el-text-2);
  }
  body.home .el-table tbody tr.serviceData td:first-child {
    font-weight: 600;
    font-size: 14px;
    color: var(--el-text);
    border-bottom-color: rgba(139,92,246,0.12);
    padding-bottom: 10px;
  }
  body.home .el-table tbody tr.serviceData td:last-child {
    border-bottom: none;
    padding-top: 10px;
    justify-content: flex-end;
  }
  /* Label from data-title, skip first cell (name already clear) */
  body.home .el-table tbody tr.serviceData td[data-title]:not(:first-child)::before {
    content: attr(data-title) ":";
    font-size: 10px;
    font-weight: 700;
    color: var(--el-text-5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    white-space: nowrap;
    align-self: center;
  }
  /* Keep hidden rows hidden */
  body.home .el-table .hidden { display: none !important; }

  /* Services signup promo — stack on mobile */
  body.home .services-signup-promo { padding: 14px 16px; }
  body.home .services-signup-promo .btn-primary { width: 100%; text-align: center; justify-content: center; }
}

/* ============================================================
   26. FAQ / TERMS / API — DUAL CTA ROW
   ============================================================ */
body.home .page-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  body.home .page-cta-row { flex-direction: column; }
  body.home .page-cta-row .btn-primary,
  body.home .page-cta-row .btn-ghost { width: 100%; text-align: center; justify-content: center; }
}

/* Terms CTA footer */
body.home .terms-cta-footer {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(139,92,246,0.07), rgba(6,182,212,0.05));
  border: 1px solid rgba(139,92,246,0.14);
  border-radius: 16px;
  text-align: center;
}
body.home .terms-cta-footer p {
  margin: 0 0 20px;
  color: var(--el-text-3);
  font-size: 15px;
}
@media (max-width: 480px) {
  body.home .terms-cta-footer { padding: 24px 16px; }
}

/* ============================================================
   27. SERVICES MARKETING HERO (2-column)
   ============================================================ */
body.home .services-marketing-hero {
  padding: 64px 0 56px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(139,92,246,0.08);
}
body.home .smh-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}
body.home .smh-content { text-align: left; }
body.home .smh-headline {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--el-text);
  line-height: 1.15;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}
body.home .smh-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-bottom: 40px;
}
body.home .smh-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--el-text-3);
  letter-spacing: 0.01em;
}
body.home .smh-benefit svg { color: var(--el-violet); flex-shrink: 0; }
body.home .smh-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home .smh-image {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 0 32px rgba(139,92,246,0.18));
  animation: smh-float 3.5s ease-in-out infinite;
}
@keyframes smh-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
@media (max-width: 900px) {
  body.home .smh-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  body.home .smh-content { text-align: center; }
  body.home .smh-benefits { justify-content: center; }
  body.home .smh-image { max-width: 300px; margin: 0 auto; }
}
@media (max-width: 640px) {
  body.home .services-marketing-hero { padding: 40px 0 32px; margin-bottom: 32px; }
  body.home .smh-headline { font-size: 22px; margin-bottom: 24px; }
  body.home .smh-benefits { margin-bottom: 28px; gap: 10px 16px; }
  body.home .smh-benefit { font-size: 13px; }
}

/* ============================================================
   28. SIGNUP SPLIT LAYOUT (STRIPE STYLE)
   ============================================================ */
body.home .elite-signup-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

/* ── Left: value side ── */
body.home .signup-value-side {
  background: linear-gradient(160deg, rgba(139,92,246,0.1) 0%, rgba(6,182,212,0.05) 100%);
  border-right: 1px solid rgba(139,92,246,0.1);
  padding: 100px 56px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
body.home .signup-value-side::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(139,92,246,0.09), transparent 65%);
  pointer-events: none;
}
body.home .signup-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 48px;
  position: relative;
}
body.home .signup-logo-text {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--el-violet), var(--el-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.home .signup-value-headline {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--el-text);
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  position: relative;
}
body.home .signup-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
body.home .signup-benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--el-text-3);
  font-weight: 500;
  line-height: 1.4;
}
body.home .signup-benefits-list li svg { color: var(--el-violet); flex-shrink: 0; }
body.home .signup-proof-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(139,92,246,0.1);
  position: relative;
}
body.home .signup-proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.home .signup-proof-stat strong {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--el-violet), var(--el-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
body.home .signup-proof-stat span {
  font-size: 11px;
  color: var(--el-text-5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

/* ── Right: form side ── */
body.home .signup-form-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  background: var(--el-bg);
}
body.home .signup-form-side .elite-auth-card {
  width: 100%;
  max-width: 420px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  body.home .elite-signup-split { grid-template-columns: 1fr; }
  body.home .signup-value-side {
    padding: 100px 24px 36px;
    border-right: none;
    border-bottom: 1px solid rgba(139,92,246,0.1);
  }
  body.home .signup-form-side { padding: 36px 20px 60px; }
  body.home .signup-proof-row { gap: 20px; }
}
@media (max-width: 480px) {
  body.home .signup-value-side { padding: 90px 20px 28px; }
  body.home .signup-value-headline { font-size: 24px; }
  body.home .signup-form-side { padding: 28px 16px 56px; }
}

/* ============================================================
   29. SIGNUP PROGRESS STEPS
   ============================================================ */
body.home .signup-progress {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 28px;
  width: 100%;
}
body.home .sp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}
body.home .sp-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(139,92,246,0.18);
  background: var(--el-surface-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--el-text-5);
  transition: all 0.25s ease;
}
body.home .sp-label {
  font-size: 10px;
  color: var(--el-text-5);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
body.home .sp-step.sp-active .sp-dot {
  border-color: var(--el-violet);
  background: var(--el-violet);
  color: #fff;
  box-shadow: 0 0 14px rgba(139,92,246,0.4);
}
body.home .sp-step.sp-active .sp-label {
  color: var(--el-violet-l);
  font-weight: 600;
}
body.home .sp-step.sp-done .sp-dot {
  border-color: rgba(34,197,94,0.45);
  background: rgba(34,197,94,0.1);
  color: var(--el-success);
}
body.home .sp-step.sp-done .sp-label { color: var(--el-success); font-weight: 600; }
body.home .sp-line {
  flex: 1;
  height: 2px;
  background: rgba(139,92,246,0.12);
  margin-top: 14px;
  min-width: 20px;
}
