.lp-body {
            margin: 0;
            min-height: 100vh;
            font-family: "Poppins", system-ui, -apple-system, sans-serif;
            background: #f1f5f9;
            color: #0f172a;
         }

         .lp-header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
         }

         .lp-header__inner {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0.85rem 1.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
         }

         .lp-brand {
            font-weight: 800;
            font-size: 1.15rem;
            letter-spacing: -0.02em;
            color: #0f172a;
            text-decoration: none !important;
         }

         .lp-brand span {
            color: #2563eb;
         }

         .lp-nav {
            display: flex;
            align-items: center;
            gap: 0.35rem 1.25rem;
            flex-wrap: wrap;
         }

         .lp-nav a {
            color: #475569;
            font-weight: 500;
            font-size: 0.9rem;
            text-decoration: none !important;
            transition: color 0.15s ease;
         }

         .lp-nav a:hover {
            color: #2563eb;
         }

         .lp-btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid #cbd5e1;
            color: #334155 !important;
            background: #fff;
            text-decoration: none !important;
            transition: border-color 0.15s, color 0.15s, background 0.15s;
         }

         .lp-btn-outline:hover {
            border-color: #2563eb;
            color: #1d4ed8 !important;
            background: #eff6ff;
         }

         .lp-hero {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #1e40af 100%);
            color: #f8fafc;
            padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem clamp(3rem, 8vw, 5rem);
         }

         .lp-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 60% at 70% 0%, rgba(96, 165, 250, 0.25), transparent 55%),
               radial-gradient(ellipse 50% 40% at 10% 90%, rgba(59, 130, 246, 0.2), transparent 50%);
            pointer-events: none;
         }

         .lp-hero__inner {
            position: relative;
            max-width: 1120px;
            margin: 0 auto;
            display: grid;
            gap: 2rem;
            align-items: center;
         }

         @media (min-width: 900px) {
            .lp-hero__inner {
               grid-template-columns: 1.1fr 0.9fr;
            }
         }

         .lp-kicker {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #93c5fd;
            margin-bottom: 0.75rem;
         }

         /* Titre hero principal (h1) : écrase les styles globaux du thème */
         .lp-body h1#lp-hero-title.lp-hero__title,
         section.lp-hero h1.lp-hero__title {
            font-family: "Poppins", system-ui, -apple-system, sans-serif !important;
            font-size: clamp(1.85rem, 4vw, 2.65rem) !important;
            font-weight: 800 !important;
            line-height: 1.15 !important;
            letter-spacing: -0.03em !important;
            margin: 0 0 1rem !important;
            padding: 0 !important;
            color: #ffffff !important;
            -webkit-text-fill-color: #ffffff !important;
            text-transform: none !important;
         }

         .lp-hero__lead strong {
            color: #f1f5f9;
            font-weight: 600;
         }

         .lp-hero__fine-print {
            margin: 1rem 0 0;
            max-width: 36rem;
            font-size: 0.82rem;
            line-height: 1.45;
            color: rgba(226, 232, 240, 0.72);
         }

         .lp-hero__lead {
            font-size: 1.05rem;
            line-height: 1.65;
            color: #cbd5e1;
            max-width: 36rem;
            margin: 0 0 1.75rem;
         }

         .lp-hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
         }

         .lp-btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: #f8fafc !important;
            background: rgba(255, 255, 255, 0.1);
            text-decoration: none !important;
            transition: background 0.15s, border-color 0.15s;
         }

         .lp-btn-ghost:hover {
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.55);
            color: #fff !important;
         }

         .lp-hero__panel {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            padding: 1.5rem;
            backdrop-filter: blur(8px);
         }

         .lp-hero__panel h3 {
            font-size: 0.95rem;
            font-weight: 700;
            margin: 0 0 1rem;
            color: #e2e8f0;
            text-transform: none;
            line-height: 1.35;
         }

         .lp-hero__list {
            list-style: none;
            margin: 0;
            padding: 0;
         }

         .lp-hero__list li {
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            font-size: 0.9rem;
            color: #e2e8f0;
            margin-bottom: 0.75rem;
            line-height: 1.45;
         }

         .lp-hero__list li:last-child {
            margin-bottom: 0;
         }

         .lp-hero__check {
            flex-shrink: 0;
            width: 1.25rem;
            height: 1.25rem;
            border-radius: 6px;
            background: rgba(34, 197, 94, 0.25);
            color: #86efac;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 800;
            margin-top: 0.1rem;
         }

         /* Bloc Bac français (accueil) : design moderne — panneau vitré, maille, chips, cartes liste */
         .lp-bac-fr-home {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            background: linear-gradient(145deg, #1e1b4b 0%, #312e81 28%, #4338ca 55%, #6366f1 100%);
            padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
         }

         .lp-bac-fr-home__mesh {
            position: absolute;
            inset: 0;
            opacity: 0.45;
            background-image:
               radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 42%),
               radial-gradient(circle at 85% 20%, rgba(165, 180, 252, 0.35) 0%, transparent 38%),
               radial-gradient(circle at 70% 85%, rgba(99, 102, 241, 0.4) 0%, transparent 45%),
               linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
               linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
            background-size: auto, auto, auto, 28px 28px, 28px 28px;
            pointer-events: none;
            z-index: 0;
         }

         .lp-bac-fr-home__inner {
            position: relative;
            z-index: 1;
            max-width: 1120px;
            margin: 0 auto;
         }

         .lp-bac-fr-home__panel {
            position: relative;
            border-radius: 24px;
            padding: clamp(1.75rem, 4vw, 2.75rem);
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.65);
            box-shadow:
               0 4px 24px rgba(15, 23, 42, 0.06),
               0 32px 64px rgba(30, 27, 75, 0.25),
               inset 0 1px 0 rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
         }

         .lp-bac-fr-home__layout {
            display: grid;
            gap: clamp(1.75rem, 4vw, 2.75rem);
            align-items: start;
         }

         @media (min-width: 900px) {
            .lp-bac-fr-home__layout {
               grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
               align-items: stretch;
            }
         }

         .lp-bac-fr-home__copy {
            position: relative;
         }

         .lp-bac-fr-home__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #4338ca;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(129, 140, 248, 0.22));
            padding: 0.4rem 0.85rem 0.4rem 0.65rem;
            border-radius: 999px;
            margin-bottom: 1rem;
            border: 1px solid rgba(99, 102, 241, 0.25);
            box-shadow: 0 2px 12px rgba(67, 56, 202, 0.08);
         }

         .lp-bac-fr-home__eyebrow .fa {
            font-size: 0.95rem;
            opacity: 0.95;
         }

         .lp-body .lp-bac-fr-home h2.lp-bac-fr-home__title {
            font-family: "Poppins", system-ui, -apple-system, sans-serif !important;
            font-size: clamp(1.55rem, 3.4vw, 2.15rem) !important;
            font-weight: 800 !important;
            line-height: 1.18 !important;
            letter-spacing: -0.03em !important;
            margin: 0 0 1.1rem !important;
            padding: 0 !important;
            color: #0f172a !important;
            -webkit-text-fill-color: #0f172a !important;
            text-transform: none !important;
         }

         .lp-bac-fr-home__lead {
            margin: 0 0 1.25rem;
            max-width: 40rem;
            font-size: 1.02rem;
            line-height: 1.68;
            color: #475569 !important;
         }

         .lp-bac-fr-home__lead strong {
            color: #312e81 !important;
            font-weight: 600;
            padding: 0 0.15rem;
            background: linear-gradient(transparent 62%, rgba(129, 140, 248, 0.35) 62%);
         }

         .lp-bac-fr-home__chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
         }

         .lp-bac-fr-home__chip {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.78rem;
            font-weight: 600;
            color: #4338ca;
            background: #fff;
            border: 1px solid rgba(99, 102, 241, 0.35);
            padding: 0.4rem 0.75rem;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(67, 56, 202, 0.08);
         }

         .lp-bac-fr-home__chip .fa {
            font-size: 0.85rem;
            opacity: 0.88;
         }

         .lp-bac-fr-home__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 0.25rem;
         }

         .lp-bac-fr-home__btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.65rem;
            padding: 0.75rem 1.25rem 0.75rem 1.4rem;
            border-radius: 14px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none !important;
            color: #fff !important;
            background: linear-gradient(135deg, #4f46e5 0%, #6366f1 45%, #4338ca 100%);
            box-shadow:
               0 4px 16px rgba(67, 56, 202, 0.45),
               inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
         }

         .lp-bac-fr-home__btn:hover {
            color: #fff !important;
            filter: brightness(1.05);
            box-shadow:
               0 8px 28px rgba(67, 56, 202, 0.5),
               inset 0 1px 0 rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
         }

         .lp-bac-fr-home__btn-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2rem;
            height: 2rem;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.2);
            font-size: 0.8rem;
         }

         .lp-bac-fr-home__note {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin: 1.1rem 0 0;
            max-width: 40rem;
            font-size: 0.84rem;
            line-height: 1.5;
            color: #64748b !important;
         }

         .lp-bac-fr-home__note .fa {
            margin-top: 0.15rem;
            color: #6366f1;
            opacity: 0.9;
         }

         .lp-bac-fr-home__card {
            position: relative;
            overflow: hidden;
            background: linear-gradient(165deg, #fafafa 0%, #ffffff 48%);
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 20px;
            padding: clamp(1.35rem, 3vw, 1.85rem);
            box-shadow:
               0 1px 0 rgba(255, 255, 255, 0.9) inset,
               0 20px 40px rgba(15, 23, 42, 0.07);
         }

         .lp-bac-fr-home__card-accent {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #6366f1, #a855f7, #6366f1);
            background-size: 200% 100%;
            animation: lp-bac-fr-home-shimmer 8s ease-in-out infinite;
         }

         @keyframes lp-bac-fr-home-shimmer {
            0%,
            100% {
               background-position: 0% 50%;
            }
            50% {
               background-position: 100% 50%;
            }
         }

         @media (prefers-reduced-motion: reduce) {
            .lp-bac-fr-home__card-accent {
               animation: none;
            }

            .lp-bac-fr-home__btn,
            .lp-bac-fr-home__list-item {
               transition: none;
            }

            .lp-bac-fr-home__btn:hover,
            .lp-bac-fr-home__list-item:hover {
               transform: none;
            }
         }

         .lp-body .lp-bac-fr-home h3.lp-bac-fr-home__card-title {
            position: relative;
            font-size: 1rem !important;
            font-weight: 700 !important;
            margin: 0.35rem 0 1.15rem !important;
            padding-bottom: 0.75rem !important;
            color: #0f172a !important;
            text-transform: none !important;
            line-height: 1.35 !important;
            letter-spacing: -0.02em !important;
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
         }

         .lp-bac-fr-home__list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
         }

         .lp-bac-fr-home__list-item {
            display: flex;
            align-items: flex-start;
            gap: 0.85rem;
            padding: 0.85rem 1rem;
            font-size: 0.9rem;
            line-height: 1.5;
            color: #334155 !important;
            background: #fff;
            border: 1px solid rgba(15, 23, 42, 0.06);
            border-radius: 14px;
            box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
            transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
         }

         .lp-bac-fr-home__list-item:hover {
            border-color: rgba(99, 102, 241, 0.35);
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
            transform: translateY(-1px);
         }

         .lp-bac-fr-home__list-text {
            flex: 1;
            min-width: 0;
         }

         .lp-bac-fr-home__bullet {
            flex-shrink: 0;
            width: 2rem;
            height: 2rem;
            border-radius: 12px;
            background: linear-gradient(145deg, #6366f1, #4f46e5);
            color: #fff !important;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            margin-top: 0.05rem;
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
         }

         .lp-bac-fr-home__bullet .fa {
            line-height: 1;
         }

         .lp-section {
            max-width: 1120px;
            margin: 0 auto;
            padding: clamp(2.5rem, 5vw, 4rem) 1.25rem;
         }

         .lp-section--muted {
            background: #fff;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
         }

         .lp-section__head {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 2.5rem;
         }

         .lp-section__head h2 {
            font-size: clamp(1.45rem, 3vw, 1.85rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            margin: 0 0 0.6rem;
            color: #0f172a;
         }

         .lp-section__head p {
            margin: 0;
            color: #64748b;
            font-size: 1rem;
            line-height: 1.6;
         }

         .lp-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            max-width: 900px;
            margin: -2rem auto 0;
            position: relative;
            z-index: 2;
            padding: 0 1.25rem 2rem;
         }

         .lp-stat {
            background: #fff;
            border-radius: 14px;
            padding: 1.25rem 1.35rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
            border: 1px solid rgba(15, 23, 42, 0.06);
         }

         .lp-stat strong {
            display: block;
            font-size: 1.35rem;
            font-weight: 800;
            color: #2563eb;
            letter-spacing: -0.02em;
         }

         .lp-stat span {
            font-size: 0.85rem;
            color: #64748b;
            font-weight: 500;
         }

         .lp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.25rem;
         }

         .lp-service {
            background: #fff;
            border-radius: 14px;
            padding: 1.5rem;
            border: 1px solid rgba(15, 23, 42, 0.06);
            box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
            transition: box-shadow 0.2s, transform 0.2s;
         }

         .lp-service:hover {
            box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
            transform: translateY(-2px);
         }

         .lp-service__icon {
            width: 2.75rem;
            height: 2.75rem;
            border-radius: 12px;
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            color: #1d4ed8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            margin-bottom: 1rem;
         }

         .lp-service__icon .fa {
            line-height: 1;
         }

         .lp-service h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0 0 0.5rem;
            color: #0f172a;
            text-transform: none;
            line-height: 1.3;
         }

         .lp-service p {
            margin: 0;
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.55;
         }

         .lp-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            counter-reset: lpstep;
         }

         .lp-step {
            position: relative;
            padding-left: 3rem;
         }

         .lp-step::before {
            counter-increment: lpstep;
            content: counter(lpstep);
            position: absolute;
            left: 0;
            top: 0;
            width: 2.25rem;
            height: 2.25rem;
            border-radius: 10px;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: #fff;
            font-weight: 800;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
         }

         .lp-step h3 {
            font-size: 1rem;
            font-weight: 700;
            margin: 0 0 0.4rem;
            color: #0f172a;
            text-transform: none;
            line-height: 1.3;
         }

         .lp-step p {
            margin: 0;
            font-size: 0.88rem;
            color: #64748b;
            line-height: 1.55;
         }

         .lp-portal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.25rem;
         }

         .lp-portal-grid .ft-card {
            margin-bottom: 0;
         }

         .lp-portal-grid .home-card h4,
         .lp-portal-grid .ft-toolbar__title {
            color: #0f172a;
         }

         .lp-portal-grid .ft-toolbar__hint {
            color: #64748b !important;
         }

         .lp-portal-grid .ft-form-body p {
            color: #475569;
         }

         .lp-cta {
            max-width: 1120px;
            margin: 0 auto 2.5rem;
            padding: 0 1.25rem;
         }

         .lp-cta__box {
            background: linear-gradient(135deg, #1e40af, #1d4ed8);
            border-radius: 16px;
            padding: clamp(1.75rem, 4vw, 2.5rem);
            text-align: center;
            color: #fff;
            box-shadow: 0 16px 48px rgba(29, 78, 216, 0.35);
         }

         .lp-cta__box h2 {
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
            font-weight: 800;
            margin: 0 0 0.5rem;
            color: #fff;
         }

         .lp-cta__box p {
            margin: 0 0 1.25rem;
            opacity: 0.92;
            font-size: 0.95rem;
         }

         .lp-footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 2rem 1.25rem;
            font-size: 0.875rem;
         }

         .lp-footer__inner {
            max-width: 1120px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
         }

         .lp-footer a {
            color: #cbd5e1;
            text-decoration: underline;
         }

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

         .lp-cta__box a.ft-btn-add.lp-btn-light {
            background: #fff !important;
            color: #1d4ed8 !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
         }

         .lp-cta__box a.ft-btn-add.lp-btn-light:hover {
            color: #1e3a8a !important;
            filter: brightness(1.03);
         }

         /* ----- Espace formateur (layout avec menu latéral) ----- */

         .lp-body.lp-body--app {
            background: #e2e8f0;
         }

         .lp-app {
            display: flex;
            min-height: 100vh;
            width: 100%;
         }

         .lp-sidebar {
            width: 268px;
            flex-shrink: 0;
            background: linear-gradient(180deg, #0f172a 0%, #1e3a5f 45%, #1e40af 100%);
            padding: 1.35rem 1rem 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            position: relative;
         }

         .lp-sidebar::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 100% 40% at 0% 0%, rgba(96, 165, 250, 0.2), transparent 55%);
            pointer-events: none;
         }

         .lp-sidebar > * {
            position: relative;
            z-index: 1;
         }

         .lp-sidebar__brand {
            text-decoration: none !important;
            display: block;
            padding-bottom: 0.25rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            margin-bottom: 0.15rem;
         }

         .lp-sidebar__brand-name {
            font-weight: 800;
            font-size: 1.05rem;
            letter-spacing: -0.02em;
            color: #fff;
         }

         .lp-sidebar__brand-name span {
            color: #93c5fd;
         }

         .lp-sidebar__tag {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(226, 232, 240, 0.85);
            margin-top: 0.35rem;
         }

         .lp-sidebar__nav {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
         }

         .lp-sidebar__link {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            padding: 0.65rem 1rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: #f8fafc !important;
            background: rgba(255, 255, 255, 0.1);
            text-decoration: none !important;
            transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
         }

         .lp-sidebar__link .fa {
            width: 1.35rem;
            text-align: center;
            opacity: 0.95;
            font-size: 1rem;
         }

         .lp-sidebar__link:hover {
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.55);
            color: #fff !important;
         }

         .lp-sidebar__link.is-active {
            background: rgba(255, 255, 255, 0.22);
            border-color: rgba(255, 255, 255, 0.65);
            color: #fff !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
         }

         .lp-sidebar__foot {
            margin-top: auto;
            padding-top: 1rem;
         }

         .lp-sidebar__link--muted {
            font-size: 0.85rem;
            font-weight: 500;
            opacity: 0.9;
         }

         .lp-main {
            flex: 1;
            min-width: 0;
            min-height: 0;
            display: flex;
            flex-direction: column;
            background: #f1f5f9;
         }

         .lp-header.lp-header--app {
            position: sticky;
            top: 0;
         }

         .lp-header__inner--app {
            max-width: none;
            width: 100%;
         }

         .lp-header__app-spacer {
            flex: 1;
            min-width: 0.5rem;
         }

         .lp-user-menu {
            position: relative;
         }

         .lp-user-toggle {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
         }

         .lp-user-dropdown {
            display: none;
            position: absolute;
            right: 0;
            top: calc(100% + 6px);
            min-width: 200px;
            padding: 0.4rem;
            background: #fff;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
            z-index: 100;
         }

         .lp-user-dropdown.is-open {
            display: block;
         }

         .lp-user-dropdown a {
            display: block;
            padding: 0.55rem 0.75rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #334155 !important;
            text-decoration: none !important;
         }

         .lp-user-dropdown a:hover {
            background: #f1f5f9;
            color: #1d4ed8 !important;
         }

         .lp-user-dropdown .lp-user-dropdown__sep {
            height: 1px;
            background: #e2e8f0;
            margin: 0.25rem 0;
         }

         .lp-main-scroll {
            flex: 1;
            min-height: 0;
            overflow: auto;
            padding: clamp(1rem, 2.5vw, 1.75rem);
         }

         .lp-main-scroll.lp-main-scroll--embed {
            display: flex;
            flex-direction: column;
         }

         .lp-dash-hero {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #1e40af 100%);
            color: #f8fafc;
            padding: clamp(1.5rem, 4vw, 2.25rem);
            margin-bottom: 1.25rem;
         }

         .lp-dash-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 60% at 90% 0%, rgba(96, 165, 250, 0.22), transparent 50%);
            pointer-events: none;
         }

         .lp-dash-hero > * {
            position: relative;
            z-index: 1;
         }

         .lp-dash-hero h1 {
            font-size: clamp(1.35rem, 3vw, 1.75rem);
            font-weight: 800;
            margin: 0 0 0.5rem;
            color: #fff;
            letter-spacing: -0.02em;
         }

         .lp-dash-hero p {
            margin: 0;
            color: #cbd5e1;
            font-size: 0.95rem;
            max-width: 40rem;
            line-height: 1.55;
         }

         .lp-embed-wrap {
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            min-height: 0;
            background: #fff;
            border-radius: 14px;
            border: 1px solid rgba(15, 23, 42, 0.08);
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
         }

         .lp-embed-wrap .lp-embed-title {
            padding: 0.85rem 1rem;
            font-weight: 700;
            font-size: 0.95rem;
            color: #0f172a;
            border-bottom: 1px solid #e2e8f0;
            background: #f8fafc;
         }

         .lp-embed {
            flex: 1 1 auto;
            width: 100%;
            min-height: 420px;
            border: 0;
            display: block;
         }

         .lp-dash-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 1.25rem;
            max-width: 960px;
         }

         .lp-dash-stat-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.25rem 1.35rem;
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
         }

         .lp-dash-stat-card__label {
            font-size: 0.8rem;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 0.35rem;
         }

         .lp-dash-stat-card__value {
            font-size: 2rem;
            font-weight: 800;
            color: #1d4ed8;
            letter-spacing: -0.02em;
            line-height: 1.1;
         }

         .lp-dash-chart-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.25rem;
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
            max-width: 960px;
            margin-bottom: 1.25rem;
         }

         .lp-dash-chart-card h2 {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0 0 1rem;
            color: #0f172a;
         }

         .lp-dash-chart-wrap {
            position: relative;
            height: 320px;
            max-width: 100%;
         }

         .lp-formations-liste h2 {
            font-size: 1.25rem;
            font-weight: 800;
            margin: 0 0 1rem;
            color: #0f172a;
         }

         .lp-ft-formation-block {
            border: 1px solid #e2e8f0;
            margin: 0 0 1rem;
            padding: 1rem 1.15rem;
            border-radius: 12px;
         }

         .lp-ft-formation-block h4 {
            color: #0f172a;
            margin: 0 0 0.5rem;
            font-size: 1.05rem;
            font-weight: 700;
         }

         .lp-ft-formation-block .lp-badge-termine {
            font-size: 0.72rem;
            font-weight: 700;
            color: #fff;
            background: #dc3545;
            padding: 0.25rem 0.6rem;
            border-radius: 4px;
            margin-left: 0.5rem;
            vertical-align: middle;
         }

         .lp-seances-wrap {
            margin-top: 0.75rem;
            padding-top: 0.7rem;
            border-top: 1px dashed rgba(15, 23, 42, 0.15);
         }

         .lp-seances-title {
            margin: 0 0 0.45rem;
            font-size: 0.82rem;
            font-weight: 700;
            color: #334155;
            text-transform: uppercase;
            letter-spacing: 0.03em;
         }

         .lp-seances-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
         }

         .lp-seance-chip {
            border: 0;
            border-radius: 999px;
            padding: 0.3rem 0.75rem;
            font-size: 0.8rem;
            font-weight: 600;
            line-height: 1.2;
            cursor: default;
         }

         .lp-seance-chip--paid {
            background: #16a34a;
            color: #fff;
         }

         .lp-seance-chip--unpaid {
            background: #f59e0b;
            color: #1f2937;
         }

         .lp-notifications-empty {
            max-width: 560px;
            margin: 2rem auto;
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: #fff;
            border-radius: 14px;
            border: 1px dashed #cbd5e1;
            color: #64748b;
         }

         .lp-paiement-embed .lp-embed {
            min-height: calc(100vh - 120px);
         }

         .lp-paiement-embed.lp-main-scroll--embed {
            padding: 0.75rem;
         }

         @media (max-width: 767px) {
            .lp-app {
               flex-direction: column;
            }

            .lp-sidebar {
               width: 100%;
               flex-direction: row;
               flex-wrap: wrap;
               align-items: center;
               gap: 0.75rem;
            }

            .lp-sidebar__nav {
               flex-direction: row;
               flex-wrap: wrap;
               width: 100%;
            }

            .lp-sidebar__link {
               flex: 1 1 auto;
               justify-content: center;
               min-width: 140px;
            }

            .lp-sidebar__foot {
               width: 100%;
               margin-top: 0;
               padding-top: 0;
            }
         }

         /* Suivi pédagogique formateur — saisie avis / évaluation */
         textarea.ft-ped-avis-ta,
         textarea.ft-ped-com-ta {
            font-size: 18px;
            line-height: 1.5;
            color: #2563eb;
         }

         textarea.ft-ped-avis-ta::placeholder,
         textarea.ft-ped-com-ta::placeholder {
            color: rgba(37, 99, 235, 0.42);
         }

         input.form-control.ft-ped-note {
            font-size: 18px;
            color: #2563eb;
         }

         input.form-control.ft-ped-note::placeholder {
            color: rgba(37, 99, 235, 0.42);
         }

