/*
 * home-learnifi-v2.css
 * Styles ADDITIONNELS pour home_9.php — ne redéfinit pas Bootstrap 5 ni udemy-style.css.
 * Étend les tokens --udemy-* existants avec les tokens Learnifi manquants.
 * Cible uniquement les nouvelles classes préfixées lf-*
 */

/* =============================================
   EXTENSIONS DE TOKENS (nouvelles valeurs seules)
   Les --udemy-* déjà définis dans udemy-style.css
   sont réutilisés via var().
============================================= */
:root {
  --lf-green:          #18753c;
  --lf-green-hover:    #1e8a47;
  --lf-green-light:    #e8f5e9;
  --lf-violet-faint:   #faf5ff;
  --lf-violet-light:   #f3e8ff;
  --lf-violet-mid:     #e9d5ff;
  --lf-border:         #e5e7eb;
  --lf-gray-text:      #6a6f73;
  --lf-section-pad:    80px 0;
  --lf-section-pad-sm: 56px 0;
  --lf-radius-md:      12px;
  --lf-radius-lg:      18px;
  --lf-shadow-card:    0 4px 20px rgba(0,0,0,.07);
  --lf-shadow-violet:  0 8px 32px rgba(164,53,240,.18);
  --lf-bleu:           #000091;
  --lf-bleu-deep:      #0a0a6e;
  --lf-bleu-sidebar:   #0f1030;
  --lf-surface-e:      #f6f7fb;
  --lf-text-on-dark:   rgba(255,255,255,.92);
  --lf-text-on-dark-m: rgba(255,255,255,.55);
}

/* =============================================
   UTILITAIRES SECTION
============================================= */
.lf-section-v2          { padding: var(--lf-section-pad); }
.lf-section-v2-sm       { padding: var(--lf-section-pad-sm); }
.lf-bg-light            { background: linear-gradient(180deg, #fdfbff 0%, #f8f5ff 60%, #f5f5ff 100%); }
.lf-bg-violet-faint     { background: var(--lf-violet-faint); }
.lf-bg-dark-violet      {
  background:
    radial-gradient(ellipse 50% 60% at 5%  90%, rgba(164,53,240,.28), transparent 55%),
    radial-gradient(ellipse 40% 50% at 95% 0%,  rgba(0,0,145,.4),   transparent 50%),
    linear-gradient(135deg, var(--lf-bleu) 0%, #2a1f6e 42%, #5b21b6 75%, #4a1a7a 100%);
}

.lf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--udemy-primary);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 12px 4px 10px;
  background: var(--lf-violet-faint);
  border-radius: 20px;
  border: 1px solid var(--lf-violet-mid);
}
.lf-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--udemy-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(164,53,240,.25);
}

/* =============================================
   HERO V2 — remplace le carousel home_1
============================================= */
.lf-hero-v2 {
  background:
    radial-gradient(ellipse 60% 55% at 100% 0%,   rgba(164,53,240,.07), transparent 55%),
    radial-gradient(ellipse 40% 40% at 0%   100%,  rgba(0,0,145,.05),   transparent 50%),
    linear-gradient(160deg, #ffffff 0%, #fdfbff 50%, #f8f3ff 100%);
  padding: 84px 0 68px;
  position: relative;
  overflow: hidden;
}
.lf-hero-v2::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23a435f0' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.lf-hero-v2::after {
  content: '';
  position: absolute; right: -5%; top: -30%;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(164,53,240,.06) 0%, transparent 70%);
  pointer-events: none;
}

.lf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--lf-violet-mid);
  color: #6b21a8;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: .4px;
  box-shadow: 0 2px 12px rgba(164,53,240,.08);
}
.lf-hero-badge .lf-dot {
  width: 8px; height: 8px;
  background: var(--udemy-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(164,53,240,.2);
  animation: lf-pulse 2s infinite;
}

.lf-hero-title {
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -1.5px;
  color: var(--udemy-dark);
  margin-bottom: 20px;
}
.lf-hero-title .lf-gradient-text {
  background: linear-gradient(135deg, var(--udemy-primary) 0%, #8710d8 60%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lf-hero-sub {
  font-size: 17px;
  color: var(--lf-gray-text);
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 520px;
}
.lf-hero-sub strong { color: #6b21a8; font-weight: 700; }

/* CTA buttons */
.lf-btn-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 700;
  background: var(--udemy-primary);
  color: #fff;
  border: 2px solid transparent;
  border-radius: var(--lf-radius-md);
  box-shadow: 0 4px 16px rgba(164,53,240,.32);
  transition: background .15s, transform .15s, box-shadow .15s;
  text-decoration: none;
  cursor: pointer;
}
.lf-btn-green:hover {
  background: #8710d8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(164,53,240,.42);
  color: #fff;
  text-decoration: none;
}
.lf-btn-green .lf-free-chip {
  background: rgba(255,255,255,.22);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

.lf-btn-outline-violet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  background: #fff;
  color: #6b21a8;
  border: 2px solid var(--lf-violet-mid);
  border-radius: var(--lf-radius-md);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: border-color .15s, box-shadow .15s, background .15s;
  text-decoration: none;
}
.lf-btn-outline-violet:hover {
  border-color: var(--udemy-primary);
  background: var(--lf-violet-faint);
  box-shadow: 0 4px 14px rgba(164,53,240,.18);
  color: #6b21a8;
  text-decoration: none;
}

/* Trust chips */
.lf-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 6px;
}
.lf-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lf-gray-text);
  letter-spacing: .15px;
}
.lf-trust-chip i { color: var(--udemy-primary); font-size: 13px; }
.lf-trust-chip .lf-icon-green { color: var(--lf-green); }

/* Dashboard mockup (côté droit du hero) */
.lf-dash-window {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 28px 72px rgba(0,0,91,.28), 0 0 0 1px rgba(164,53,240,.18), 0 8px 24px rgba(164,53,240,.14);
  overflow: hidden;
  border: 1px solid rgba(164,53,240,.2);
  position: relative;
}
.lf-dash-titlebar {
  background: linear-gradient(180deg, #2a2a3e 0%, #1e1e2e 100%);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(164,53,240,.15);
}
.lf-dot-r { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; }
.lf-dot-y { width: 11px; height: 11px; border-radius: 50%; background: #febc2e; }
.lf-dot-g { width: 11px; height: 11px; border-radius: 50%; background: #28c840; }
.lf-dash-url {
  flex: 1;
  background: rgba(255,255,255,.1);
  border-radius: 5px;
  padding: 3px 11px;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  margin: 0 10px;
  border: 1px solid rgba(255,255,255,.08);
}
.lf-dash-body { display: flex; min-height: 290px; }
.lf-dash-sidebar {
  width: 155px;
  background: linear-gradient(180deg, var(--lf-bleu-sidebar) 0%, #121428 100%);
  padding: 18px 0;
  flex-shrink: 0;
  position: relative;
  box-shadow: inset -1px 0 0 rgba(164,53,240,.18);
}
.lf-dash-brand {
  padding: 0 14px 14px;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(90deg, #fff 0%, #e8d5ff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid rgba(164,53,240,.15);
  margin-bottom: 10px;
}
.lf-dash-nav-item {
  padding: 7px 14px;
  font-size: 10.5px;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 1px 6px 1px 0;
  border-radius: 0 8px 8px 0;
}
.lf-dash-nav-item.active {
  background: linear-gradient(90deg, rgba(164,53,240,.45) 0%, rgba(135,16,216,.2) 60%, transparent 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: inset 3px 0 0 #f0abfc;
  padding-left: 11px;
}
.lf-dash-content { flex: 1; padding: 16px; background: var(--lf-surface-e); overflow: hidden; }
.lf-dash-welcome {
  font-size: 12.5px;
  font-weight: 700;
  color: #6b21a8;
  margin-bottom: 12px;
  border-left: 4px solid var(--udemy-primary);
  padding-left: 9px;
  letter-spacing: -.2px;
}
.lf-kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.lf-kpi-box {
  background: #fff;
  border-radius: 9px;
  padding: 10px;
  border: 1px solid rgba(164,53,240,.14);
  text-align: center;
  position: relative; overflow: hidden;
}
.lf-kpi-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--udemy-primary), var(--lf-bleu));
}
.lf-kpi-val { font-size: 17px; font-weight: 900; color: #6b21a8; letter-spacing: -.5px; }
.lf-kpi-lbl { font-size: 9px; color: var(--lf-gray-text); margin-top: 2px; }
.lf-mini-chart { background: #fff; border-radius: 9px; padding: 10px; border: 1px solid var(--lf-border); }
.lf-mini-chart-title { font-size: 10px; font-weight: 600; color: var(--lf-gray-text); margin-bottom: 8px; }
.lf-chart-bars { display: flex; align-items: flex-end; gap: 5px; height: 52px; }
.lf-bar { flex: 1; border-radius: 3px 3px 0 0; min-height: 8px; }
.lf-bar-lo { background: var(--lf-violet-mid); }
.lf-bar-hi { background: var(--udemy-primary); }

/* Float badges hero */
.lf-float-badge {
  position: absolute;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--lf-radius-md);
  padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,91,.18), 0 0 0 1px rgba(164,53,240,.12);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(164,53,240,.15);
  white-space: nowrap;
  z-index: 2;
}
.lf-float-badge.fb-top-right { top: -16px; right: -8px; }
.lf-float-badge.fb-bot-left  { bottom: 24px; left: -24px; }
.lf-float-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.lf-float-icon.green { background: var(--lf-green-light); color: var(--lf-green); }
.lf-float-icon.violet { background: var(--lf-violet-light); color: var(--udemy-primary); }

/* =============================================
   LOGOS MARQUEE
============================================= */
.lf-trust-bar {
  background: linear-gradient(180deg, #fdfbff 0%, #f8f5ff 100%);
  border-top: 1px solid rgba(164,53,240,.12);
  border-bottom: 1px solid rgba(164,53,240,.08);
  padding: 16px 0;
  overflow: hidden;
}
.lf-trust-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--lf-gray-text);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lf-marquee-wrap { overflow: hidden; }
.lf-marquee-track {
  display: flex;
  gap: 36px;
  align-items: center;
  animation: lf-marquee 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes lf-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lf-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #6b7280;
  background: #fff;
  border: 1px solid rgba(164,53,240,.14);
  border-radius: 8px;
  padding: 7px 16px;
  box-shadow: 0 1px 4px rgba(0,0,91,.04);
}

/* =============================================
   DUAL AUDIENCE
============================================= */
.lf-audience-card {
  border-radius: var(--lf-radius-lg);
  padding: 36px;
  height: 100%;
  border: 2px solid transparent;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.lf-audience-card:hover {
  border-color: var(--lf-violet-mid);
  box-shadow: var(--lf-shadow-violet);
}
.lf-audience-card.lf-card-of     { background: linear-gradient(135deg, var(--lf-violet-faint), var(--lf-violet-light)); }
.lf-audience-card.lf-card-learner { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }

.lf-audience-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.lf-audience-icon.violet { background: var(--lf-violet-light); color: var(--udemy-primary); }
.lf-audience-icon.green  { background: var(--lf-green-light);  color: var(--lf-green); }

.lf-audience-title { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.lf-audience-desc  { font-size: 15px; color: var(--lf-gray-text); line-height: 1.65; margin-bottom: 20px; }

.lf-audience-list { list-style: none; padding: 0; margin: 0 0 24px; }
.lf-audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--udemy-dark);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.lf-audience-list li:last-child { border-bottom: none; }
.lf-audience-list li i { font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.lf-audience-list li .ic-violet { color: var(--udemy-primary); }
.lf-audience-list li .ic-green  { color: var(--lf-green); }

/* =============================================
   STATS STRIP
============================================= */
.lf-stat-strip {
  padding: 56px 0;
  background:
    radial-gradient(ellipse 50% 70% at 10% 50%, rgba(164,53,240,.28), transparent 55%),
    radial-gradient(ellipse 40% 60% at 90% 50%, rgba(0,0,145,.35),   transparent 55%),
    linear-gradient(135deg, var(--lf-bleu) 0%, #2a1f6e 42%, #5b21b6 75%, #4a1a7a 100%);
}
.lf-stat-item { text-align: center; padding: 16px; }
.lf-stat-num {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.lf-stat-num .lf-stat-accent { color: #f0abfc; }
.lf-stat-lbl { font-size: 14px; color: rgba(255,255,255,.68); font-weight: 500; }

/* =============================================
   FEATURE CARDS V2
============================================= */
.lf-feature-card-v2 {
  background: #fff;
  border-radius: var(--lf-radius-lg);
  padding: 30px;
  height: 100%;
  border: 1px solid rgba(164,53,240,.12);
  box-shadow: 0 1px 3px rgba(0,0,91,.04);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative; overflow: hidden;
}
.lf-feature-card-v2::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--udemy-primary) 0%, var(--lf-bleu) 55%, #8710d8 100%);
  opacity: .7;
}
.lf-feature-card-v2:hover {
  border-color: rgba(164,53,240,.28);
  box-shadow: 0 12px 40px rgba(0,0,91,.09), 0 4px 16px rgba(164,53,240,.1);
  transform: translateY(-4px);
}
.lf-feature-icon-box {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px;
  margin-bottom: 18px;
}
.lf-feature-icon-box.violet { background: var(--lf-violet-light); color: var(--udemy-primary); }
.lf-feature-icon-box.green  { background: var(--lf-green-light);  color: var(--lf-green); }
.lf-feature-icon-box.orange { background: #fff7ed; color: #ea580c; }
.lf-feature-title { font-size: 16px; font-weight: 700; margin-bottom: 9px; }
.lf-feature-desc  { font-size: 14px; color: var(--lf-gray-text); line-height: 1.65; }
.lf-feature-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  background: var(--lf-violet-light); color: #6b21a8;
}
.lf-feature-tag.green { background: var(--lf-green-light); color: var(--lf-green); }

/* =============================================
   HOW IT WORKS — STEPS V2
============================================= */
.lf-step-card-v2 {
  background: #fff;
  border-radius: var(--lf-radius-lg);
  padding: 30px 24px;
  text-align: center;
  border: 1.5px solid var(--lf-border);
  height: 100%;
  position: relative;
  transition: box-shadow .2s;
}
.lf-step-card-v2::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--udemy-primary), #f0abfc);
  border-radius: var(--lf-radius-lg) var(--lf-radius-lg) 0 0;
}
.lf-step-card-v2:hover { box-shadow: 0 8px 30px rgba(164,53,240,.12); }
.lf-step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--udemy-primary), #8710d8);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 5px 18px rgba(164,53,240,.32);
}
.lf-step-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.lf-step-desc  { font-size: 14px; color: var(--lf-gray-text); line-height: 1.65; }
.lf-step-note {
  margin-top: 14px; padding: 10px 14px;
  border-radius: 9px; font-size: 13px;
}
.lf-step-note.violet { background: var(--lf-violet-faint); color: #6b21a8; }
.lf-step-note.green  { background: #f0fdf4; color: var(--lf-green); }

/* =============================================
   PRICING — ABONNEMENTS V2
============================================= */
/* Billing toggle mensuel / annuel */
.lf-billing-toggle {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--lf-gray-text);
  background: var(--lf-violet-faint);
  border: 1.5px solid var(--lf-violet-mid);
  border-radius: 30px; padding: 8px 20px;
}
.lf-save-badge {
  background: var(--lf-green-light); color: var(--lf-green);
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 12px; font-style: normal;
}
.lf-toggle-sw {
  position: relative; display: inline-block;
  width: 44px; height: 24px; cursor: pointer; margin: 0;
}
.lf-toggle-sw input { opacity: 0; width: 0; height: 0; position: absolute; }
.lf-toggle-sw-track {
  position: absolute; inset: 0; border-radius: 12px;
  background: var(--lf-violet-mid); transition: background .2s;
}
.lf-toggle-sw-thumb {
  position: absolute;
  width: 18px; height: 18px; border-radius: 50%;
  left: 3px; top: 3px; background: #fff;
  transition: transform .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.lf-toggle-sw input:checked ~ .lf-toggle-sw-track { background: var(--udemy-primary); }
.lf-toggle-sw input:checked ~ .lf-toggle-sw-thumb { transform: translateX(20px); }

/* Plans grid */
.lf-plans-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 40px;
  align-items: start;
}
.lf-plan-card {
  background: #fff;
  border-radius: var(--lf-radius-lg);
  border: 1.5px solid var(--lf-border);
  padding: 26px 18px 22px;
  position: relative;
  display: flex; flex-direction: column;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.lf-plan-card:hover {
  border-color: var(--lf-violet-mid);
  box-shadow: 0 8px 28px rgba(164,53,240,.10);
  transform: translateY(-3px);
}
.lf-plan-card.lf-plan-popular {
  border-color: var(--udemy-primary);
  box-shadow: 0 10px 40px rgba(164,53,240,.20);
  transform: translateY(-8px);
}
.lf-plan-card.lf-plan-enterprise {
  background:
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(164,53,240,.25), transparent 55%),
    linear-gradient(160deg, var(--lf-bleu-sidebar) 0%, #1a1048 100%);
  border-color: rgba(164,53,240,.35);
}
.lf-plan-popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--udemy-primary), #8710d8);
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 14px; border-radius: 20px; white-space: nowrap;
  box-shadow: 0 3px 10px rgba(164,53,240,.4);
}
.lf-plan-name {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.4px; color: var(--udemy-primary); margin-bottom: 3px;
}
.lf-plan-enterprise .lf-plan-name { color: #f0abfc; }
.lf-plan-tagline { font-size: 11.5px; color: var(--lf-gray-text); margin-bottom: 14px; line-height: 1.45; }
.lf-plan-enterprise .lf-plan-tagline { color: rgba(255,255,255,.5); }
.lf-plan-price {
  font-size: 32px; font-weight: 900; color: var(--udemy-dark);
  line-height: 1.1; margin-bottom: 2px; letter-spacing: -1px;
}
.lf-plan-enterprise .lf-plan-price { color: #fff; }
.lf-plan-price small { font-size: 12px; font-weight: 500; color: var(--lf-gray-text); letter-spacing: 0; }
.lf-plan-enterprise .lf-plan-price small { color: rgba(255,255,255,.45); }
.lf-plan-capacity {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700;
  background: var(--lf-violet-faint); color: #6b21a8;
  padding: 3px 10px; border-radius: 12px; margin: 10px 0 16px;
}
.lf-plan-enterprise .lf-plan-capacity { background: rgba(164,53,240,.2); color: #f0abfc; }
.lf-plan-divider { height: 1px; background: var(--lf-border); margin-bottom: 14px; }
.lf-plan-enterprise .lf-plan-divider { background: rgba(255,255,255,.1); }
.lf-plan-features { list-style: none; padding: 0; margin: 0 0 18px; flex: 1; }
.lf-plan-features li {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 12px; color: var(--udemy-dark);
  padding: 4px 0; line-height: 1.45;
}
.lf-plan-enterprise .lf-plan-features li { color: rgba(255,255,255,.8); }
.lf-plan-features li i { font-size: 10px; margin-top: 3px; flex-shrink: 0; color: var(--lf-green); }
.lf-plan-enterprise .lf-plan-features li i { color: #a3e635; }
.lf-plan-features li.lf-feat-na { color: #c4c9cf; }
.lf-plan-features li.lf-feat-na i { color: #d1d5db; }
.lf-plan-cta {
  display: block; text-align: center; padding: 11px 14px;
  border-radius: var(--lf-radius-md);
  font-size: 13px; font-weight: 700;
  border: 2px solid var(--lf-violet-mid); color: #6b21a8;
  background: transparent; transition: all .15s; text-decoration: none;
}
.lf-plan-cta:hover { background: var(--lf-violet-faint); border-color: var(--udemy-primary); color: #6b21a8; text-decoration: none; }
.lf-plan-popular .lf-plan-cta {
  background: var(--udemy-primary); border-color: var(--udemy-primary); color: #fff;
  box-shadow: 0 4px 16px rgba(164,53,240,.35);
}
.lf-plan-popular .lf-plan-cta:hover { background: #8710d8; border-color: #8710d8; color: #fff; }
.lf-plan-enterprise .lf-plan-cta { background: rgba(164,53,240,.2); border-color: rgba(240,171,252,.45); color: #f0abfc; }
.lf-plan-enterprise .lf-plan-cta:hover { background: rgba(164,53,240,.35); color: #fff; }
.lf-plan-annual-note {
  font-size: 10.5px; color: var(--lf-gray-text); text-align: center; margin-top: 8px;
}
.lf-plan-enterprise .lf-plan-annual-note { color: rgba(255,255,255,.38); }

.lf-pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}
.lf-pf-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  padding: 13px 16px;
  background: #fff;
  border-radius: var(--lf-radius-md);
  border: 1.5px solid var(--lf-border);
}
.lf-pf-item i { color: var(--lf-green); font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.lf-pf-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--udemy-dark); }
.lf-pf-item span   { font-size: 12px; color: var(--lf-gray-text); }

.lf-pricing-cta {
  margin-top: 36px;
  background: linear-gradient(135deg, var(--lf-violet-faint), var(--lf-violet-light));
  border: 2px dashed var(--lf-violet-mid);
  border-radius: var(--lf-radius-lg);
  padding: 30px;
  text-align: center;
}
.lf-pricing-cta h3 { font-size: 21px; font-weight: 800; margin-bottom: 7px; }
.lf-pricing-cta p  { font-size: 15px; color: var(--lf-gray-text); margin-bottom: 18px; }
.lf-pricing-cta .lf-cta-meta {
  margin-top: 12px;
  font-size: 12px;
  color: var(--lf-gray-text);
}
.lf-pricing-cta .lf-cta-meta i { margin-right: 3px; }

/* Alert offre spéciale */
.lf-offer-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lf-green-light);
  border: 1.5px solid var(--lf-green);
  color: var(--lf-green);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 30px;
}

/* =============================================
   TESTIMONIALS V2
============================================= */
.lf-testi-card-v2 {
  background: #fff;
  border-radius: var(--lf-radius-lg);
  padding: 32px;
  height: 100%;
  border: 1.5px solid var(--lf-border);
  position: relative;
  transition: box-shadow .2s, border-color .2s;
}
.lf-testi-card-v2:hover {
  box-shadow: var(--lf-shadow-violet);
  border-color: var(--lf-violet-mid);
}
.lf-testi-card-v2::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 68px; font-weight: 900;
  color: var(--lf-violet-mid);
  line-height: 1;
  font-family: Georgia, serif;
}
.lf-testi-stars { display: flex; gap: 3px; margin-top: 26px; margin-bottom: 13px; }
.lf-testi-stars i { color: #f59e0b; font-size: 13px; }
.lf-testi-text  { font-size: 14px; color: var(--udemy-dark); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.lf-testi-author { display: flex; align-items: center; gap: 12px; }
.lf-author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.lf-av-a { background: linear-gradient(135deg, var(--udemy-primary), #8710d8); }
.lf-av-b { background: linear-gradient(135deg, var(--lf-green), #15803d); }
.lf-av-c { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.lf-author-name { font-size: 14px; font-weight: 700; color: var(--udemy-dark); }
.lf-author-role { font-size: 12px; color: var(--lf-gray-text); }
.lf-testi-badge {
  display: inline-flex;
  align-items: center; gap: 5px;
  background: var(--lf-violet-light); color: #6b21a8;
  font-size: 10px; font-weight: 700;
  padding: 2px 9px; border-radius: 20px;
  margin-top: 4px;
}

/* =============================================
   FAQ V2
============================================= */
.lf-faq-item {
  border: 1.5px solid var(--lf-border);
  border-radius: var(--lf-radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.lf-faq-item.open { border-color: var(--lf-violet-mid); }
.lf-faq-q {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-size: 15px; font-weight: 600; color: var(--udemy-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background .15s;
}
.lf-faq-item.open .lf-faq-q { background: var(--lf-violet-faint); color: #6b21a8; }
.lf-faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--lf-violet-light);
  color: var(--udemy-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
  transition: transform .3s;
}
.lf-faq-item.open .lf-faq-icon { transform: rotate(45deg); background: var(--udemy-primary); color: #fff; }
.lf-faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--lf-gray-text);
  line-height: 1.7;
  background: #fff;
}
.lf-faq-item.open .lf-faq-a { display: block; }

/* FAQ CTA box */
.lf-faq-help-box {
  background: var(--lf-violet-faint);
  border-radius: var(--lf-radius-lg);
  padding: 26px;
  border: 1.5px solid var(--lf-violet-mid);
}
.lf-faq-help-title { font-size: 15px; font-weight: 700; color: #6b21a8; margin-bottom: 9px; }
.lf-faq-help-desc  { font-size: 13px; color: var(--lf-gray-text); margin-bottom: 14px; }

/* =============================================
   FINAL CTA V2
============================================= */
.lf-cta-v2 {
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lf-cta-v2::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(164,53,240,.22) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(240,171,252,.14) 0%, transparent 60%);
  pointer-events: none;
}
.lf-cta-v2 .container { position: relative; z-index: 1; }
.lf-cta-eyebrow { font-size: 12px; font-weight: 700; color: #f0abfc; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.lf-cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.lf-cta-sub { font-size: 17px; color: rgba(255,255,255,.72); max-width: 500px; margin: 0 auto 36px; line-height: 1.6; }
.lf-cta-guarantees { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 26px; }
.lf-cta-g { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.62); font-weight: 500; }
.lf-cta-g i { color: #f0abfc; font-size: 13px; }

.lf-btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  font-size: 15px; font-weight: 600;
  color: #fff;
  border: 2px solid rgba(255,255,255,.32);
  border-radius: var(--lf-radius-md);
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.lf-btn-cta-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); color: #fff; text-decoration: none; }

/* =============================================
   CATÉGORIES (réutilise .udemy-category-card)
============================================= */
.lf-cat-grid-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
}
/* .udemy-category-card already styled — we just override hover accent */
.lf-cat-grid-v2 .udemy-category-card {
  transition: border-color .2s, box-shadow .2s, transform .15s;
  border: 1.5px solid var(--lf-border);
  border-radius: var(--lf-radius-md);
}
.lf-cat-grid-v2 .udemy-category-card:hover {
  border-color: var(--lf-violet-mid);
  box-shadow: 0 6px 18px rgba(164,53,240,.11);
  transform: translateY(-3px);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 991px) {
  .lf-hero-v2            { padding: 52px 0 40px; }
  .lf-dash-window        { display: none; }
  .lf-plans-grid        { grid-template-columns: repeat(3,1fr); }
  .lf-plan-card.lf-plan-popular { transform: none; }
  .lf-cat-grid-v2        { grid-template-columns: repeat(3,1fr); }
  .lf-pricing-features   { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .lf-hero-title         { font-size: 28px; letter-spacing: -.8px; }
  .lf-plans-grid        { grid-template-columns: 1fr 1fr; }
  .lf-cat-grid-v2        { grid-template-columns: repeat(2,1fr); }
  .lf-section-v2         { padding: 52px 0; }
  .lf-trust-chips        { gap: 12px; }
}

/* =============================================
   HERO — POPUP SOCIAL PROOF (coin bas-gauche)
============================================= */
.lf-notif-popup {
  position: absolute;
  bottom: 24px; left: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  border: 1px solid var(--lf-border);
  animation: lf-slide-in-left .6s ease forwards;
  z-index: 3;
}
@keyframes lf-slide-in-left {
  0%   { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}
.lf-notif-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--udemy-primary), #8710d8);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.lf-notif-text { font-size: 12px; color: var(--udemy-dark); line-height: 1.45; }
.lf-notif-text strong { display: block; font-weight: 700; }
.lf-notif-time { font-size: 10px; color: var(--lf-gray-text); margin-top: 1px; }
.lf-notif-dot {
  width: 9px; height: 9px;
  border-radius: 50%; background: var(--lf-green);
  flex-shrink: 0;
  animation: lf-pulse 2s infinite;
}

/* Hero live counter strip */
.lf-hero-counters {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: #fff;
  border: 1.5px solid var(--lf-violet-mid);
  border-radius: 14px;
  padding: 18px 24px;
  margin-top: 36px;
  box-shadow: 0 4px 24px rgba(164,53,240,.10);
}
.lf-hc-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--lf-border);
}
.lf-hc-item:last-child { border-right: none; }
.lf-hc-num {
  font-size: 26px; font-weight: 900; color: var(--udemy-primary);
  line-height: 1; letter-spacing: -1px;
}
.lf-hc-lbl { font-size: 10px; color: var(--lf-gray-text); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: .8px; }

/* =============================================
   PROBLÈME → SOLUTION
============================================= */
.lf-problem-bg {
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(164,53,240,.25), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%,  rgba(0,0,145,.4),   transparent 50%),
    linear-gradient(135deg, var(--lf-bleu-deep) 0%, #1a1048 45%, #1e1b2e 100%);
}
.lf-problem-eyebrow { color: #f87171; font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 10px; }
.lf-problem-title   { color: #fff; font-size: clamp(26px,3.5vw,42px); font-weight: 800; letter-spacing: -.8px; line-height: 1.2; margin-bottom: 14px; }
.lf-problem-sub     { color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.65; margin-bottom: 0; }

.lf-pain-card {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--lf-radius-md);
  padding: 24px;
  border-left: 4px solid #f87171;
  transition: background .2s;
}
.lf-pain-card:hover { background: rgba(255,255,255,.08); }
.lf-pain-icon { font-size: 28px; margin-bottom: 12px; }
.lf-pain-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.lf-pain-desc  { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.65; }

.lf-solution-strip {
  background: linear-gradient(135deg, var(--lf-violet-faint), var(--lf-violet-light));
  border-radius: var(--lf-radius-lg);
  padding: 32px;
  border: 2px solid var(--lf-violet-mid);
  position: relative;
  overflow: hidden;
}
.lf-solution-strip::before {
  content: '✓';
  position: absolute;
  right: 24px; top: 16px;
  font-size: 80px; font-weight: 900;
  color: var(--lf-violet-mid);
  line-height: 1;
}
.lf-solution-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--lf-violet-mid);
}
.lf-solution-item:last-child { border-bottom: none; }
.lf-solution-item i { color: var(--lf-green); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.lf-solution-item-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--udemy-dark); }
.lf-solution-item-text span   { font-size: 13px; color: var(--lf-gray-text); }

/* =============================================
   IMPACT METRICS (grand fond violet)
============================================= */
.lf-impact-num {
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.lf-impact-num .lf-accent { color: #f0abfc; }
.lf-impact-lbl  { font-size: 14px; color: rgba(255,255,255,.72); font-weight: 500; margin-bottom: 4px; }
.lf-impact-sub  { font-size: 12px; color: rgba(255,255,255,.42); }
.lf-impact-divider { width: 1px; background: rgba(255,255,255,.12); }

/* =============================================
   AUDIENCE TABS (OF / Entreprises / Écoles)
============================================= */
.lf-audience-tabs {
  display: flex;
  background: var(--lf-light);
  border: 2px solid var(--lf-border);
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 48px;
  gap: 4px;
}
.lf-aud-tab-btn {
  padding: 11px 28px;
  font-size: 14px; font-weight: 600;
  color: var(--lf-gray-text);
  border: none; background: none;
  border-radius: 40px;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: background .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.lf-aud-tab-btn.active {
  background: linear-gradient(135deg, var(--udemy-primary), #8710d8);
  color: #fff;
  box-shadow: 0 4px 14px rgba(164,53,240,.35);
}
.lf-aud-tab-pane { display: none; }
.lf-aud-tab-pane.active { display: block; }

.lf-aud-feature-list { list-style: none; padding: 0; margin: 0 0 28px; }
.lf-aud-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  margin-bottom: 6px;
  background: var(--lf-violet-faint);
  font-size: 14px; color: var(--udemy-dark);
  border: 1px solid var(--lf-violet-mid);
}
.lf-aud-feature-list li i { color: var(--udemy-primary); flex-shrink: 0; margin-top: 2px; }
.lf-aud-feature-list li strong { font-weight: 700; display: block; }
.lf-aud-feature-list li span { font-size: 12px; color: var(--lf-gray-text); }
.lf-aud-feature-list.green li { background: #f0fdf4; border-color: #bbf7d0; }
.lf-aud-feature-list.green li i { color: var(--lf-green); }
.lf-aud-feature-list.blue li { background: #eff6ff; border-color: #bfdbfe; }
.lf-aud-feature-list.blue li i { color: #2563eb; }

.lf-aud-metric-row { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.lf-aud-metric {
  flex: 1; min-width: 120px;
  background: #fff;
  border: 1.5px solid var(--lf-border);
  border-radius: var(--lf-radius-md);
  padding: 16px;
  text-align: center;
}
.lf-aud-metric .val { font-size: 26px; font-weight: 800; color: var(--udemy-primary); line-height: 1; }
.lf-aud-metric .lbl { font-size: 12px; color: var(--lf-gray-text); margin-top: 4px; }

/* =============================================
   FEATURE SHOWCASE — ALTERNATING
============================================= */
.lf-showcase-row { padding: 60px 0; }
.lf-showcase-row:nth-child(even) { background: var(--lf-violet-faint); }

.lf-screen-frame {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--lf-border);
  box-shadow: 0 16px 48px rgba(164,53,240,.14);
}
.lf-screen-bar {
  background: #f1f3f4;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--lf-border);
}
.lf-screen-bar .d { width: 9px; height: 9px; border-radius: 50%; }
.d-r { background: #ff5f57; }
.d-y { background: #febc2e; }
.d-g { background: #28c840; }
.lf-screen-content { padding: 20px; background: #f8fafc; min-height: 220px; }

.lf-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--lf-violet-light);
  color: #6b21a8;
  font-size: 11px; font-weight: 700;
  padding: 5px 13px; border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.lf-showcase-title { font-size: clamp(22px, 3vw, 34px); font-weight: 800; letter-spacing: -.5px; margin-bottom: 14px; }
.lf-showcase-sub   { font-size: 16px; color: var(--lf-gray-text); line-height: 1.7; margin-bottom: 22px; }

.lf-check-list { list-style: none; padding: 0; margin: 0 0 28px; }
.lf-check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--udemy-dark);
  padding: 6px 0;
}
.lf-check-list li i { color: var(--lf-green); font-size: 13px; margin-top: 2px; flex-shrink: 0; }

/* Progress bars (for feature showcase) */
.lf-progress-item { margin-bottom: 14px; }
.lf-progress-label {
  display: flex; justify-content: space-between;
  font-size: 12px; font-weight: 600; color: var(--udemy-dark);
  margin-bottom: 5px;
}
.lf-progress-bar {
  height: 8px;
  background: var(--lf-violet-mid);
  border-radius: 4px;
  overflow: hidden;
}
.lf-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--udemy-primary), #f0abfc);
  border-radius: 4px;
  transition: width 1.2s ease;
  width: 0;
}
.lf-progress-fill.animated { width: var(--target-width); }

/* =============================================
   ROI CALCULATOR
============================================= */
.lf-roi-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 60%, #2d1b69 100%);
}
.lf-roi-title { color: #fff; font-size: clamp(26px,3.5vw,40px); font-weight: 800; margin-bottom: 10px; }
.lf-roi-sub   { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.65; margin-bottom: 32px; }

.lf-roi-card {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--lf-radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.lf-roi-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); margin-bottom: 8px; }
.lf-roi-input {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 16px; font-weight: 700; color: #fff;
  margin-bottom: 6px;
}
.lf-roi-input:focus { outline: none; border-color: var(--udemy-primary); }
.lf-roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%; height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.2);
  outline: none;
  margin-bottom: 20px;
}
.lf-roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--udemy-primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(164,53,240,.5);
}
.lf-roi-result {
  background: linear-gradient(135deg, var(--udemy-primary), #8710d8);
  border-radius: var(--lf-radius-lg);
  padding: 28px;
  text-align: center;
  margin-top: 24px;
}
.lf-roi-result .lf-roi-result-num {
  font-size: 48px; font-weight: 900; color: #fff;
  line-height: 1; margin-bottom: 6px;
}
.lf-roi-result .lf-roi-result-lbl { font-size: 14px; color: rgba(255,255,255,.8); }
.lf-roi-breakdown { margin-top: 16px; }
.lf-roi-breakdown-item {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-size: 13px;
}
.lf-roi-breakdown-item:last-child { border-bottom: none; }
.lf-roi-breakdown-item .k { color: rgba(255,255,255,.65); }
.lf-roi-breakdown-item .v { color: #fff; font-weight: 700; }

/* =============================================
   COMPARISON TABLE
============================================= */
.lf-comparison-wrap {
  overflow-x: auto;
  border-radius: var(--lf-radius-lg);
  border: 2px solid var(--lf-border);
  box-shadow: var(--lf-shadow-card);
}
.lf-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: #fff;
}
.lf-comparison-table th {
  padding: 18px 20px;
  font-size: 14px; font-weight: 700; text-align: center;
  border-bottom: 2px solid var(--lf-border);
  background: #f7f9fa;
}
.lf-comparison-table th.lf-col-us {
  background: linear-gradient(135deg, var(--lf-violet-faint), var(--lf-violet-light));
  color: #6b21a8;
  border-top: 4px solid var(--udemy-primary);
  position: relative;
}
.lf-comparison-table th .lf-us-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--udemy-primary); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  white-space: nowrap;
}
.lf-comparison-table td {
  padding: 14px 20px;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid var(--lf-border);
  color: var(--udemy-dark);
}
.lf-comparison-table td:first-child { text-align: left; font-weight: 600; color: var(--udemy-dark); }
.lf-comparison-table tr:last-child td { border-bottom: none; }
.lf-comparison-table tr:hover td { background: #fafafa; }
.lf-comparison-table td.lf-col-us { background: rgba(164,53,240,.04); }
.ct-yes  { color: var(--lf-green);  font-size: 18px; }
.ct-no   { color: #9ca3af; font-size: 18px; }
.ct-part { color: #f59e0b; font-size: 18px; }

/* =============================================
   CASE STUDY HIGHLIGHT
============================================= */
.lf-case-study {
  background: linear-gradient(135deg, var(--lf-violet-faint), var(--lf-violet-light));
  border-radius: var(--lf-radius-lg);
  padding: 40px;
  border: 2px solid var(--lf-violet-mid);
  position: relative;
  overflow: hidden;
}
.lf-case-study::before {
  content: '"';
  position: absolute;
  right: 32px; bottom: -20px;
  font-size: 160px; font-weight: 900;
  color: var(--lf-violet-mid);
  line-height: 1; font-family: Georgia, serif;
}
.lf-case-tag {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: var(--udemy-primary);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: .5px;
}
.lf-case-metrics { display: flex; gap: 20px; flex-wrap: wrap; margin: 24px 0; }
.lf-case-metric {
  background: #fff;
  border-radius: var(--lf-radius-md);
  padding: 16px 20px;
  text-align: center;
  border: 1.5px solid var(--lf-border);
  flex: 1; min-width: 110px;
  box-shadow: var(--lf-shadow-card);
}
.lf-case-metric .cv { font-size: 28px; font-weight: 900; color: var(--udemy-primary); line-height: 1; }
.lf-case-metric .cl { font-size: 11px; color: var(--lf-gray-text); margin-top: 3px; }

/* =============================================
   INTEGRATION GRID
============================================= */
.lf-integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.lf-integration-tile {
  background: #fff;
  border: 1.5px solid var(--lf-border);
  border-radius: var(--lf-radius-md);
  padding: 20px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.lf-integration-tile:hover {
  border-color: var(--lf-violet-mid);
  box-shadow: 0 6px 18px rgba(164,53,240,.1);
  transform: translateY(-3px);
}
.lf-int-icon { font-size: 30px; margin-bottom: 8px; }
.lf-int-name { font-size: 13px; font-weight: 700; color: var(--udemy-dark); }
.lf-int-desc { font-size: 11px; color: var(--lf-gray-text); margin-top: 2px; }
.lf-int-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 10px;
  background: var(--lf-green-light); color: var(--lf-green);
}

/* =============================================
   LEAD MAGNET
============================================= */
.lf-lead-bg {
  background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
}
.lf-lead-box {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--lf-radius-lg);
  padding: 36px;
  backdrop-filter: blur(6px);
}
.lf-lead-mockup {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
  position: relative;
}
.lf-lead-mockup::before {
  content: 'PDF';
  position: absolute;
  top: 12px; right: 12px;
  background: #ef4444; color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 4px;
}
.lf-lead-title   { color: #fff; font-size: clamp(24px,3vw,36px); font-weight: 800; margin-bottom: 10px; }
.lf-lead-sub     { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
.lf-lead-form    { display: flex; gap: 10px; }
.lf-lead-input {
  flex: 1;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 14px; color: #fff;
}
.lf-lead-input::placeholder { color: rgba(255,255,255,.5); }
.lf-lead-input:focus { outline: none; border-color: rgba(255,255,255,.6); }
.lf-lead-points { list-style: none; padding: 0; margin: 20px 0 0; }
.lf-lead-points li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.75);
  padding: 4px 0;
}
.lf-lead-points li i { color: #6ee7b7; font-size: 13px; flex-shrink: 0; }

/* =============================================
   COUNTDOWN URGENCY
============================================= */
.lf-countdown-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: 12px 24px;
  margin-bottom: 28px;
}
.lf-countdown-item { text-align: center; }
.lf-countdown-num {
  font-size: 32px; font-weight: 900; color: #fff; line-height: 1;
  background: rgba(255,255,255,.1);
  border-radius: 8px; padding: 6px 14px; min-width: 60px;
  display: block;
}
.lf-countdown-lbl { font-size: 10px; color: rgba(255,255,255,.55); margin-top: 4px; letter-spacing: .5px; text-transform: uppercase; }
.lf-countdown-sep { font-size: 24px; font-weight: 700; color: rgba(255,255,255,.4); align-self: flex-start; padding-top: 8px; }

/* =============================================
   URGENCY BANNER TOP
============================================= */
.lf-urgency-bar {
  background: linear-gradient(90deg, var(--lf-green) 0%, #15803d 100%);
  padding: 10px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1001;
}
.lf-urgency-bar p {
  font-size: 13px; font-weight: 700; color: #fff; margin: 0;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.lf-urgency-bar a { color: #fff; text-decoration: underline; }

/* =============================================
   SCREEN FRAME (mockups)
============================================= */
.lf-screen-frame {
  background: #1e1e2e; border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.18); border: 1.5px solid #2d2d44;
}
.lf-screen-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; background: #2d2d44; border-bottom: 1px solid #3d3d5c;
}
.lf-screen-bar .d { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.lf-screen-bar .d-r { background: #ef4444; }
.lf-screen-bar .d-y { background: #f59e0b; }
.lf-screen-bar .d-g { background: #22c55e; }
.lf-screen-content { background: #f8fafc; padding: 18px; }

/* =============================================
   SHOWCASE ROWS
============================================= */
.lf-showcase-row { padding: 80px 0; border-bottom: 1px solid var(--lf-border); }
.lf-showcase-row:nth-child(odd) { background: #fff; }
.lf-showcase-row:nth-child(even) { background: #faf5ff; }
.lf-showcase-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--lf-violet-faint); color: var(--udemy-primary);
  font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px;
  border: 1px solid var(--lf-violet-mid); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .6px;
}
.lf-showcase-title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--udemy-dark); margin-bottom: 14px; line-height: 1.25; }
.lf-showcase-sub { font-size: 15px; color: var(--lf-gray-text); line-height: 1.7; margin-bottom: 20px; }

.lf-check-list { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 10px; }
.lf-check-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--udemy-dark); }
.lf-check-list li i { color: var(--lf-green); font-size: 16px; flex-shrink: 0; }

/* =============================================
   AUDIENCE FEATURE LIST
============================================= */
.lf-aud-feature-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 14px; }
.lf-aud-feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; }
.lf-aud-feature-list li i { color: var(--udemy-primary); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.lf-aud-feature-list.blue li i { color: #2563eb; }
.lf-aud-feature-list.green li i { color: #15803d; }
.lf-aud-feature-list li div { display: flex; flex-direction: column; gap: 2px; }
.lf-aud-feature-list li strong { font-weight: 700; color: var(--udemy-dark); }
.lf-aud-feature-list li span { color: var(--lf-gray-text); font-size: 13px; }

.lf-aud-metric-row { display: flex; gap: 16px; flex-wrap: wrap; margin: 18px 0; }
.lf-aud-metric { background: var(--lf-violet-faint); border: 1.5px solid var(--lf-violet-mid); border-radius: 12px; padding: 12px 18px; text-align: center; flex: 1; min-width: 80px; }
.lf-aud-metric .val { font-size: 22px; font-weight: 900; color: var(--udemy-primary); line-height: 1; }
.lf-aud-metric .lbl { font-size: 11px; color: var(--lf-gray-text); margin-top: 3px; }

/* =============================================
   PROGRESS BAR (animation via CSS custom prop)
============================================= */
.lf-progress-item { margin-bottom: 10px; }
.lf-progress-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--udemy-dark); margin-bottom: 4px; font-weight: 600; }
.lf-progress-bar { height: 8px; background: #e5e7eb; border-radius: 4px; overflow: hidden; }
.lf-progress-fill {
  height: 100%; width: 0; border-radius: 4px;
  background: linear-gradient(90deg, var(--udemy-primary), #c026d3);
  transition: width 0s;
}
.lf-progress-fill.animated { width: var(--target-width, 0%); transition: width 1.1s cubic-bezier(.4,0,.2,1); }

/* =============================================
   CASE STUDY
============================================= */
.lf-case-study {
  background: linear-gradient(135deg, #fdf4ff, #ede9fe);
  border: 1.5px solid var(--lf-violet-mid); border-radius: 20px; padding: 40px;
}
.lf-case-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--udemy-primary); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .6px; margin-bottom: 18px;
}
.lf-case-metrics { display: flex; gap: 16px; flex-wrap: wrap; margin: 16px 0; }
.lf-case-metric { flex: 1; min-width: 90px; }
.lf-case-metric .cv { font-size: 28px; font-weight: 900; color: var(--udemy-primary); }
.lf-case-metric .cl { font-size: 11px; color: var(--lf-gray-text); }

/* =============================================
   COMPARISON TABLE
============================================= */
.lf-comparison-wrap { overflow-x: auto; }
.lf-comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.lf-comparison-table th {
  padding: 14px 20px; background: var(--udemy-dark); color: #fff; font-weight: 700; text-align: center;
}
.lf-comparison-table th:first-child { text-align: left; border-radius: 12px 0 0 0; }
.lf-comparison-table th:last-child { border-radius: 0 12px 0 0; }
.lf-comparison-table .lf-col-us { background: var(--udemy-primary); }
.lf-us-badge {
  display: inline-block; background: #fbbf24; color: #1c1d1f;
  font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 10px; margin-bottom: 4px;
}
.lf-comparison-table td { padding: 12px 20px; border-bottom: 1px solid #f3f4f6; text-align: center; }
.lf-comparison-table td:first-child { text-align: left; font-weight: 600; color: var(--udemy-dark); }
.lf-comparison-table .lf-col-us { background: #faf5ff; }
.lf-comparison-table tbody tr:hover td { background: #f8fafc; }
.lf-comparison-table tbody tr:hover td.lf-col-us { background: #f3e8ff; }
.ct-yes { color: #18753c; font-size: 18px; }
.ct-no  { color: #ef4444; font-size: 18px; }
.ct-part { color: #f59e0b; font-size: 18px; }

/* =============================================
   INTEGRATIONS
============================================= */
.lf-integration-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.lf-integration-tile {
  background: #fff; border: 1.5px solid var(--lf-border); border-radius: 14px;
  padding: 22px 18px; text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
}
.lf-integration-tile:hover { transform: translateY(-4px); box-shadow: var(--lf-shadow-card); border-color: var(--lf-violet-mid); }
.lf-int-icon { font-size: 32px; margin-bottom: 8px; }
.lf-int-name { font-size: 14px; font-weight: 700; color: var(--udemy-dark); margin-bottom: 4px; }
.lf-int-desc { font-size: 12px; color: var(--lf-gray-text); line-height: 1.4; margin-bottom: 10px; }
.lf-int-badge {
  display: inline-block; background: var(--lf-violet-faint); color: var(--udemy-primary);
  font-size: 10px; font-weight: 700; padding: 2px 9px; border-radius: 10px; border: 1px solid var(--lf-violet-mid);
}

/* =============================================
   LEAD MAGNET
============================================= */
.lf-lead-bg { background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%); }
.lf-lead-title { font-size: clamp(24px, 4vw, 38px); font-weight: 900; color: #fff; margin: 10px 0 14px; }
.lf-lead-sub { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 20px; }
.lf-lead-form { display: flex; gap: 10px; margin-bottom: 18px; }
.lf-lead-input {
  flex: 1; padding: 14px 18px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1); color: #fff; font-size: 14px; outline: none;
  transition: border-color .2s;
}
.lf-lead-input::placeholder { color: rgba(255,255,255,.45); }
.lf-lead-input:focus { border-color: #a435f0; }
.lf-lead-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.lf-lead-points li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.8); }
.lf-lead-points li i { color: #22c55e; flex-shrink: 0; }
.lf-lead-mockup { background: #fff; border-radius: 14px; padding: 22px; box-shadow: 0 20px 60px rgba(0,0,0,.3); }

/* =============================================
   COUNTDOWN
============================================= */
.lf-countdown-box { display: flex; align-items: center; gap: 8px; }
.lf-countdown-item { text-align: center; }
.lf-countdown-num {
  display: inline-block; min-width: 60px; background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.25); color: #fff; font-size: 32px; font-weight: 900;
  border-radius: 10px; padding: 8px 14px; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.lf-countdown-lbl { font-size: 10px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.lf-countdown-sep { font-size: 28px; font-weight: 900; color: rgba(255,255,255,.4); margin-bottom: 18px; }

/* =============================================
   RESPONSIVE NOUVELLES SECTIONS
============================================= */
@media (max-width: 991px) {
  .lf-integration-grid { grid-template-columns: repeat(2,1fr); }
  .lf-lead-form { flex-direction: column; }
  .lf-aud-tab-btn { padding: 10px 18px; font-size: 13px; }
  .lf-hc-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--lf-border); }
  .lf-hc-item:nth-child(odd) { border-right: 1px solid var(--lf-border); }
  .lf-showcase-row { padding: 50px 0; }
  .lf-case-study { padding: 24px; }
}
@media (max-width: 767px) {
  .lf-audience-tabs { flex-wrap: wrap; border-radius: var(--lf-radius-md); }
  .lf-integration-grid { grid-template-columns: repeat(2,1fr); }
  .lf-case-metrics { gap: 10px; }
  .lf-roi-result .lf-roi-result-num { font-size: 36px; }
  .lf-countdown-num { font-size: 24px; min-width: 48px; padding: 5px 10px; }
  .lf-notif-popup { display: none; }
  .lf-hero-counters { padding: 12px; }
  .lf-hc-num { font-size: 22px; }
}
