/* ============================================================
   LEXEB PLATFORM — Enterprise African Commerce Platform CSS
   Africa's #1 Commerce Technology Stack
   Uganda · East Africa · The World
   ============================================================ */

/* ── Root Variables ─────────────────────────────────────────── */
:root {
  --lx-dark:        #050510;
  --lx-dark-2:      #0C0C20;
  --lx-dark-3:      #141428;
  --lx-purple:      #7C3AED;
  --lx-purple-2:    #6D28D9;
  --lx-purple-light:#A78BFA;
  --lx-gold:        #F59E0B;
  --lx-gold-light:  #FCD34D;
  --lx-teal:        #06B6D4;
  --lx-teal-2:      #0891B2;
  --lx-pink:        #EC4899;
  --lx-green:       #10B981;
  --lx-red:         #EF4444;
  --lx-orange:      #F97316;
  --lx-text:        #F8FAFC;
  --lx-muted:       rgba(248,250,252,0.65);
  --lx-dim:         rgba(248,250,252,0.40);
  --lx-border:      rgba(255,255,255,0.10);
  --lx-border-2:    rgba(255,255,255,0.06);
  --lx-card:        rgba(255,255,255,0.04);
  --lx-card-hover:  rgba(255,255,255,0.07);
  --lx-radius:      20px;
  --lx-radius-sm:   12px;
  --lx-radius-xs:   8px;
  --lx-shadow:      0 25px 60px rgba(0,0,0,0.55);
  --lx-shadow-sm:   0 8px 30px rgba(0,0,0,0.35);
  --lx-transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --lx-gradient-1:  linear-gradient(135deg, #4C1D95 0%, #7C3AED 45%, #0891B2 100%);
  --lx-gradient-2:  linear-gradient(135deg, #F59E0B 0%, #EC4899 100%);
  --lx-gradient-3:  linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
  --lx-font:        'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Global Base ───────────────────────────────────────────── */
.lx-body-override {
  background: var(--lx-dark) !important;
  color: var(--lx-text) !important;
  font-family: var(--lx-font) !important;
  overflow-x: hidden;
}

/* ── Navbar Overrides ──────────────────────────────────────── */
#org.navbar {
  background: rgba(5, 5, 16, 0.92) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid var(--lx-border) !important;
  padding: 14px 0 !important;
  transition: var(--lx-transition) !important;
}
#org.navbar .navbar-brand {
  font-weight: 800 !important;
  font-size: 1.5rem !important;
  letter-spacing: -0.5px !important;
  color: var(--lx-text) !important;
  gap: 8px;
  display: flex;
  align-items: center;
}
#org.navbar .navbar-brand img {
  height: 32px !important;
  width: auto !important;
}
#org.navbar .nav-link {
  color: rgba(248,250,252,0.8) !important;
  font-weight: 500 !important;
  font-size: 0.92rem !important;
  letter-spacing: 0.2px !important;
  transition: color 0.2s ease !important;
}
#org.navbar .nav-link:hover,
#org.navbar .nav-link.active {
  color: var(--lx-text) !important;
}
#org.navbar .btn-icon {
  background: var(--lx-card) !important;
  border: 1px solid var(--lx-border) !important;
  color: var(--lx-text) !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: var(--lx-transition) !important;
}
#org.navbar .btn-icon:hover {
  background: var(--lx-purple) !important;
  border-color: var(--lx-purple) !important;
}
.cart-badge {
  background: var(--lx-gold) !important;
  color: #000 !important;
  font-weight: 700 !important;
  font-size: 0.6rem !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  top: -5px !important;
  right: -5px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ── PLATFORM HERO ─────────────────────────────────────────── */
.lx-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--lx-dark);
  padding-top: 80px;
}

/* Animated mesh gradient background */
.lx-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(124,58,237,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(6,182,212,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(245,158,11,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(236,72,153,0.20) 0%, transparent 60%),
    var(--lx-dark);
  animation: lxMeshPulse 12s ease-in-out infinite alternate;
}
@keyframes lxMeshPulse {
  0%   { opacity: 0.9; filter: hue-rotate(0deg); }
  100% { opacity: 1;   filter: hue-rotate(15deg); }
}

/* Floating African-inspired geometric dots */
.lx-hero-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.lx-hero-dots::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -150px; right: -100px;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.15);
  animation: lxRotate 30s linear infinite;
}
.lx-hero-dots::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  bottom: -100px; left: -80px;
  border-radius: 50%;
  border: 1px solid rgba(6,182,212,0.12);
  animation: lxRotate 20s linear infinite reverse;
}
@keyframes lxRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Floating orbs */
.lx-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  animation: lxOrbFloat 8s ease-in-out infinite;
}
.lx-orb-1 {
  width: 300px; height: 300px;
  top: 10%; left: 5%;
  background: rgba(124,58,237,0.25);
  animation-delay: 0s;
}
.lx-orb-2 {
  width: 200px; height: 200px;
  top: 60%; right: 8%;
  background: rgba(6,182,212,0.20);
  animation-delay: -3s;
}
.lx-orb-3 {
  width: 250px; height: 250px;
  bottom: 15%; left: 40%;
  background: rgba(245,158,11,0.15);
  animation-delay: -6s;
}
@keyframes lxOrbFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-30px) scale(1.08); }
}

/* Kente pattern overlay (subtle) */
.lx-kente-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(45deg, var(--lx-gold) 0px, var(--lx-gold) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(-45deg, var(--lx-teal) 0px, var(--lx-teal) 1px, transparent 1px, transparent 20px);
  pointer-events: none;
}

/* Hero content */
.lx-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  margin: 0 auto;
}

/* Badge */
.lx-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--lx-purple-light);
  margin-bottom: 24px;
  animation: lxFadeUp 0.6s ease both;
}
.lx-badge-dot {
  width: 7px; height: 7px;
  background: var(--lx-purple-light);
  border-radius: 50%;
  animation: lxPulse 2s ease-in-out infinite;
}
@keyframes lxPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}

/* Hero headline */
.lx-hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--lx-text);
  margin-bottom: 20px;
  animation: lxFadeUp 0.7s ease 0.1s both;
}
.lx-hero-title .lx-gradient-text {
  background: var(--lx-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lx-hero-title .lx-gold-text {
  background: linear-gradient(135deg, var(--lx-gold) 0%, var(--lx-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero subtitle */
.lx-hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--lx-muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 400;
  animation: lxFadeUp 0.7s ease 0.2s both;
}

/* Hero CTAs */
.lx-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: lxFadeUp 0.7s ease 0.3s both;
}

/* Buttons */
.lx-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--lx-purple);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: var(--lx-transition);
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
  position: relative;
  overflow: hidden;
}
.lx-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lx-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,0.55);
  color: #fff;
  text-decoration: none;
}
.lx-btn-primary:hover::before { opacity: 1; }

.lx-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--lx-gold) 0%, #E88C00 100%);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: var(--lx-transition);
  box-shadow: 0 4px 20px rgba(245,158,11,0.40);
}
.lx-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,158,11,0.55);
  color: #000;
  text-decoration: none;
}

.lx-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: transparent;
  color: var(--lx-text);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--lx-border);
  text-decoration: none;
  cursor: pointer;
  transition: var(--lx-transition);
}
.lx-btn-outline:hover {
  background: var(--lx-card-hover);
  border-color: rgba(255,255,255,0.25);
  color: var(--lx-text);
  text-decoration: none;
  transform: translateY(-2px);
}

.lx-btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--lx-teal-2) 0%, var(--lx-teal) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: var(--lx-transition);
  box-shadow: 0 4px 20px rgba(6,182,212,0.35);
}
.lx-btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6,182,212,0.50);
  color: #fff;
  text-decoration: none;
}

/* Hero quick stats */
.lx-hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  animation: lxFadeUp 0.7s ease 0.4s both;
}
.lx-hero-stat {
  text-align: center;
}
.lx-hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--lx-text);
  line-height: 1;
  letter-spacing: -1px;
}
.lx-hero-stat-num span {
  background: var(--lx-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lx-hero-stat-label {
  font-size: 0.78rem;
  color: var(--lx-muted);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Scroll indicator */
.lx-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--lx-dim);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: lxFadeUp 1s ease 1s both;
}
.lx-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--lx-purple));
  animation: lxScrollLine 2s ease-in-out infinite;
}
@keyframes lxScrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50%       { transform: scaleY(1); transform-origin: top; }
}

/* Fade up animation */
@keyframes lxFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE / TICKER ─────────────────────────────────────── */
.lx-ticker {
  background: linear-gradient(90deg, var(--lx-purple-2) 0%, var(--lx-teal-2) 100%);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.lx-ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: lxTickerScroll 40s linear infinite;
}
@keyframes lxTickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.lx-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  padding: 0 30px;
}
.lx-ticker-sep {
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
}

/* ── SECTION SCAFFOLDING ──────────────────────────────────── */
.lx-section {
  padding: 100px 0;
  background: var(--lx-dark);
}
.lx-section-alt {
  padding: 100px 0;
  background: var(--lx-dark-2);
}
.lx-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.lx-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lx-purple-light);
  margin-bottom: 16px;
}
.lx-section-eyebrow-line {
  width: 24px; height: 2px;
  background: var(--lx-purple-light);
  border-radius: 2px;
}
.lx-section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--lx-text);
  margin-bottom: 16px;
}
.lx-section-sub {
  font-size: 1.05rem;
  color: var(--lx-muted);
  line-height: 1.7;
}

/* ── PLATFORM FEATURES ──────────────────────────────────────── */
.lx-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .lx-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .lx-features-grid { grid-template-columns: 1fr; }
}

/* Wide card (spans 2 columns on larger screens) */
.lx-feat-card-wide {
  grid-column: span 2;
}
@media (max-width: 991px) {
  .lx-feat-card-wide { grid-column: span 1; }
}

.lx-feat-card {
  background: var(--lx-card);
  border: 1px solid var(--lx-border-2);
  border-radius: var(--lx-radius);
  padding: 36px 32px;
  transition: var(--lx-transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.lx-feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lx-gradient-1);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}
.lx-feat-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}
.lx-feat-card:hover::before { opacity: 0.06; }

/* Individual card accent borders */
.lx-feat-card-purple { border-top: 2px solid var(--lx-purple); }
.lx-feat-card-gold   { border-top: 2px solid var(--lx-gold); }
.lx-feat-card-teal   { border-top: 2px solid var(--lx-teal); }
.lx-feat-card-pink   { border-top: 2px solid var(--lx-pink); }
.lx-feat-card-green  { border-top: 2px solid var(--lx-green); }

/* Feature icon */
.lx-feat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.lx-feat-icon-purple { background: rgba(124,58,237,0.18); color: var(--lx-purple-light); }
.lx-feat-icon-gold   { background: rgba(245,158,11,0.18); color: var(--lx-gold); }
.lx-feat-icon-teal   { background: rgba(6,182,212,0.18);  color: var(--lx-teal); }
.lx-feat-icon-pink   { background: rgba(236,72,153,0.18);  color: var(--lx-pink); }
.lx-feat-icon-green  { background: rgba(16,185,129,0.18);  color: var(--lx-green); }

.lx-feat-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lx-text);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.lx-feat-desc {
  font-size: 0.9rem;
  color: var(--lx-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.lx-feat-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.lx-feat-tag-purple { background: rgba(124,58,237,0.20); color: var(--lx-purple-light); }
.lx-feat-tag-gold   { background: rgba(245,158,11,0.20); color: var(--lx-gold); }
.lx-feat-tag-teal   { background: rgba(6,182,212,0.20);  color: var(--lx-teal); }
.lx-feat-tag-pink   { background: rgba(236,72,153,0.20);  color: var(--lx-pink); }
.lx-feat-tag-green  { background: rgba(16,185,129,0.20);  color: var(--lx-green); }
.lx-feat-tag-orange { background: rgba(249,115,22,0.20);  color: var(--lx-orange); }

/* ── BIG STATS ─────────────────────────────────────────────── */
.lx-stats-section {
  padding: 80px 0;
  background: var(--lx-dark-3);
  position: relative;
  overflow: hidden;
}
.lx-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(124,58,237,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(6,182,212,0.10) 0%, transparent 70%);
}
.lx-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .lx-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .lx-stats-grid { grid-template-columns: 1fr; }
}
.lx-stat-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--lx-radius);
  background: var(--lx-card);
  border: 1px solid var(--lx-border-2);
  transition: var(--lx-transition);
}
.lx-stat-card:hover {
  background: var(--lx-card-hover);
  border-color: var(--lx-border);
  transform: translateY(-4px);
}
.lx-stat-num {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.lx-stat-label {
  font-size: 0.85rem;
  color: var(--lx-muted);
  letter-spacing: 0.5px;
}

/* ── SPLIT SECTIONS (Vendor / Affiliate) ───────────────────── */
.lx-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}
@media (max-width: 768px) {
  .lx-split { grid-template-columns: 1fr; }
}
.lx-split-panel {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .lx-split-panel { padding: 60px 40px; }
}
@media (max-width: 576px) {
  .lx-split-panel { padding: 60px 24px; }
}
.lx-split-vendor {
  background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(5,5,16,0.95) 100%);
  border-right: 1px solid var(--lx-border-2);
}
.lx-split-affiliate {
  background: linear-gradient(135deg, rgba(245,158,11,0.12) 0%, rgba(5,5,16,0.95) 100%);
}
.lx-split-panel::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.lx-split-vendor::before {
  background: rgba(124,58,237,0.20);
  top: -100px; right: -100px;
}
.lx-split-affiliate::before {
  background: rgba(245,158,11,0.18);
  bottom: -100px; left: -100px;
}
.lx-split-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}
.lx-split-tag-purple {
  background: rgba(124,58,237,0.20);
  color: var(--lx-purple-light);
  border: 1px solid rgba(124,58,237,0.30);
}
.lx-split-tag-gold {
  background: rgba(245,158,11,0.20);
  color: var(--lx-gold);
  border: 1px solid rgba(245,158,11,0.30);
}
.lx-split-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--lx-text);
  margin-bottom: 16px;
}
.lx-split-sub {
  font-size: 1rem;
  color: var(--lx-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}
.lx-split-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lx-split-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--lx-muted);
}
.lx-split-checklist li::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,0.20);
  color: var(--lx-green);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── LIVE SHOPPING TEASER ───────────────────────────────────── */
.lx-live {
  background: var(--lx-dark-2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.lx-live::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(236,72,153,0.12) 0%, transparent 70%);
}
.lx-live-card {
  background: var(--lx-card);
  border: 1px solid rgba(236,72,153,0.25);
  border-radius: var(--lx-radius);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .lx-live-card { padding: 40px 24px; }
}
.lx-live-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 40%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--lx-pink), transparent);
}
.lx-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236,72,153,0.15);
  border: 1px solid rgba(236,72,153,0.30);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lx-pink);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.lx-live-dot {
  width: 8px; height: 8px;
  background: var(--lx-pink);
  border-radius: 50%;
  animation: lxLivePulse 1.5s ease-in-out infinite;
}
@keyframes lxLivePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(236,72,153,0.7); }
  50%       { box-shadow: 0 0 0 8px rgba(236,72,153,0); }
}
.lx-live-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--lx-text);
  margin-bottom: 16px;
  line-height: 1.15;
}
.lx-live-sub {
  font-size: 1rem;
  color: var(--lx-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}
.lx-live-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.lx-live-icon-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--lx-card);
  border: 1px solid var(--lx-border-2);
  border-radius: var(--lx-radius-xs);
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--lx-muted);
  font-weight: 500;
}
.lx-live-icon-chip i { color: var(--lx-pink); }

/* ── TRACKCLICKY SECTION ────────────────────────────────────── */
.lx-trackclicky {
  background: var(--lx-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.lx-trackclicky::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(6,182,212,0.12) 0%, transparent 70%);
}
.lx-tc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .lx-tc-grid { grid-template-columns: 1fr; gap: 40px; }
}
.lx-tc-mock {
  background: var(--lx-dark-2);
  border: 1px solid var(--lx-border-2);
  border-radius: var(--lx-radius);
  padding: 28px;
  position: relative;
}
.lx-tc-mock::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--lx-radius);
  background: linear-gradient(135deg, rgba(6,182,212,0.30), rgba(124,58,237,0.20), transparent 60%);
  z-index: -1;
}
.lx-tc-mock-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.lx-tc-dots {
  display: flex; gap: 6px;
}
.lx-tc-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.lx-tc-dot:nth-child(1) { background: #FF5F56; }
.lx-tc-dot:nth-child(2) { background: #FFBD2E; }
.lx-tc-dot:nth-child(3) { background: #27C93F; }
.lx-tc-title-bar {
  flex: 1;
  height: 10px;
  background: var(--lx-border-2);
  border-radius: 5px;
}
.lx-tc-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.lx-tc-metric {
  background: var(--lx-card);
  border: 1px solid var(--lx-border-2);
  border-radius: var(--lx-radius-xs);
  padding: 16px;
}
.lx-tc-metric-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lx-text);
  letter-spacing: -0.5px;
}
.lx-tc-metric-lbl {
  font-size: 0.72rem;
  color: var(--lx-dim);
  letter-spacing: 0.3px;
  margin-top: 2px;
}
.lx-tc-bar-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lx-tc-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--lx-muted);
}
.lx-tc-bar-label { width: 80px; flex-shrink: 0; }
.lx-tc-bar-track {
  flex: 1;
  height: 8px;
  background: var(--lx-border-2);
  border-radius: 4px;
  overflow: hidden;
}
.lx-tc-bar-fill {
  height: 100%;
  border-radius: 4px;
  animation: lxBarExpand 2s ease both;
}
@keyframes lxBarExpand {
  from { width: 0 !important; }
}
.lx-tc-bar-teal  { background: var(--lx-teal); }
.lx-tc-bar-purple { background: var(--lx-purple); }
.lx-tc-bar-gold  { background: var(--lx-gold); }
.lx-tc-bar-pink  { background: var(--lx-pink); }

/* ── SOCIAL PROOF / TESTIMONIALS ───────────────────────────── */
.lx-testimonials {
  background: var(--lx-dark-2);
  padding: 100px 0;
}
.lx-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .lx-testimonials-grid { grid-template-columns: 1fr; }
}
.lx-testi-card {
  background: var(--lx-card);
  border: 1px solid var(--lx-border-2);
  border-radius: var(--lx-radius);
  padding: 32px;
  transition: var(--lx-transition);
}
.lx-testi-card:hover {
  background: var(--lx-card-hover);
  border-color: var(--lx-border);
  transform: translateY(-4px);
}
.lx-testi-stars {
  display: flex;
  gap: 3px;
  color: var(--lx-gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.lx-testi-quote {
  font-size: 0.95rem;
  color: var(--lx-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.lx-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lx-testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--lx-gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.lx-testi-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lx-text);
}
.lx-testi-role {
  font-size: 0.78rem;
  color: var(--lx-dim);
}

/* ── AFRICA SECTION ──────────────────────────────────────────── */
.lx-africa {
  background: var(--lx-dark-3);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.lx-africa::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%,
      rgba(245,158,11,0.08) 0%,
      rgba(124,58,237,0.10) 40%,
      transparent 70%);
}
.lx-africa-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.lx-africa-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.80rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lx-dim);
  font-weight: 600;
}
.lx-africa-flag-stripe {
  width: 30px; height: 3px;
  border-radius: 2px;
}
.lx-flag-black  { background: #000000; border: 1px solid rgba(255,255,255,0.2); }
.lx-flag-yellow { background: #FCDC04; }
.lx-flag-red    { background: #D90000; }
.lx-africa-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--lx-text);
  line-height: 1.1;
  margin-bottom: 20px;
}
.lx-africa-sub {
  font-size: 1.05rem;
  color: var(--lx-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 40px;
}
.lx-africa-chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.lx-africa-chip {
  background: var(--lx-card);
  border: 1px solid var(--lx-border-2);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lx-muted);
  transition: var(--lx-transition);
}
.lx-africa-chip:hover {
  background: var(--lx-card-hover);
  border-color: var(--lx-purple);
  color: var(--lx-purple-light);
}

/* ── NEWSLETTER / CTA BOTTOM ─────────────────────────────────── */
.lx-cta-bottom {
  background: var(--lx-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.lx-cta-bottom::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(124,58,237,0.15) 0%, transparent 70%);
}
.lx-cta-box {
  background: var(--lx-gradient-1);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .lx-cta-box { padding: 50px 28px; }
}
.lx-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 0% 0%, rgba(255,255,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 100% 100%, rgba(0,0,0,0.20) 0%, transparent 60%);
  pointer-events: none;
}
.lx-cta-box-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.lx-cta-box-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.lx-cta-box-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.lx-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: #fff;
  color: var(--lx-purple-2);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: var(--lx-transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
}
.lx-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.30);
  color: var(--lx-purple-2);
  text-decoration: none;
}
.lx-btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.30);
  text-decoration: none;
  cursor: pointer;
  transition: var(--lx-transition);
}
.lx-btn-glass:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ── PLATFORM FOOTER ─────────────────────────────────────────── */
.lx-footer {
  background: var(--lx-dark);
  border-top: 1px solid var(--lx-border-2);
  padding: 80px 0 0;
}
.lx-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .lx-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 576px) {
  .lx-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.lx-footer-brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--lx-text);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.lx-footer-brand-sub {
  font-size: 0.88rem;
  color: var(--lx-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.lx-footer-socials {
  display: flex;
  gap: 10px;
}
.lx-footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--lx-card);
  border: 1px solid var(--lx-border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lx-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--lx-transition);
}
.lx-footer-social-btn:hover {
  background: var(--lx-purple);
  border-color: var(--lx-purple);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
.lx-footer-col-title {
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lx-text);
  margin-bottom: 20px;
}
.lx-footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lx-footer-links a {
  font-size: 0.88rem;
  color: var(--lx-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lx-footer-links a:hover {
  color: var(--lx-text);
}
.lx-footer-bottom {
  border-top: 1px solid var(--lx-border-2);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.lx-footer-copy {
  font-size: 0.82rem;
  color: var(--lx-dim);
}
.lx-footer-bottom-links {
  display: flex;
  gap: 24px;
}
.lx-footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--lx-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}
.lx-footer-bottom-links a:hover { color: var(--lx-muted); }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.lx-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.lx-reveal.lx-visible {
  opacity: 1;
  transform: translateY(0);
}
.lx-reveal-delay-1 { transition-delay: 0.10s; }
.lx-reveal-delay-2 { transition-delay: 0.20s; }
.lx-reveal-delay-3 { transition-delay: 0.30s; }
.lx-reveal-delay-4 { transition-delay: 0.40s; }
.lx-reveal-delay-5 { transition-delay: 0.50s; }

/* ── GRADIENT TEXT UTILITIES ────────────────────────────────── */
.lx-text-purple {
  background: linear-gradient(135deg, var(--lx-purple-light), var(--lx-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lx-text-gold {
  background: linear-gradient(135deg, var(--lx-gold), var(--lx-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lx-text-teal {
  background: linear-gradient(135deg, var(--lx-teal), var(--lx-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NEWSLETTER SECTION OVERRIDE ────────────────────────────── */
.newsletter-section {
  background: var(--lx-dark-2) !important;
  border-top: 1px solid var(--lx-border-2) !important;
  border-bottom: 1px solid var(--lx-border-2) !important;
}
.newsletter-title {
  color: var(--lx-text) !important;
  font-weight: 700 !important;
}
.newsletter-text {
  color: var(--lx-muted) !important;
}
.newsletter-icon {
  color: var(--lx-purple-light) !important;
  font-size: 2.5rem !important;
}
.newsletter-form .form-control {
  background: var(--lx-card) !important;
  border: 1px solid var(--lx-border) !important;
  color: var(--lx-text) !important;
  border-radius: 12px 0 0 12px !important;
}
.newsletter-form .form-control::placeholder { color: var(--lx-dim) !important; }
.newsletter-form .form-control:focus {
  background: var(--lx-card-hover) !important;
  border-color: var(--lx-purple) !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.2) !important;
  color: var(--lx-text) !important;
}
.newsletter-btn {
  background: var(--lx-purple) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 0 12px 12px 0 !important;
  border: none !important;
  padding: 12px 24px !important;
  transition: var(--lx-transition) !important;
}
.newsletter-btn:hover {
  background: var(--lx-purple-2) !important;
  color: #fff !important;
}

/* ── SERVICES SECTION OVERRIDE ──────────────────────────────── */
.services-section {
  background: var(--lx-dark-3) !important;
  border-top: 1px solid var(--lx-border-2) !important;
}
.service-card {
  background: var(--lx-card) !important;
  border: 1px solid var(--lx-border-2) !important;
  border-radius: var(--lx-radius-sm) !important;
  padding: 28px 20px !important;
  text-align: center !important;
  transition: var(--lx-transition) !important;
}
.service-card:hover {
  background: var(--lx-card-hover) !important;
  border-color: var(--lx-purple) !important;
  transform: translateY(-4px) !important;
}
.service-icon {
  font-size: 2rem !important;
  color: var(--lx-purple-light) !important;
  margin-bottom: 12px !important;
  display: block !important;
}
.service-title {
  color: var(--lx-text) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
}
.service-text {
  color: var(--lx-muted) !important;
  font-size: 0.82rem !important;
}

/* ── CALL-SECTION OVERRIDE (contains stores include) ─────────── */
/* index-kei.css hides .call-section — we re-show it since it wraps top-stores.php */
body.kei .call-section {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

/* ── SERVICES & NEWSLETTER: show with platform styling ────────── */
body.kei .services-section {
  display: block !important;
}
body.kei .newsletter-section {
  display: block !important;
}

/* ── STORES SECTION OVERRIDE ────────────────────────────────── */
.kei-top-stores {
  background: var(--lx-dark-2) !important;
}
.kei-top-stores .ts-heading {
  color: var(--lx-text) !important;
  font-weight: 800 !important;
}
.kei-top-stores .ts-sub {
  color: var(--lx-muted) !important;
}

/* ── PRODUCT SECTION STYLES ─────────────────────────────────── */
#allproductsQuery {
  background: var(--lx-dark) !important;
}

/* Section headers within product area */
#allproductsQuery h2,
#allproductsQuery .kei-section-title {
  color: var(--lx-text) !important;
}

/* Promoted products section dark override */
.kei-promoted-products,
.kei-promo-section,
[class*="promoted"] {
  background: var(--lx-dark-2) !important;
}

/* BeautyDesign and similar legacy sections */
#BeautyDesign,
.BeautyDesign {
  background: var(--lx-dark) !important;
}

/* ── CATEGORY CAROUSEL HIDE (replaced by platform sections) ── */
.category-carousel {
  display: none !important;
}

/* ── HORIZONTAL DIVIDER GLOW ────────────────────────────────── */
.lx-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lx-border), transparent);
}

/* ── SCROLL TO TOP ──────────────────────────────────────────── */
.lx-scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--lx-purple);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(124,58,237,0.45);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--lx-transition);
  z-index: 1000;
}
.lx-scroll-top.lx-visible {
  opacity: 1;
  transform: translateY(0);
}
.lx-scroll-top:hover {
  background: var(--lx-purple-2);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════════════════
   VIDEO SHOWCASE SECTION
   ══════════════════════════════════════════════════════════════ */
.lx-video-showcase {
  position: relative;
  overflow: hidden;
  background: var(--lx-dark-3);
  padding: 0;
}
.lx-video-bg {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  opacity: 0.5;
}
@media (max-width: 768px) { .lx-video-bg { height: 320px; } }
.lx-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--lx-dark) 0%,
    rgba(5,5,16,0.35) 40%,
    rgba(5,5,16,0.35) 60%,
    var(--lx-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.lx-video-badge-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.lx-video-badge {
  background: rgba(5,5,16,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--lx-border);
  border-radius: 14px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  transition: var(--lx-transition);
  animation: lxFadeUp 0.8s ease both;
}
.lx-video-badge:nth-child(2) { animation-delay: 0.15s; }
.lx-video-badge:nth-child(3) { animation-delay: 0.30s; }
.lx-video-badge:nth-child(4) { animation-delay: 0.45s; }
.lx-video-badge:hover {
  background: rgba(124,58,237,0.25);
  border-color: rgba(124,58,237,0.5);
  transform: translateY(-4px);
}
.lx-video-badge-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.lx-video-badge-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lx-text);
}
.lx-video-badge-text span {
  font-size: 0.75rem;
  color: var(--lx-muted);
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT VISUAL SHOWCASE (floating cards row)
   ══════════════════════════════════════════════════════════════ */
.lx-product-visual {
  padding: 80px 0;
  background: var(--lx-dark-2);
  overflow: hidden;
}
.lx-product-visual-header {
  text-align: center;
  margin-bottom: 48px;
}
.lx-product-scroll-track {
  display: flex;
  gap: 20px;
  animation: lxProductScroll 30s linear infinite;
  width: max-content;
}
.lx-product-scroll-track:hover { animation-play-state: paused; }
@keyframes lxProductScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.lx-product-card-mini {
  width: 200px;
  flex-shrink: 0;
  background: var(--lx-card);
  border: 1px solid var(--lx-border-2);
  border-radius: var(--lx-radius-sm);
  overflow: hidden;
  transition: var(--lx-transition);
  cursor: pointer;
}
.lx-product-card-mini:hover {
  border-color: var(--lx-purple);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124,58,237,0.30);
}
.lx-product-card-mini img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.lx-product-card-mini:hover img { transform: scale(1.06); }
.lx-product-card-mini-body {
  padding: 12px 14px;
}
.lx-product-card-mini-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lx-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lx-product-card-mini-price {
  font-size: 0.80rem;
  color: var(--lx-gold);
  font-weight: 700;
  margin-top: 4px;
}
.lx-product-card-mini-store {
  font-size: 0.70rem;
  color: var(--lx-dim);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════════
   SHOUTFLUX INFLUENCER MARKETPLACE SECTION
   ══════════════════════════════════════════════════════════════ */
.lx-shoutflux-section {
  background: var(--lx-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.lx-shoutflux-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 0% 50%, rgba(124,58,237,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(245,158,11,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.lx-sf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .lx-sf-grid { grid-template-columns: 1fr; gap: 48px; }
}
.lx-sf-influencer-deck {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Influencer profile cards stacked */
.lx-sf-card {
  position: absolute;
  width: 240px;
  background: var(--lx-card);
  border: 1px solid var(--lx-border-2);
  border-radius: var(--lx-radius);
  padding: 20px;
  transition: var(--lx-transition);
  backdrop-filter: blur(10px);
}
.lx-sf-card-1 {
  top: 0; left: 0;
  border-top: 2px solid var(--lx-purple);
  animation: lxSfFloat 6s ease-in-out infinite;
  z-index: 3;
}
.lx-sf-card-2 {
  bottom: 0; right: 0;
  border-top: 2px solid var(--lx-gold);
  animation: lxSfFloat 6s ease-in-out infinite;
  animation-delay: -2s;
  z-index: 2;
}
.lx-sf-card-3 {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-top: 2px solid var(--lx-teal);
  animation: lxSfFloat 6s ease-in-out infinite;
  animation-delay: -4s;
  z-index: 1;
  opacity: 0.75;
}
@keyframes lxSfFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.lx-sf-card-3 { transform: translate(-50%,-50%); }
.lx-sf-card:hover { transform: translateY(-8px) !important; z-index: 10; opacity: 1 !important; }

.lx-sf-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.lx-sf-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lx-border);
}
.lx-sf-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lx-text);
}
.lx-sf-handle {
  font-size: 0.72rem;
  color: var(--lx-purple-light);
}
.lx-sf-stats-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.lx-sf-stat {
  flex: 1;
  background: var(--lx-dark-2);
  border-radius: var(--lx-radius-xs);
  padding: 8px 10px;
  text-align: center;
}
.lx-sf-stat-val {
  font-size: 0.90rem;
  font-weight: 800;
  color: var(--lx-text);
  letter-spacing: -0.5px;
}
.lx-sf-stat-lbl {
  font-size: 0.65rem;
  color: var(--lx-dim);
  margin-top: 1px;
}
.lx-sf-earning {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--lx-radius-xs);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.80rem;
  color: var(--lx-green);
  font-weight: 600;
}
.lx-sf-earning-icon { font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════════
   IMAGE SHOWCASE STRIP (Shopify-style feature image)
   ══════════════════════════════════════════════════════════════ */
.lx-image-strip {
  padding: 0;
  overflow: hidden;
  position: relative;
  background: var(--lx-dark-3);
}
.lx-image-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
@media (max-width: 768px) {
  .lx-image-strip-inner { grid-template-columns: 1fr; min-height: auto; }
}
.lx-image-strip-visual {
  position: relative;
  overflow: hidden;
}
.lx-image-strip-visual img,
.lx-image-strip-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.lx-image-strip-visual:hover img,
.lx-image-strip-visual:hover video { transform: scale(1.04); }
.lx-image-strip-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--lx-dark-2);
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .lx-image-strip-content { padding: 60px 40px; }
}
@media (max-width: 576px) {
  .lx-image-strip-content { padding: 50px 28px; }
}
.lx-image-strip-content::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  top: -100px; right: -80px;
  background: rgba(124,58,237,0.18);
  pointer-events: none;
}
/* Reversed order variant */
.lx-image-strip-inner.lx-reverse { direction: rtl; }
.lx-image-strip-inner.lx-reverse > * { direction: ltr; }

/* ══════════════════════════════════════════════════════════════
   AFRICA MAP SECTION
   ══════════════════════════════════════════════════════════════ */
.lx-africa-map-section {
  background: var(--lx-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.lx-africa-map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(245,158,11,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(124,58,237,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.lx-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .lx-map-grid { grid-template-columns: 1fr; gap: 48px; }
}
.lx-map-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
/* The Africa SVG */
.lx-africa-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(245,158,11,0.25)) drop-shadow(0 0 80px rgba(124,58,237,0.15));
  animation: lxMapGlow 6s ease-in-out infinite alternate;
}
@keyframes lxMapGlow {
  from { filter: drop-shadow(0 0 30px rgba(245,158,11,0.20)) drop-shadow(0 0 60px rgba(124,58,237,0.12)); }
  to   { filter: drop-shadow(0 0 50px rgba(245,158,11,0.35)) drop-shadow(0 0 100px rgba(124,58,237,0.22)); }
}
/* City dot animations */
.lx-city-dot {
  animation: lxCityPulse 2s ease-in-out infinite;
}
.lx-city-dot:nth-child(2)  { animation-delay: 0.3s; }
.lx-city-dot:nth-child(3)  { animation-delay: 0.6s; }
.lx-city-dot:nth-child(4)  { animation-delay: 0.9s; }
.lx-city-dot:nth-child(5)  { animation-delay: 1.2s; }
.lx-city-dot:nth-child(6)  { animation-delay: 1.5s; }
.lx-city-dot:nth-child(7)  { animation-delay: 1.8s; }
@keyframes lxCityPulse {
  0%, 100% { opacity: 0.6; r: 4; }
  50%       { opacity: 1;   r: 6; }
}
/* Connection line draw */
.lx-conn-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: lxLineDraw 3s ease-in-out infinite alternate;
}
.lx-conn-line:nth-child(2) { animation-delay: 0.5s; }
.lx-conn-line:nth-child(3) { animation-delay: 1.0s; }
.lx-conn-line:nth-child(4) { animation-delay: 1.5s; }
@keyframes lxLineDraw {
  from { stroke-dashoffset: 200; opacity: 0; }
  to   { stroke-dashoffset: 0;   opacity: 0.6; }
}

/* Map city tooltip labels */
.lx-map-city-labels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.lx-map-city-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--lx-muted);
}
.lx-map-city-dot-sm {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px currentColor;
}
.lx-map-city-name { font-weight: 600; color: var(--lx-text); }

/* ══════════════════════════════════════════════════════════════
   REGISTRATION MODALS
   ══════════════════════════════════════════════════════════════ */
.lx-modal .modal-content {
  background: var(--lx-dark-2) !important;
  border: 1px solid var(--lx-border) !important;
  border-radius: 20px !important;
  color: var(--lx-text) !important;
  box-shadow: 0 40px 100px rgba(0,0,0,0.70) !important;
}
.lx-modal .modal-header {
  border-bottom: 1px solid var(--lx-border-2) !important;
  padding: 28px 32px 20px !important;
}
.lx-modal .modal-body {
  padding: 28px 32px !important;
}
.lx-modal .modal-footer {
  border-top: 1px solid var(--lx-border-2) !important;
  padding: 20px 32px 28px !important;
}
@media (max-width: 576px) {
  .lx-modal .modal-header,
  .lx-modal .modal-body,
  .lx-modal .modal-footer { padding-left: 20px !important; padding-right: 20px !important; }
}
.lx-modal .modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--lx-text);
}
.lx-modal .btn-close {
  filter: invert(1) !important;
  opacity: 0.6 !important;
}
.lx-modal .btn-close:hover { opacity: 1 !important; }

/* Modal form fields */
.lx-form-group { margin-bottom: 18px; }
.lx-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lx-muted);
  letter-spacing: 0.3px;
  margin-bottom: 7px;
}
.lx-form-control {
  width: 100%;
  background: var(--lx-card) !important;
  border: 1px solid var(--lx-border) !important;
  border-radius: var(--lx-radius-xs) !important;
  color: var(--lx-text) !important;
  padding: 11px 14px !important;
  font-size: 0.90rem !important;
  font-family: var(--lx-font) !important;
  transition: var(--lx-transition) !important;
  outline: none !important;
}
.lx-form-control::placeholder { color: var(--lx-dim) !important; }
.lx-form-control:focus {
  background: var(--lx-card-hover) !important;
  border-color: var(--lx-purple) !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.18) !important;
  color: var(--lx-text) !important;
}
select.lx-form-control option { background: var(--lx-dark-2); color: var(--lx-text); }
.lx-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 500px) { .lx-form-row { grid-template-columns: 1fr; } }
.lx-form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 6px;
}
.lx-form-check input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--lx-purple);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.lx-form-check label {
  font-size: 0.82rem;
  color: var(--lx-muted);
  cursor: pointer;
  line-height: 1.5;
}
.lx-form-check label a { color: var(--lx-purple-light); text-decoration: none; }
.lx-form-check label a:hover { text-decoration: underline; }

/* Modal icon header */
.lx-modal-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.lx-modal-icon-purple { background: rgba(124,58,237,0.18); color: var(--lx-purple-light); }
.lx-modal-icon-gold   { background: rgba(245,158,11,0.18); color: var(--lx-gold); }

/* Step indicator in modal */
.lx-modal-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.lx-modal-step {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: var(--lx-border-2);
  transition: background 0.3s ease;
}
.lx-modal-step.active { background: var(--lx-purple); }
.lx-modal-step.done   { background: var(--lx-green); }

/* Platform badge in modal */
.lx-modal-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lx-green);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ── NAVBAR CONTACT BUTTON ──────────────────────────────────── */
.lx-nav-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124,58,237,0.14);
  border: 1px solid rgba(124,58,237,0.35);
  color: var(--lx-purple-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.lx-nav-contact-btn:hover,
.lx-nav-contact-btn:focus {
  background: rgba(124,58,237,0.28);
  border-color: rgba(124,58,237,0.65);
  color: #fff;
  box-shadow: 0 0 14px rgba(124,58,237,0.30);
}

/* ── CONTACT MODAL — TOPIC PILLS ─────────────────────────────── */
.lx-topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--lx-muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.22s ease;
}
.lx-topic-pill:hover {
  background: rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.40);
  color: var(--lx-purple-light);
}
.lx-topic-pill.active {
  background: rgba(124,58,237,0.22);
  border-color: rgba(124,58,237,0.65);
  color: #fff;
  box-shadow: 0 0 10px rgba(124,58,237,0.25);
}

/* ── MEDIA RESPONSIVE FIXES ─────────────────────────────────── */
@media (max-width: 576px) {
  .lx-section  { padding: 70px 0; }
  .lx-section-alt { padding: 70px 0; }
  .lx-hero     { min-height: calc(100vh - 70px); }
  .lx-hero-stats { gap: 24px; }
  .lx-live     { padding: 70px 0; }
  .lx-trackclicky { padding: 70px 0; }
  .lx-testimonials { padding: 70px 0; }
}

/* ══════════════════════════════════════════════════════════════
   D3.js INTERACTIVE AFRICA MAP
   ══════════════════════════════════════════════════════════════ */

/* Map wrapper */
.lx-africa-d3-wrapper {
  position: relative;
  width: 100%;
  min-height: 380px;
  border-radius: var(--lx-radius);
  overflow: hidden;
  background: #050510;
}
.lx-africa-d3-wrapper svg {
  display: block;
  border-radius: var(--lx-radius);
}

/* Hover tooltip */
.lx-d3tt {
  position: absolute;
  pointer-events: none;
  background: rgba(10, 8, 28, 0.97);
  border: 1px solid rgba(124, 58, 237, 0.45);
  border-radius: 12px;
  padding: 11px 16px;
  white-space: nowrap;
  z-index: 30;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.65);
  transition: opacity 0.15s ease;
  font-family: var(--lx-font);
}
.lx-d3tt-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 4px;
}
.lx-d3tt-city {
  font-size: 0.76rem;
  color: rgba(248, 250, 252, 0.72);
  margin-bottom: 5px;
}
.lx-d3tt-status {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Animated pulse ring on city dots */
.lx-d3-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: lxD3PulseRing 2.6s ease-in-out infinite;
}
@keyframes lxD3PulseRing {
  0%   { transform: scale(1);   opacity: 0.65; }
  50%  { transform: scale(2.5); opacity: 0;    }
  100% { transform: scale(1);   opacity: 0.65; }
}

/* ══════════════════════════════════════════════════════════════
   SELECT / DROPDOWN TEXT FIX
   Uses color-scheme:dark so OS-rendered option lists show
   white text on dark backgrounds across Windows & macOS.
   ══════════════════════════════════════════════════════════════ */
select.lx-form-control {
  color-scheme: dark;
  -webkit-appearance: none;
  appearance: none;
  background-color: #0C0C20 !important;
  /* custom chevron arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(248%2C250%2C252%2C0.55)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 12px !important;
  padding-right: 40px !important;
}
select.lx-form-control option {
  background-color: #0C0C20 !important;
  color: #F8FAFC !important;
}
select.lx-form-control option:hover,
select.lx-form-control option:focus,
select.lx-form-control option:checked {
  background-color: rgba(124, 58, 237, 0.35) !important;
  color: #F8FAFC !important;
}

/* ══════════════════════════════════════════════════════════════
   REGISTRATION MODAL — SUBSCRIPTION PLAN PICKER
   ══════════════════════════════════════════════════════════════ */
.lx-plan-section {
  margin: 8px 0 10px;
  padding-top: 20px;
  border-top: 1px solid var(--lx-border-2);
}

.lx-plan-section-inner {
  display: block;
}

.lx-plan-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.lx-plan-heading,
.lx-plan-fieldset > legend.lx-plan-heading {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--lx-text);
  letter-spacing: -0.2px;
  float: none;
}

.lx-plan-loading,
.lx-plan-error {
  font-size: 0.82rem;
  color: var(--lx-muted);
  margin: 0;
}

.lx-plan-error { color: #fca5a5; }

.lx-plan-intervals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.lx-modal .lx-plan-interval,
.lx-plan-section .lx-plan-interval {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid var(--lx-border);
  background: var(--lx-card);
  color: var(--lx-text);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--lx-transition);
  font-family: var(--lx-font);
  line-height: 1.2;
}

.lx-plan-interval.active {
  background: var(--lx-purple);
  border-color: var(--lx-purple);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.35);
}

.lx-plan-section[data-accent="gold"] .lx-plan-interval.active {
  background: var(--lx-gold);
  border-color: var(--lx-gold);
  color: #0a0618;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.35);
}

.lx-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.lx-modal .lx-plan-card,
.lx-plan-section .lx-plan-card {
  position: relative;
  text-align: left;
  padding: 16px 18px 14px;
  padding-right: 2.35rem;
  border: 2px solid var(--lx-border);
  border-radius: 14px;
  background: var(--lx-card);
  color: var(--lx-text);
  cursor: pointer;
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  gap: 7px;
  width: 100%;
  min-height: 118px;
  transition: var(--lx-transition);
  font-family: var(--lx-font);
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  margin: 0;
  line-height: 1.35;
}

.lx-plan-card:hover {
  border-color: rgba(124, 58, 237, 0.55);
}

.lx-plan-section[data-accent="gold"] .lx-plan-card:hover {
  border-color: rgba(245, 158, 11, 0.55);
}

.lx-plan-card.selected {
  border-color: var(--lx-purple);
  background: rgba(124, 58, 237, 0.12);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.35);
}

.lx-plan-section[data-accent="gold"] .lx-plan-card.selected {
  border-color: var(--lx-gold);
  background: rgba(245, 158, 11, 0.10);
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.30);
}

.lx-plan-card.selected::before {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--lx-purple);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lx-plan-section[data-accent="gold"] .lx-plan-card.selected::before {
  background: var(--lx-gold);
  color: #0a0618;
}

.lx-plan-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
  padding-right: 4px;
}

.lx-plan-card-head strong {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

.lx-plan-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lx-plan-tag {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.15);
  color: var(--lx-purple-light);
}

.lx-plan-tag--later {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.lx-plan-tag--none {
  background: rgba(16, 185, 129, 0.15);
  color: var(--lx-green);
}

.lx-plan-price {
  display: block;
  font-weight: 700;
  color: var(--lx-purple-light);
  font-size: 0.9rem;
  line-height: 1.35;
}

.lx-plan-section[data-accent="gold"] .lx-plan-price {
  color: var(--lx-gold);
}

.lx-plan-price-renew {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--lx-muted);
  line-height: 1.3;
}

.lx-plan-desc {
  font-size: 0.76rem;
  line-height: 1.35;
  color: var(--lx-muted);
}

.lx-plan-trial {
  font-size: 0.7rem;
  color: var(--lx-dim);
}

.lx-plan-timing {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--lx-muted);
  line-height: 1.45;
}

.lx-plan-timing i {
  color: var(--lx-teal);
  margin-right: 4px;
}

@media (min-width: 720px) {
  .lx-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 500px) {
  .lx-plan-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
