/* ==========================================================================
   LeCoach — Design System
   "This Is Where It All Begins"
   ========================================================================== */

:root {
  /* Brand palette */
  --lc-red: #e8252b;
  --lc-red-dark: #c41a1f;
  --lc-red-soft: #fdeaea;
  --lc-black: #141414;
  --lc-dark: #1c1c1e;
  --lc-darker: #161618;
  --lc-white: #ffffff;
  --lc-gray-50: #f7f7f8;
  --lc-gray-100: #f0f0f2;
  --lc-gray-200: #e6e6ea;
  --lc-gray-400: #a8a8b0;
  --lc-gray-600: #6b6b73;
  --lc-text: #1f1f24;
  --lc-muted: #6f6f78;

  /* System */
  --lc-radius: 14px;
  --lc-radius-lg: 22px;
  --lc-shadow-sm: 0 4px 16px rgba(20, 20, 20, .06);
  --lc-shadow: 0 18px 50px rgba(20, 20, 20, .10);
  --lc-shadow-red: 0 14px 34px rgba(232, 37, 43, .32);
  --lc-transition: .35s cubic-bezier(.22, .61, .36, 1);

  --lc-font: 'League Spartan', 'Montserrat', system-ui, -apple-system, sans-serif;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--lc-font);
  color: var(--lc-text);
  background: var(--lc-white);
  margin: 0;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lc-font);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.12;
  color: var(--lc-black);
}

a { text-decoration: none; color: inherit; transition: color var(--lc-transition); }
img { max-width: 100%; height: auto; }

.lc-section { padding: 96px 0; position: relative; }
.lc-container { max-width: 1200px; margin-inline: auto; padding-inline: 22px; }

/* Eyebrow / kicker */
.lc-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lc-red);
  margin-bottom: 18px;
}
.lc-eyebrow.is-light { color: #ff5a5f; }

.lc-title { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin: 0 0 18px; }
.lc-lead { color: var(--lc-muted); font-size: 1.05rem; max-width: 560px; }

.text-red { color: var(--lc-red) !important; }

/* Red underline accent */
.lc-rule {
  width: 64px; height: 4px; border-radius: 4px;
  background: var(--lc-red); margin: 22px 0;
}
.lc-rule.is-center { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-lc {
  --bs-btn-focus-shadow-rgb: 232, 37, 43;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .98rem;
  padding: 14px 28px; border-radius: 999px;
  border: 2px solid transparent;
  transition: all var(--lc-transition);
  cursor: pointer; line-height: 1;
}
.btn-lc-primary { background: var(--lc-red); color: #fff; box-shadow: var(--lc-shadow-red); }
.btn-lc-primary:hover { background: var(--lc-red-dark); color: #fff; transform: translateY(-2px); }

.btn-lc-dark { background: var(--lc-black); color: #fff; }
.btn-lc-dark:hover { background: #000; color: #fff; transform: translateY(-2px); }

.btn-lc-outline { background: transparent; color: var(--lc-black); border-color: var(--lc-gray-200); }
.btn-lc-outline:hover { border-color: var(--lc-black); color: var(--lc-black); }

.btn-lc-light { background: #fff; color: var(--lc-red); }
.btn-lc-light:hover { background: var(--lc-gray-100); color: var(--lc-red-dark); transform: translateY(-2px); }

.btn-lc-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-lc-ghost-light:hover { background: #fff; color: var(--lc-black); }

.btn-play {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--lc-red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: 4px;
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.lc-navbar {
  position: sticky; top: 0; z-index: 1030;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--lc-gray-100);
  transition: box-shadow var(--lc-transition);
}
.lc-navbar.is-scrolled { box-shadow: 0 6px 24px rgba(20,20,20,.07); }
.lc-navbar .navbar-brand img { height: 50px; width: auto; }

.lc-nav-link {
  font-weight: 600; font-size: .96rem; color: var(--lc-text);
  padding: 8px 2px; position: relative;
}
.lc-nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--lc-red);
  transition: width var(--lc-transition);
}
.lc-nav-link:hover, .lc-nav-link.active { color: var(--lc-red); }
.lc-nav-link:hover::after, .lc-nav-link.active::after { width: 100%; }

.lc-lang { font-weight: 600; font-size: .9rem; color: var(--lc-muted); }
.lc-lang .active { color: var(--lc-black); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.lc-hero { position: relative; overflow: hidden; padding-top: 64px; }
.lc-hero-title { font-size: clamp(2.6rem, 5.4vw, 4.3rem); font-weight: 800; margin: 0 0 26px; }
.lc-hero-lead { font-size: 1.12rem; color: var(--lc-muted); max-width: 480px; margin-bottom: 34px; }

.lc-hero-media { position: relative; min-height: 460px; }
.lc-hero-media img {
  position: relative; z-index: 2; border-radius: 0; width: 100%;
  object-fit: cover; mix-blend-mode: normal;
}
/* Red geometric backdrop */
.lc-hero-blob {
  position: absolute; z-index: 1; inset: 0;
}
.lc-hero-blob::before {
  content: ''; position: absolute; right: -6%; top: 8%;
  width: 78%; height: 78%; background: var(--lc-red);
  border-radius: 40% 60% 62% 38% / 47% 44% 56% 53%;
  filter: blur(2px); opacity: .96;
}
.lc-hero-blob::after {
  content: ''; position: absolute; left: 4%; bottom: 6%;
  width: 120px; height: 120px;
  background: repeating-linear-gradient(45deg, var(--lc-gray-200) 0 2px, transparent 2px 9px);
  border-radius: 12px;
}

/* Stats strip */
.lc-stats { display: flex; gap: 44px; flex-wrap: wrap; margin-top: 12px; }
.lc-stat-num { font-size: 2rem; font-weight: 800; color: var(--lc-black); }
.lc-stat-num span { color: var(--lc-red); }
.lc-stat-label { font-size: .82rem; color: var(--lc-muted); line-height: 1.3; }
.lc-stat + .lc-stat { border-left: 1px solid var(--lc-gray-200); padding-left: 44px; }

/* --------------------------------------------------------------------------
   Feature cards (About)
   -------------------------------------------------------------------------- */
.lc-feature { text-align: left; }
.lc-feature-ico {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--lc-red-soft); color: var(--lc-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
  transition: all var(--lc-transition);
}
.lc-feature:hover .lc-feature-ico { background: var(--lc-red); color: #fff; transform: translateY(-4px); }
.lc-feature h5 { font-size: 1.05rem; margin-bottom: 8px; }
.lc-feature p { color: var(--lc-muted); font-size: .92rem; margin: 0; }

/* --------------------------------------------------------------------------
   Programmes (dark section)
   -------------------------------------------------------------------------- */
.lc-dark { background: var(--lc-darker); color: #fff; }
.lc-dark .lc-title { color: #fff; }
.lc-dark-skew { position: relative; }

.lc-prog-card {
  background: #fff; border-radius: var(--lc-radius-lg);
  padding: 38px 32px; height: 100%;
  border: 1px solid transparent;
  transition: all var(--lc-transition);
}
.lc-prog-card:hover { transform: translateY(-8px); box-shadow: var(--lc-shadow); }
.lc-prog-ico {
  width: 66px; height: 66px; border-radius: 18px;
  background: var(--lc-red-soft); color: var(--lc-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 22px;
}
.lc-prog-card h4 { font-size: 1.3rem; margin-bottom: 12px; }
.lc-prog-card p { color: var(--lc-muted); font-size: .95rem; margin-bottom: 22px; }
.lc-prog-link { font-weight: 700; color: var(--lc-red); display: inline-flex; gap: 8px; align-items: center; }
.lc-prog-link i { transition: transform var(--lc-transition); }
.lc-prog-card:hover .lc-prog-link i { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.lc-testi {
  background: #fff; border: 1px solid var(--lc-gray-100);
  border-radius: var(--lc-radius-lg); padding: 30px 28px; height: 100%;
  transition: all var(--lc-transition);
}
.lc-testi:hover { box-shadow: var(--lc-shadow); border-color: transparent; }
.lc-testi-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.lc-testi-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.lc-testi-name { font-weight: 700; font-size: .98rem; }
.lc-testi-role { color: var(--lc-muted); font-size: .82rem; }
.lc-testi p { font-style: italic; color: var(--lc-text); font-size: .95rem; margin-bottom: 16px; }
.lc-stars { color: var(--lc-red); letter-spacing: 2px; }

/* --------------------------------------------------------------------------
   CTA banner
   -------------------------------------------------------------------------- */
.lc-cta-banner {
  background: var(--lc-red); color: #fff;
  border-radius: var(--lc-radius-lg);
  padding: 46px 54px; position: relative; overflow: hidden;
}
.lc-cta-banner::after {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.lc-cta-ico {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.lc-cta-banner h3 { color: #fff; font-size: 1.6rem; margin: 0 0 6px; }
.lc-cta-banner p { margin: 0; opacity: .92; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.lc-footer { background: var(--lc-black); color: #c7c7cf; padding: 72px 0 0; }
.lc-footer img { height: 42px; margin-bottom: 18px; }
.lc-footer h6 { color: #fff; font-size: .95rem; letter-spacing: .04em; margin-bottom: 22px; }
.lc-footer a { color: #b3b3bd; font-size: .92rem; display: block; margin-bottom: 12px; }
.lc-footer a:hover { color: var(--lc-red); padding-left: 4px; }
.lc-footer p { font-size: .9rem; color: #9a9aa4; }
.lc-social { display: flex; gap: 12px; margin-top: 6px; }
.lc-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff;
  display: flex; align-items: center; justify-content: center; margin: 0;
}
.lc-social a:hover { background: var(--lc-red); padding: 0; }
.lc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 56px; padding: 24px 0; font-size: .85rem;
}
.lc-footer-bottom a { display: inline; margin: 0 0 0 22px; }

/* --------------------------------------------------------------------------
   Reveal animation
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .lc-section { padding: 64px 0; }
  .lc-hero { padding-top: 36px; }
  .lc-hero-media { min-height: 360px; margin-top: 28px; }
  .lc-stat + .lc-stat { border-left: none; padding-left: 0; }
  .lc-stats { gap: 28px; }
  .lc-cta-banner { padding: 36px 30px; text-align: center; }
}
@media (max-width: 575px) {
  .lc-hero-title { font-size: 2.4rem; }
  .lc-stat-num { font-size: 1.6rem; }
  .lc-cta-banner { padding: 30px 22px; }
}

/* ==========================================================================
   Module Formations
   ========================================================================== */
.lc-page-head { padding: 56px 0 28px; background: var(--lc-gray-50); }
.lc-page-head .lc-title { margin-bottom: 8px; }

.lc-filters { background: #fff; border: 1px solid var(--lc-gray-100); border-radius: var(--lc-radius); padding: 24px; position: sticky; top: 90px; }
.lc-filter-label { font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--lc-muted); margin-bottom: 10px; display: block; }
.lc-filters .form-check-label { font-size: .92rem; }
.lc-filters .form-check-input:checked { background-color: var(--lc-red); border-color: var(--lc-red); }

/* Formation card */
.lc-fcard { background: #fff; border: 1px solid var(--lc-gray-100); border-radius: var(--lc-radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: all var(--lc-transition); }
.lc-fcard:hover { transform: translateY(-6px); box-shadow: var(--lc-shadow); border-color: transparent; }
.lc-fcard-media { display: block; position: relative; aspect-ratio: 16/10; overflow: hidden; }
.lc-fcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.lc-fcard:hover .lc-fcard-media img { transform: scale(1.06); }
.lc-fcard-type { position: absolute; top: 12px; left: 12px; background: rgba(20,20,20,.82); color: #fff; font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.lc-fcard-promo { position: absolute; top: 12px; right: 12px; background: var(--lc-red); color: #fff; font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.lc-fcard-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.lc-fcard-cat { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--lc-red); margin-bottom: 8px; }
.lc-fcard-title { font-size: 1.12rem; margin: 0 0 8px; line-height: 1.3; }
.lc-fcard-title a:hover { color: var(--lc-red); }
.lc-fcard-desc { color: var(--lc-muted); font-size: .9rem; margin-bottom: 14px; flex: 1; }
.lc-fcard-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: .82rem; color: var(--lc-muted); margin-bottom: 16px; }
.lc-fcard-meta i { color: var(--lc-red); }
.lc-fcard-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--lc-gray-100); padding-top: 16px; }
.lc-fcard-price strong { font-size: 1.25rem; color: var(--lc-black); display: block; line-height: 1; }
.lc-fcard-price small { font-size: .7rem; color: var(--lc-muted); }
.lc-fcard-price .lc-old { font-size: .8rem; color: var(--lc-gray-400); text-decoration: line-through; display: block; }
.lc-fcard-btn { padding: 9px 16px; font-size: .85rem; }

/* Detail */
.lc-crumb { font-size: .85rem; color: var(--lc-muted); margin-bottom: 18px; }
.lc-crumb a { color: inherit; }
.lc-crumb a:hover { color: var(--lc-red); }
.lc-dark .lc-crumb, .lc-dark .lc-crumb a { color: rgba(255,255,255,.6); }
.lc-detail-hero { padding: 48px 0 56px; }
.lc-detail-title { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin-bottom: 16px; }
.lc-detail-lead { color: rgba(255,255,255,.78); font-size: 1.08rem; max-width: 560px; margin-bottom: 22px; }
.lc-detail-meta { display: flex; flex-wrap: wrap; gap: 22px; font-size: .9rem; color: rgba(255,255,255,.8); }
.lc-detail-meta i { color: var(--lc-red); }
.lc-detail-cover { width: 100%; border-radius: var(--lc-radius-lg); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--lc-shadow); }
.lc-badge { background: var(--lc-red); color: #fff; font-size: .76rem; font-weight: 700; padding: 6px 14px; border-radius: 999px; }
.lc-badge-ghost { background: rgba(255,255,255,.12); }
.lc-block-title { font-size: 1.4rem; margin-bottom: 16px; }
.lc-check-list { list-style: none; padding: 0; margin: 0; }
.lc-check-list li { padding: 8px 0; color: var(--lc-text); }
.lc-check-list i { color: var(--lc-red); margin-right: 10px; }
.lc-programme { background: var(--lc-gray-50); border-radius: var(--lc-radius); padding: 22px 26px; color: var(--lc-text); line-height: 2; }
.lc-trainer { display: flex; align-items: center; gap: 18px; background: var(--lc-gray-50); border-radius: var(--lc-radius); padding: 22px; }
.lc-trainer img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }

/* Buybox */
.lc-buybox { background: #fff; border: 1px solid var(--lc-gray-100); border-radius: var(--lc-radius-lg); padding: 28px; position: sticky; top: 90px; box-shadow: var(--lc-shadow-sm); }
.lc-price-now { font-size: 2.2rem; font-weight: 800; color: var(--lc-black); line-height: 1; }
.lc-price-now span { font-size: 1.1rem; color: var(--lc-red); }
.lc-buybox .lc-old { text-decoration: line-through; color: var(--lc-gray-400); font-size: .95rem; }
.lc-buybox-list { list-style: none; padding: 0; margin: 22px 0 0; }
.lc-buybox-list li { padding: 9px 0; font-size: .9rem; border-top: 1px solid var(--lc-gray-100); }
.lc-buybox-list i { margin-right: 10px; }

/* Checkout */
.lc-form-card { background: #fff; border: 1px solid var(--lc-gray-100); border-radius: var(--lc-radius-lg); padding: 30px; }
.lc-form-card .form-label { font-weight: 600; font-size: .88rem; }
.lc-form-card .form-control { padding: 11px 14px; border-radius: 10px; }
.lc-form-card .form-control:focus { border-color: var(--lc-red); box-shadow: 0 0 0 .2rem rgba(232,37,43,.12); }
.lc-pay-option { display: flex; align-items: flex-start; gap: 14px; border: 1px solid var(--lc-gray-200); border-radius: 12px; padding: 16px 18px; margin-bottom: 12px; cursor: pointer; transition: all var(--lc-transition); }
.lc-pay-option:has(input:checked) { border-color: var(--lc-red); background: var(--lc-red-soft); }
.lc-pay-option input { margin-top: 4px; accent-color: var(--lc-red); }
.lc-pay-option label { cursor: pointer; flex: 1; }
.lc-pay-option label span { display: block; font-size: .85rem; color: var(--lc-muted); }
.lc-summary { background: var(--lc-gray-50); border-radius: var(--lc-radius-lg); padding: 30px; position: sticky; top: 90px; }
.lc-summary-item { display: flex; gap: 14px; align-items: center; }
.lc-summary-item img { width: 64px; height: 48px; object-fit: cover; border-radius: 8px; }
.lc-sum-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: .95rem; color: var(--lc-text); }
.lc-sum-total { font-size: 1.25rem; font-weight: 800; color: var(--lc-black); }

/* Confirmation */
.lc-success-ico { width: 86px; height: 86px; border-radius: 50%; background: var(--lc-red); color: #fff; font-size: 2.6rem; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--lc-shadow-red); }
.lc-ref-pill { display: inline-block; background: var(--lc-gray-100); border-radius: 999px; padding: 8px 20px; font-size: .92rem; margin-top: 8px; }
.lc-ticket { display: flex; gap: 16px; align-items: center; background: #fff; border: 1px dashed var(--lc-gray-200); border-radius: var(--lc-radius); padding: 16px; }
.lc-ticket img { width: 88px; height: 88px; }
.lc-ticket-code { font-family: monospace; font-weight: 700; font-size: 1rem; color: var(--lc-red); }
.mt-6 { margin-top: 4rem; }

/* ==========================================================================
   Espace apprenant
   ========================================================================== */
.lc-account-nav { background:#fff; border:1px solid var(--lc-gray-100); border-radius:var(--lc-radius-lg); padding:22px; position:sticky; top:90px; }
.lc-account-user { display:flex; align-items:center; gap:12px; padding-bottom:18px; margin-bottom:14px; border-bottom:1px solid var(--lc-gray-100); }
.lc-account-avatar { width:46px; height:46px; border-radius:50%; background:var(--lc-red); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:1.1rem; flex-shrink:0; }
.lc-account-nav nav a { display:flex; align-items:center; gap:11px; padding:11px 13px; border-radius:10px; font-weight:600; font-size:.92rem; color:var(--lc-text); margin-bottom:3px; }
.lc-account-nav nav a:hover { background:var(--lc-gray-50); color:var(--lc-red); }
.lc-account-nav nav a.active { background:var(--lc-red); color:#fff; }
.lc-account-nav nav a i { font-size:1.05rem; }

/* ==========================================================================
   Espace client — composants (page /compte)
   ========================================================================== */
.lc-acc-wrap { padding: 48px 0 80px; background: var(--lc-gray-50); min-height: 70vh; }

/* Bandeau de bienvenue */
.lc-acc-hero {
  background: linear-gradient(120deg, #1c1c1e 0%, #2a2a2e 100%);
  color: #fff; border-radius: var(--lc-radius-lg); padding: 32px 34px;
  position: relative; overflow: hidden; margin-bottom: 26px;
}
.lc-acc-hero::after {
  content: ''; position: absolute; right: -50px; top: -50px;
  width: 220px; height: 220px; border-radius: 50%; background: rgba(232,37,43,.18);
}
.lc-acc-hero .lc-acc-avatar-lg {
  width: 64px; height: 64px; border-radius: 50%; background: var(--lc-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.lc-acc-hero h1 { color: #fff; font-size: 1.8rem; margin: 0 0 4px; }
.lc-acc-hero p { margin: 0; color: rgba(255,255,255,.7); font-size: .95rem; }

/* Cartes statistiques */
.lc-acc-stat {
  background: #fff; border: 1px solid var(--lc-gray-100); border-radius: var(--lc-radius-lg);
  padding: 24px; display: flex; align-items: center; gap: 18px; height: 100%;
  transition: all var(--lc-transition);
}
.lc-acc-stat:hover { box-shadow: var(--lc-shadow); transform: translateY(-3px); border-color: transparent; }
.lc-acc-stat-ico {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.lc-acc-stat-ico.red { background: var(--lc-red-soft); color: var(--lc-red); }
.lc-acc-stat-ico.dark { background: #ecedf0; color: var(--lc-black); }
.lc-acc-stat-ico.green { background: #e3f6ec; color: #16a34a; }
.lc-acc-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--lc-black); line-height: 1.1; }
.lc-acc-stat-label { color: var(--lc-muted); font-size: .86rem; }

/* Sidebar compte : carte plus douce */
.lc-account-nav { box-shadow: var(--lc-shadow-sm); }

/* Panneaux & tableaux génériques (espace client) */
.lc-panel { background: #fff; border: 1px solid var(--lc-gray-100); border-radius: var(--lc-radius-lg); overflow: hidden; }
.lc-panel-head { padding: 18px 24px; border-bottom: 1px solid var(--lc-gray-100); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.lc-panel-head h5 { margin: 0; font-size: 1.05rem; }
.lc-panel-body { padding: 22px 24px; }
.lc-table { width: 100%; margin: 0; }
.lc-table th { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--lc-muted); font-weight: 700; padding: 13px 22px; border-bottom: 1px solid var(--lc-gray-100); text-align: left; }
.lc-table td { padding: 15px 22px; border-bottom: 1px solid var(--lc-gray-100); font-size: .92rem; vertical-align: middle; }
.lc-table tr:last-child td { border-bottom: none; }
.lc-table tbody tr { transition: background .2s; }
.lc-table tbody tr:hover { background: var(--lc-gray-50); }

.lc-pill { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .76rem; font-weight: 700; }
.lc-pill.green { background: #e3f6ec; color: #16a34a; }
.lc-pill.amber { background: #fff3e0; color: #d97706; }
.lc-pill.red { background: var(--lc-red-soft); color: var(--lc-red); }
.lc-pill.gray { background: #eef0f3; color: #6b7280; }
.lc-pill.blue { background: #e6effe; color: #2563eb; }
.lc-actions a { color: var(--lc-muted); font-size: 1.05rem; margin: 0 4px; }
.lc-actions a:hover { color: var(--lc-red); }

/* Raccourcis */
.lc-acc-quick { display: flex; flex-direction: column; gap: 12px; }
.lc-acc-quick a {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  background: #fff; border: 1px solid var(--lc-gray-100); border-radius: var(--lc-radius);
  font-weight: 600; color: var(--lc-text); transition: all var(--lc-transition);
}
.lc-acc-quick a:hover { border-color: var(--lc-red); color: var(--lc-red); transform: translateX(4px); }
.lc-acc-quick a i:first-child { color: var(--lc-red); font-size: 1.3rem; }
.lc-acc-quick a .ms-auto { margin-left: auto; color: var(--lc-gray-400); }

.lc-acc-empty { text-align: center; padding: 40px 20px; color: var(--lc-muted); }
.lc-acc-empty i { font-size: 2.6rem; color: var(--lc-red); display: block; margin-bottom: 12px; }

/* ==========================================================================
   Annonce vidéo (page d'accueil)
   ========================================================================== */
.lc-announce { padding: 40px 0 72px; }
.lc-announce .lc-eyebrow { display: inline-flex; align-items: center; }

/* Lecteur vidéo responsive (ratio 16:9 fluide, max 900px, centré) */
.lc-announce-player {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--lc-radius-lg);
  overflow: hidden;
  box-shadow: var(--lc-shadow);
  border: 1px solid var(--lc-gray-100);
}
.lc-announce-player iframe,
.lc-announce-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

/* Repli pour navigateurs sans support aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
  .lc-announce-player { height: 0; padding-bottom: 56.25%; }
}

@media (max-width: 575px) {
  .lc-announce { padding: 28px 0 48px; }
  .lc-announce-player { border-radius: var(--lc-radius); }
}

/* ==========================================================================
   Partenaires (page d'accueil)
   ========================================================================== */
.lc-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.lc-partner {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--lc-gray-100); border-radius: var(--lc-radius);
  padding: 22px 24px; min-height: 96px; transition: all var(--lc-transition);
}
.lc-partner img {
  max-height: 52px; max-width: 100%; object-fit: contain;
  filter: grayscale(100%); opacity: .7; transition: all var(--lc-transition);
}
.lc-partner span { color: var(--lc-muted); font-weight: 700; text-align: center; }
.lc-partner:hover { border-color: var(--lc-red); box-shadow: var(--lc-shadow-sm); transform: translateY(-3px); }
.lc-partner:hover img { filter: none; opacity: 1; }

/* ==========================================================================
   Vente flash + compte à rebours (accueil)
   ========================================================================== */
.lc-flash { padding-bottom: 40px; }
.lc-flash-card {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0;
  background: linear-gradient(120deg, #141414 0%, #2a1416 100%);
  border-radius: var(--lc-radius-lg); overflow: hidden; box-shadow: var(--lc-shadow);
  border: 1px solid rgba(232,37,43,.25);
}
.lc-flash-media { position: relative; min-height: 280px; }
.lc-flash-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.lc-flash-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--lc-red); color: #fff; font-weight: 800; font-size: .8rem;
  padding: 7px 14px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px;
  box-shadow: var(--lc-shadow-red); animation: lcPulse 1.6s infinite;
}
@keyframes lcPulse { 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.06); } }
.lc-flash-body { padding: 38px 40px; color: #fff; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.lc-flash-body h2 { color: #fff; font-size: clamp(1.5rem,2.6vw,2.1rem); margin: 4px 0 12px; }
.lc-flash-price { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.lc-flash-now { font-size: 2.1rem; font-weight: 800; color: #fff; }
.lc-flash-old { font-size: 1.1rem; color: rgba(255,255,255,.5); text-decoration: line-through; }
.lc-flash-badge { background: #fff; color: var(--lc-red); font-weight: 800; padding: 4px 12px; border-radius: 999px; font-size: .9rem; }

.lc-countdown { display: flex; gap: 12px; margin-bottom: 26px; }
.lc-cd-box {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 12px 0; text-align: center; min-width: 68px;
}
.lc-cd-box span { display: block; font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.lc-cd-box small { color: rgba(255,255,255,.6); font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; }
.lc-flash-body .btn-lc { align-self: flex-start; }

@media (max-width: 767px) {
  .lc-flash-card { grid-template-columns: 1fr; }
  .lc-flash-media { min-height: 200px; }
  .lc-flash-body { padding: 28px 24px; }
  .lc-cd-box { min-width: 0; flex: 1; }
  .lc-countdown { gap: 8px; }
}

/* ==========================================================================
   Profil formateur public
   ========================================================================== */
.lc-coach-hero { padding: 44px 0 50px; }
.lc-coach-photo { width: 128px; height: 128px; border-radius: 50%; object-fit: cover; border: 4px solid rgba(255,255,255,.15); }
.lc-coach-name { color: #fff; font-size: clamp(1.8rem,3vw,2.6rem); margin: 0 0 6px; }
.lc-coach-title { color: var(--lc-red); font-weight: 600; margin: 0 0 16px; }
.lc-coach-socials { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.lc-coach-socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: all var(--lc-transition); }
.lc-coach-socials a:hover { background: var(--lc-red); }
.lc-coach-cvbtn { width: auto !important; border-radius: 999px !important; padding: 0 18px; gap: 8px; font-weight: 700; font-size: .9rem; }

.lc-skills { display: flex; flex-wrap: wrap; gap: 8px; }
.lc-skill { background: var(--lc-red-soft); color: var(--lc-red); font-weight: 600; font-size: .85rem; padding: 6px 14px; border-radius: 999px; }

.lc-pf-item { background: #fff; border: 1px solid var(--lc-gray-100); border-radius: var(--lc-radius); overflow: hidden; height: 100%; }
.lc-pf-img { width: 100%; height: 170px; object-fit: cover; }
.lc-pf-meta { padding: 16px 18px; }

.lc-mini-consult { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--lc-gray-100); }
.lc-mini-consult:last-child { border-bottom: none; }
.lc-mini-consult:hover .fw-bold { color: var(--lc-red); }

/* Carte formateur (liste) */
.lc-coach-card { display: block; background: #fff; border: 1px solid var(--lc-gray-100); border-radius: var(--lc-radius-lg); overflow: hidden; transition: all var(--lc-transition); height: 100%; }
.lc-coach-card:hover { transform: translateY(-6px); box-shadow: var(--lc-shadow); border-color: transparent; }
.lc-coach-card img { width: 100%; height: 260px; object-fit: cover; }
.lc-coach-card-body { padding: 20px 22px; }
.lc-coach-card-body h5 { margin: 0 0 2px; }

/* Nom de formateur cliquable */
.lc-coach-link { color: inherit; font-weight: inherit; }
.lc-coach-link:hover { color: var(--lc-red); }

/* ==========================================================================
   Boutons flottants multi-canaux
   ========================================================================== */
.lc-float-stack{
  position: fixed; right: 22px; bottom: 22px; z-index: 1040;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.lc-float-items{ display: flex; flex-direction: column; gap: 12px; }
.lc-float-btn{
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--fc); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 6px 18px rgba(20,20,20,.28);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: lcFloatPop .35s ease both;
}
.lc-float-btn:hover{ color:#fff; transform: scale(1.1); box-shadow: 0 10px 26px rgba(20,20,20,.4); }
/* Instagram dégradé */
.lc-float-btn[style*="#E1306C"]{ background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 70%, #285AEB 100%); }

.lc-float-toggle{
  width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--lc-red); color: #fff; font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--lc-shadow-red); position: relative; transition: transform .3s ease;
}
.lc-float-toggle .lc-float-ico-close{ display: none; }

/* Collapsible : masqué par défaut, révélé au clic */
.lc-float-stack.is-collapsible .lc-float-items{
  opacity: 0; transform: translateY(14px) scale(.6); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.lc-float-stack.is-collapsible.open .lc-float-items{ opacity: 1; transform: none; pointer-events: auto; }
.lc-float-stack.open .lc-float-toggle{ transform: rotate(90deg); }
.lc-float-stack.open .lc-float-toggle .lc-float-ico-open{ display: none; }
.lc-float-stack.open .lc-float-toggle .lc-float-ico-close{ display: block; }

@keyframes lcFloatPop{ from{ transform: scale(0); } to{ transform: scale(1); } }
.lc-rtl .lc-float-stack{ right: auto; left: 22px; }
@media (max-width: 575px){
  .lc-float-stack{ right: 16px; bottom: 16px; }
  .lc-float-btn{ width: 46px; height: 46px; font-size: 1.35rem; }
  .lc-float-toggle{ width: 54px; height: 54px; font-size: 1.5rem; }
}

/* ==========================================================================
   Badges formateur
   ========================================================================== */
.lc-coach-badges { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:12px; }
.lc-badge-chip{
  display:inline-flex; align-items:center; gap:6px;
  background: color-mix(in srgb, var(--bc) 16%, transparent);
  color: var(--bc); border:1px solid color-mix(in srgb, var(--bc) 35%, transparent);
  font-weight:700; font-size:.78rem; padding:4px 12px; border-radius:999px; line-height:1.4;
}
/* Repli si color-mix non supporté */
@supports not (background: color-mix(in srgb, red 10%, transparent)) {
  .lc-badge-chip{ background:#f1f1f4; border-color:#e0e0e6; }
}
.lc-coach-hero .lc-badge-chip{ background: color-mix(in srgb, var(--bc) 26%, transparent); border-color: color-mix(in srgb, var(--bc) 50%, transparent); color:#fff; }

/* ==========================================================================
   Carrousel formateurs (accueil)
   ========================================================================== */
.lc-caro-btn{
  width:46px; height:46px; border-radius:50%; border:1px solid var(--lc-gray-200);
  background:#fff; color:var(--lc-black); font-size:1.1rem; cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center; transition:all var(--lc-transition);
}
.lc-caro-btn:hover{ background:var(--lc-red); color:#fff; border-color:var(--lc-red); }

.lc-coaches-track{
  display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory;
  padding-bottom:10px; scrollbar-width:none;
}
.lc-coaches-track::-webkit-scrollbar{ display:none; }
.lc-coach-slide{
  flex:0 0 280px; scroll-snap-align:start; background:#fff;
  border:1px solid var(--lc-gray-100); border-radius:var(--lc-radius-lg); overflow:hidden;
  display:block; transition:all var(--lc-transition);
}
.lc-coach-slide:hover{ transform:translateY(-6px); box-shadow:var(--lc-shadow); border-color:transparent; }
.lc-coach-slide-photo{ aspect-ratio:1/1; overflow:hidden; background:var(--lc-gray-100); }
.lc-coach-slide-photo img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.lc-coach-slide:hover .lc-coach-slide-photo img{ transform:scale(1.06); }
.lc-coach-slide-body{ padding:18px 20px; }
.lc-coach-slide-body h5{ margin:0 0 2px; font-size:1.1rem; }
.lc-coach-slide:hover .lc-coach-slide-body h5{ color:var(--lc-red); }
.lc-coach-slide-badges{ display:flex; flex-wrap:wrap; gap:6px; }
.lc-coach-slide-badges .lc-badge-chip{ font-size:.68rem; padding:3px 9px; }
@media (max-width:575px){ .lc-coach-slide{ flex-basis:230px; } }

/* ==========================================================================
   Avis (reviews)
   ========================================================================== */
.lc-rv-summary{ display:flex; align-items:center; gap:10px; }
.lc-rv-avg{ font-size:1.8rem; font-weight:800; color:var(--lc-black); line-height:1; }
.lc-stars{ letter-spacing:2px; }
.lc-rv-card{ background:#fff; border:1px solid var(--lc-gray-100); border-radius:var(--lc-radius); padding:18px 20px; height:100%; }

/* Sélecteur d'étoiles (formulaire) */
.lc-star-input{ display:inline-flex; flex-direction:row-reverse; gap:4px; font-size:1.8rem; }
.lc-star-input input{ display:none; }
.lc-star-input label{ color:var(--lc-gray-200); cursor:pointer; transition:color .15s; }
.lc-star-input input:checked ~ label,
.lc-star-input label:hover,
.lc-star-input label:hover ~ label{ color:var(--lc-red); }

/* Panier (navbar) */
.lc-nav-cart{ position:relative; color:var(--lc-text); font-size:1.2rem; display:inline-flex; }
.lc-nav-cart:hover{ color:var(--lc-red); }
.lc-cart-badge{ position:absolute; top:-8px; right:-10px; background:var(--lc-red); color:#fff; font-size:.62rem; font-weight:700; min-width:16px; height:16px; border-radius:999px; display:flex; align-items:center; justify-content:center; padding:0 4px; }

/* ==========================================================================
   Cards marketing (accueil)
   ========================================================================== */
.lc-mkt { padding-top: 8px; }
.lc-mkt-card{
  position: relative; border-radius: var(--lc-radius-lg); overflow: hidden;
  background: var(--lc-darker); color:#fff; min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--lc-shadow); transition: transform .4s ease, box-shadow .4s ease;
}
.lc-mkt-card:hover{ transform: translateY(-6px); box-shadow: 0 28px 60px rgba(20,20,20,.22); }
.lc-mkt-media{ position: absolute; inset: 0; z-index: 1; }
.lc-mkt-media img, .lc-mkt-media video, .lc-mkt-media iframe{
  width: 100%; height: 100%; object-fit: cover; border: 0; display: block;
  transition: transform .6s ease;
}
.lc-mkt-card:hover .lc-mkt-media img{ transform: scale(1.05); }
.lc-mkt-media::after{
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0) 30%, rgba(20,20,20,.55) 68%, rgba(20,20,20,.92) 100%);
}
.lc-mkt-media iframe ~ ::after, .lc-mkt-card:has(iframe) .lc-mkt-media::after{ display:none; }
.lc-mkt-badge{
  position: absolute; top: 16px; left: 16px; z-index: 3;
  background: var(--lc-red); color:#fff; font-weight: 700; font-size: .75rem;
  padding: 6px 14px; border-radius: 999px; letter-spacing: .04em;
}
.lc-mkt-body{ position: relative; z-index: 2; padding: 30px 32px; }
/* Pour les vidéos (iframe), le texte passe sous la vidéo */
.lc-mkt-card:has(iframe) { justify-content: flex-start; }
.lc-mkt-card:has(iframe) .lc-mkt-media{ position: relative; aspect-ratio: 16/9; }
.lc-mkt-card:has(iframe) .lc-mkt-body{ background: var(--lc-darker); }
.lc-mkt-body h3{ color:#fff; font-size: 1.6rem; margin: 0 0 8px; }
.lc-mkt-body p{ color: rgba(255,255,255,.82); margin: 0 0 18px; }
@media (max-width: 575px){ .lc-mkt-card{ min-height: 320px; } .lc-mkt-body h3{ font-size: 1.4rem; } }

/* ==========================================================================
   Vérification certificat (accueil)
   ========================================================================== */
.lc-certverify .lc-title{ color:#fff; }
.lc-cv-input .form-control{ border:none; padding:16px 18px; border-radius:999px 0 0 999px; font-size:1rem; }
.lc-cv-input .btn-lc{ border-radius:0 999px 999px 0; }
.lc-cv-result{ margin-top:18px; }
.lc-cv-card{
  display:flex; align-items:center; gap:16px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  border-radius:var(--lc-radius); padding:18px 22px; color:#fff;
  animation: lcFadeUp .35s ease;
}
.lc-cv-ico{ width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.6rem; flex-shrink:0; background:#6b7280; }
.lc-cv-card.is-ok{ border-color:rgba(22,163,74,.5); } .lc-cv-card.is-ok .lc-cv-ico{ background:#16a34a; }
.lc-cv-card.is-pending{ border-color:rgba(217,119,6,.5); } .lc-cv-card.is-pending .lc-cv-ico{ background:#d97706; }
.lc-cv-card.is-bad .lc-cv-ico{ background:#6b7280; }
.lc-cv-card strong{ font-size:1.05rem; }
.lc-cv-sub{ color:rgba(255,255,255,.7); font-size:.9rem; }
.lc-cv-rows{ display:grid; grid-template-columns:1fr 1fr; gap:4px 24px; margin-top:8px; font-size:.9rem; }
.lc-cv-rows div{ display:flex; flex-direction:column; }
.lc-cv-rows span{ color:rgba(255,255,255,.55); font-size:.74rem; text-transform:uppercase; letter-spacing:.04em; }
.lc-cv-print{ display:inline-flex; align-items:center; gap:6px; margin-top:12px; color:#fff; font-weight:700; font-size:.88rem; }
.lc-cv-print:hover{ color:var(--lc-red); }
@keyframes lcFadeUp{ from{ opacity:0; transform:translateY(10px);} to{ opacity:1; transform:none;} }
@media (max-width:575px){ .lc-cv-rows{ grid-template-columns:1fr; } }

/* ==========================================================================
   Page À propos
   ========================================================================== */
.lc-about-hero{ padding-top:96px; }
.lc-about-img img{ width:100%; border-radius:var(--lc-radius); box-shadow:0 24px 50px rgba(0,0,0,.14); object-fit:cover; }
.lc-soft{ background:var(--lc-gray-50); }

/* Chiffres clés (bandeau sombre) */
.lc-about-stats{ padding:54px 0; }
.lc-about-stats .lc-stat-num{ color:#fff; font-size:2.4rem; line-height:1; }
.lc-about-stats .lc-stat-lab{ color:rgba(255,255,255,.7); font-size:.9rem; margin-top:8px; text-transform:uppercase; letter-spacing:.04em; }

/* Corps riche */
.lc-about-body{ max-width:820px; font-size:1.06rem; line-height:1.8; color:var(--lc-gray-700, #333); }
.lc-about-body h2, .lc-about-body h3{ font-weight:800; margin:1.6rem 0 .7rem; }
.lc-about-body h3{ font-size:1.4rem; }
.lc-about-body p{ margin-bottom:1.1rem; }
.lc-about-body ul, .lc-about-body ol{ margin:0 0 1.1rem 1.2rem; }
.lc-about-body a{ color:var(--lc-red); font-weight:600; }

/* Cartes valeurs */
.lc-value-card{
  background:#fff; border:1px solid var(--lc-gray-200, #eee); border-radius:var(--lc-radius);
  padding:30px 26px; height:100%; transition:transform .25s, box-shadow .25s;
}
.lc-value-card:hover{ transform:translateY(-4px); box-shadow:0 18px 36px rgba(0,0,0,.08); }
.lc-value-ico{
  width:58px; height:58px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:rgba(232,37,43,.1); color:var(--lc-red); font-size:1.5rem; margin-bottom:16px;
}
.lc-value-card h5{ font-weight:800; margin-bottom:8px; }
.lc-value-card p{ color:var(--lc-muted); margin:0; font-size:.95rem; line-height:1.6; }

/* CTA bas de page */
.lc-about-cta{
  background:linear-gradient(135deg, var(--lc-darker) 0%, #1a1a1a 100%);
  color:#fff; border-radius:var(--lc-radius); padding:54px 30px;
}
.lc-about-cta h2{ color:#fff; font-weight:800; margin-bottom:12px; }
.lc-about-cta p{ color:rgba(255,255,255,.75); max-width:560px; margin:0 auto 22px; }

/* ==========================================================================
   Page Contact
   ========================================================================== */
.lc-contact-box{ background:#fff; border:1px solid var(--lc-gray-200,#eee); border-radius:var(--lc-radius); padding:30px 30px 34px; box-shadow:0 10px 30px rgba(0,0,0,.05); }
.lc-cstep{ margin-bottom:28px; }
.lc-cstep:last-child{ margin-bottom:0; }
.lc-cstep-title{ font-weight:800; display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.lc-cstep-num{ width:28px; height:28px; border-radius:50%; background:var(--lc-red); color:#fff; font-size:.9rem; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.lc-cchosen{ font-size:.82rem; font-weight:600; color:#fff; background:var(--lc-red); padding:3px 12px; border-radius:999px; margin-left:auto; }
.lc-cchosen:empty{ display:none; }

/* Verrouillage visuel de l'étape 2 tant qu'aucun motif n'est choisi */
.lc-cstep.lc-locked{ opacity:.45; pointer-events:none; filter:grayscale(.3); transition:opacity .3s; }

/* Grille des motifs */
.lc-ctype-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.lc-ctype{
  text-align:left; background:var(--lc-gray-50,#f7f7f7); border:2px solid transparent; border-radius:14px;
  padding:16px 18px; cursor:pointer; transition:border-color .2s, background .2s, transform .15s;
  display:flex; flex-direction:column; gap:4px;
}
.lc-ctype:hover{ transform:translateY(-2px); background:#fff; border-color:var(--lc-gray-200,#e5e5e5); }
.lc-ctype.is-active{ border-color:var(--lc-red); background:#fff; box-shadow:0 8px 20px rgba(232,37,43,.12); }
.lc-ctype > i{ font-size:1.5rem; color:var(--lc-red); }
.lc-ctype-lab{ font-weight:700; }
.lc-ctype-desc{ font-size:.82rem; color:var(--lc-muted); line-height:1.4; }

/* Alerte de retour */
.lc-calert{ margin-top:16px; padding:12px 16px; border-radius:10px; font-size:.92rem; }
.lc-calert.is-ok{ background:rgba(22,163,74,.1); color:#15803d; border:1px solid rgba(22,163,74,.3); }
.lc-calert.is-bad{ background:rgba(220,38,38,.08); color:#b91c1c; border:1px solid rgba(220,38,38,.25); }

/* Coordonnées */
.lc-contact-info{ background:var(--lc-darker); color:#fff; border-radius:var(--lc-radius); padding:28px 26px; }
.lc-contact-info h5{ color:#fff; font-weight:800; margin-bottom:18px; }
.lc-cinfo-row{ display:flex; align-items:center; gap:14px; padding:11px 0; color:#fff; text-decoration:none; border-top:1px solid rgba(255,255,255,.08); }
.lc-cinfo-row:first-of-type{ border-top:none; }
.lc-cinfo-row:hover{ color:#fff; }
.lc-cinfo-ico{ width:42px; height:42px; border-radius:11px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; font-size:1.15rem; color:var(--lc-red); flex-shrink:0; }
.lc-cinfo-row span small{ display:block; font-size:.72rem; color:rgba(255,255,255,.55); text-transform:uppercase; letter-spacing:.04em; }
.lc-contact-map iframe{ width:100%; height:240px; border:0; border-radius:var(--lc-radius); }
@media (max-width:575px){ .lc-ctype-grid{ grid-template-columns:1fr; } }

/* ==========================================================================
   Espace consultation (documents joints + chat)
   ========================================================================== */
/* Liste des consultations (côté client) */
.lc-cw-list{ display:flex; flex-direction:column; gap:12px; }
.lc-cw-item{ display:flex; align-items:center; gap:14px; background:#fff; border:1px solid var(--lc-gray-200,#eee); border-radius:14px; padding:16px 18px; text-decoration:none; color:inherit; transition:box-shadow .2s, transform .15s; }
.lc-cw-item:hover{ box-shadow:0 10px 24px rgba(0,0,0,.07); transform:translateY(-2px); color:inherit; }
.lc-cw-item-ico{ width:46px; height:46px; border-radius:12px; background:rgba(232,37,43,.1); color:var(--lc-red); display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0; }
.lc-cw-item-main{ flex:1; min-width:0; }

/* Workspace */
.lc-cw-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:16px; flex-wrap:wrap; }
.lc-cw-head h3{ font-weight:800; }
.lc-cw-meta{ display:flex; flex-wrap:wrap; gap:16px; color:var(--lc-muted); font-size:.9rem; }
.lc-cw-meta i{ color:var(--lc-red); }
.lc-cw-join{ display:inline-flex; align-items:center; gap:8px; margin-top:14px; background:var(--lc-red); color:#fff; font-weight:700; padding:11px 20px; border-radius:999px; text-decoration:none; }
.lc-cw-join:hover{ color:#fff; opacity:.92; }

.lc-cw-panel{ background:#fff; border:1px solid var(--lc-gray-200,#eee); border-radius:var(--lc-radius); padding:24px; height:100%; }
.lc-cw-panel h5{ font-weight:800; margin-bottom:18px; }

/* Documents */
.lc-cw-files{ display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
.lc-cw-file{ display:flex; align-items:center; gap:12px; padding:10px 12px; border:1px solid var(--lc-gray-200,#eee); border-radius:10px; text-decoration:none; color:inherit; transition:background .15s; }
.lc-cw-file:hover{ background:var(--lc-gray-50,#f7f7f7); color:inherit; }
.lc-cw-file > i:first-child{ font-size:1.4rem; color:var(--lc-red); }
.lc-cw-file-name{ flex:1; min-width:0; font-weight:600; font-size:.9rem; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.lc-cw-file-meta{ font-size:.75rem; color:var(--lc-muted); white-space:nowrap; }
.lc-cw-file-dl{ color:var(--lc-muted); }
.lc-cw-drop{ display:flex; align-items:center; justify-content:center; gap:8px; border:2px dashed var(--lc-gray-200,#ddd); border-radius:12px; padding:14px; cursor:pointer; color:var(--lc-muted); font-size:.9rem; transition:border-color .2s,color .2s; }
.lc-cw-drop:hover{ border-color:var(--lc-red); color:var(--lc-red); }
.lc-cw-drop input{ display:none; }

/* Chat */
.lc-cw-chatpanel{ display:flex; flex-direction:column; }
.lc-cw-thread{ flex:1; min-height:300px; max-height:460px; overflow-y:auto; display:flex; flex-direction:column; gap:12px; padding:6px 4px; }
.lc-cw-empty{ margin:auto; text-align:center; color:var(--lc-muted); }
.lc-cw-empty i{ font-size:2.4rem; display:block; margin-bottom:10px; opacity:.5; }
.lc-cw-bubble{ max-width:80%; align-self:flex-start; background:var(--lc-gray-50,#f4f4f4); border-radius:14px 14px 14px 4px; padding:10px 14px; }
.lc-cw-bubble.is-me{ align-self:flex-end; background:var(--lc-red); color:#fff; border-radius:14px 14px 4px 14px; }
.lc-cw-bubble-head{ font-size:.72rem; font-weight:700; margin-bottom:3px; opacity:.85; }
.lc-cw-bubble-head span{ font-weight:400; opacity:.7; margin-left:6px; }
.lc-cw-bubble-body{ font-size:.93rem; line-height:1.5; word-wrap:break-word; }
.lc-cw-send{ display:flex; gap:10px; align-items:flex-end; margin-top:16px; border-top:1px solid var(--lc-gray-200,#eee); padding-top:16px; }
.lc-cw-send textarea{ flex:1; resize:none; border:1px solid var(--lc-gray-200,#ddd); border-radius:14px; padding:11px 14px; font-family:inherit; font-size:.93rem; max-height:120px; }
.lc-cw-send textarea:focus{ outline:none; border-color:var(--lc-red); }
.lc-cw-sendbtn{ width:44px; height:44px; flex-shrink:0; border:none; border-radius:50%; background:var(--lc-red); color:#fff; font-size:1.1rem; cursor:pointer; transition:opacity .15s; }
.lc-cw-sendbtn:hover{ opacity:.9; }
