/*
Theme Name:   Linkolis Child
Theme URI:    https://linkolis.app
Description:  Thème enfant Astra pour le site vitrine Linkolis
Author:       Linkolis
Author URI:   https://linkolis.app
Template:     astra
Version:      2.0.0
Text Domain:  linkolis-child
*/

/* =========================================================
   1. DESIGN SYSTEM — Variables
   ========================================================= */
:root {
  /* Couleurs marque */
  --lk-primary:        #5B6CF9;
  --lk-primary-hover:  #7383fa;
  --lk-primary-dark:   #4a5be8;
  --lk-primary-light:  rgba(91, 108, 249, 0.12);

  /* Fonds */
  --lk-navy-deep:      #0A1628;
  --lk-navy:           #1E3A8A;
  --lk-bg-light:       #ffffff;
  --lk-bg-gray:        #F8FAFC;

  /* Texte */
  --lk-text-dark:      #0A1628;
  --lk-text-body:      #475569;
  --lk-text-muted:     #94A3B8;
  --lk-text-light:     #ffffff;
  --lk-text-light-80:  rgba(255, 255, 255, 0.8);
  --lk-text-light-60:  rgba(255, 255, 255, 0.6);

  /* Sémantique */
  --lk-green:          #10B981;
  --lk-blue:           #3B82F6;
  --lk-blue-light:     #60A5FA;
  --lk-red:            #EF4444;
  --lk-amber:          #F59E0B;

  /* Bordures */
  --lk-border:         #E2E8F0;
  --lk-border-light:   #F1F5F9;
  --lk-border-dark:    rgba(255, 255, 255, 0.12);

  /* Typo */
  --lk-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --lk-container:      1200px;
  --lk-header-h:       72px;
  --lk-section-pad:    100px;

  /* Effets */
  --lk-radius:         12px;
  --lk-radius-lg:      16px;
  --lk-radius-full:    9999px;
  --lk-shadow-card:    0 1px 3px rgba(10, 22, 40, 0.06), 0 4px 16px rgba(10, 22, 40, 0.06);
  --lk-shadow-card-hover: 0 4px 12px rgba(10, 22, 40, 0.08), 0 12px 32px rgba(10, 22, 40, 0.10);
  --lk-transition:     0.2s ease;
}

/* =========================================================
   2. BASE
   ========================================================= */
html {
  /* Scroll fluide vers les ancres (#lk-devis, #lk-faq, …) ;
     scroll-padding compense le header fixe pour ne pas masquer la cible */
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--lk-header-h) + 24px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--lk-font);
  color: var(--lk-text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lk-container {
  max-width: var(--lk-container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Neutralise les conteneurs Astra sur nos templates */
.lk-page .site-content,
.lk-page #content {
  padding: 0;
  margin: 0;
  max-width: none;
}

/* =========================================================
   3. BOUTONS
   ========================================================= */
.lk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--lk-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--lk-radius-full);
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--lk-transition), border-color var(--lk-transition),
              color var(--lk-transition), transform var(--lk-transition),
              box-shadow var(--lk-transition);
}

.lk-btn:focus-visible {
  outline: 2px solid var(--lk-primary);
  outline-offset: 3px;
}

.lk-btn--primary {
  background: var(--lk-primary);
  border-color: var(--lk-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(91, 108, 249, 0.35);
}

.lk-btn--primary:hover {
  background: var(--lk-primary-hover);
  border-color: var(--lk-primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(91, 108, 249, 0.45);
}

.lk-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.lk-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.lk-btn--lg {
  padding: 16px 32px;
  font-size: 17px;
}

.lk-btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* =========================================================
   4. HEADER
   ========================================================= */
.lk-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--lk-header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease,
              backdrop-filter 0.3s ease;
}

.lk-header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.lk-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.lk-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.lk-header__logo img {
  height: 30px;
  width: auto;
  display: block;
}

.lk-header__nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
}

.lk-header__nav a {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--lk-text-light-80);
  text-decoration: none;
  transition: color var(--lk-transition);
}

.lk-header__nav a:hover {
  color: #fff;
}

.lk-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lk-header__actions .lk-btn {
  padding: 11px 22px;
  font-size: 14.5px;
}

/* Hamburger */
.lk-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.lk-hamburger__line {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.lk-hamburger.is-active .lk-hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lk-hamburger.is-active .lk-hamburger__line:nth-child(2) { opacity: 0; }
.lk-hamburger.is-active .lk-hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav mobile */
.lk-mobile-nav {
  display: none;
  position: fixed;
  top: var(--lk-header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  flex-direction: column;
  background: var(--lk-navy-deep);
  border-top: 1px solid var(--lk-border-dark);
  padding: 32px 24px;
  overflow-y: auto;
}

.lk-mobile-nav.is-open { display: flex; }

.lk-mobile-nav__link {
  font-size: 20px;
  font-weight: 500;
  color: var(--lk-text-light-80);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--lk-border-dark);
  transition: color var(--lk-transition);
}

.lk-mobile-nav__link:hover { color: #fff; }

.lk-mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.lk-mobile-nav__actions .lk-btn { width: 100%; }

body.lk-nav-open { overflow: hidden; }

/* =========================================================
   5. HERO
   ========================================================= */
.lk-hero {
  position: relative;
  background: linear-gradient(150deg, #0A1628 0%, #11244f 55%, #1E3A8A 100%);
  padding-top: calc(var(--lk-header-h) + 88px);
  padding-bottom: 110px;
  overflow: hidden;
}

/* Grille de points en overlay */
.lk-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1.5px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 60% 20%, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 90% at 60% 20%, #000 0%, transparent 70%);
  pointer-events: none;
}

/* Halo bleu doux côté mockup */
.lk-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(91, 108, 249, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.lk-hero .lk-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  padding-inline: 40px;
}

.lk-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
}

.lk-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 28px;
  background: rgba(91, 108, 249, 0.15);
  border: 1px solid rgba(91, 108, 249, 0.35);
  border-radius: var(--lk-radius-full);
  font-size: 13.5px;
  font-weight: 500;
  color: #A5B4FC;
}

.lk-hero__title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 24px;
  /* titre plus long (2 phrases) : équilibre les lignes pour une coupure propre */
  text-wrap: balance;
}

.lk-hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, #818CF8, #5B6CF9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lk-hero__subtitle {
  font-size: 19px;
  line-height: 1.65;
  color: var(--lk-text-light-80);
  max-width: 540px;
  margin: 0 0 40px;
}

.lk-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* Phrase de preuve sous les CTA du hero — discrète sur fond sombre */
.lk-hero__proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  font-size: 14.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

.lk-hero__proof strong {
  font-weight: 600;
  color: #fff;
}

.lk-hero__proof-icon {
  flex-shrink: 0;
  color: var(--lk-primary);
}

/* =========================================================
   6. HERO — DASHBOARD MOCKUP + WIDGETS FLOTTANTS
   ========================================================= */
/* Disposition verticale : rangée de 2 mini-widgets au-dessus,
   dashboard principal pleine largeur en dessous. La perspective
   s'applique à l'ensemble. */
.lk-dash {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: perspective(1200px) rotateY(-3deg);
}

.lk-dash__row {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.lk-mini {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  padding: 16px 18px;
  font-family: var(--lk-font);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lk-mockup {
  background: #fff;
  border-radius: var(--lk-radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  font-family: var(--lk-font);
}

.lk-hero__visual {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.lk-dash {
  flex: 1;
  min-width: 0;
  max-width: 620px;
}

/* Barre navigateur */
.lk-mockup__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--lk-border-light);
}

.lk-mockup__dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.lk-mockup__dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.lk-mockup__dots span:nth-child(1) { background: #FF5F57; }
.lk-mockup__dots span:nth-child(2) { background: #FEBC2E; }
.lk-mockup__dots span:nth-child(3) { background: #28C840; }

.lk-mockup__url {
  flex: 1;
  max-width: 240px;
  margin-inline: auto;
  text-align: center;
  font-size: 12px;
  color: var(--lk-text-muted);
  background: #fff;
  border: 1px solid var(--lk-border-light);
  border-radius: 6px;
  padding: 4px 14px;
}

.lk-mockup__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Widget donut ── */
.lk-perf {
  border: 1px solid var(--lk-border-light);
  border-radius: var(--lk-radius);
  padding: 16px;
}

.lk-perf__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.lk-perf__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--lk-text-dark);
}

.lk-perf__meta {
  font-size: 11.5px;
  color: var(--lk-text-muted);
}

.lk-perf__body {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lk-perf__chart {
  width: 132px;
  height: 132px;
  flex-shrink: 0;
}

.lk-perf__chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lk-donut-seg {
  opacity: 0;
  animation: lk-seg-in 0.6s ease forwards;
}

.lk-donut-seg--1 { animation-delay: 0.2s; }
.lk-donut-seg--2 { animation-delay: 0.55s; }
.lk-donut-seg--3 { animation-delay: 0.75s; }
.lk-donut-seg--4 { animation-delay: 0.9s; }

@keyframes lk-seg-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Légende à côté du chart */
.lk-perf__legend {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.lk-perf__leg {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lk-perf__leg-dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  flex-shrink: 0;
}

.lk-perf__leg-label {
  flex: 1;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--lk-text-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lk-perf__leg-val {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--lk-text-dark);
  font-variant-numeric: tabular-nums;
}

/* ── Conteneur table commandes ── */
.lk-orders {
  border: 1px solid var(--lk-border-light);
  border-radius: 16px;
  overflow: hidden;        /* clippe proprement la ligne sortante + arrondit les coins */
  background: #fff;
  padding-bottom: 6px;     /* la dernière ligne ne colle plus au coin arrondi du bas */
}

/* ── Contenus des mini-widgets ── */
.lk-sat {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.lk-sat__star {
  color: #FBBF24;
  flex-shrink: 0;
}

/* Icônes 3D des widgets flottants (96% / 247) — déjà autoportées, aucun fond */
.lk-widget__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.lk-sat__num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lk-text-dark);
  line-height: 1;
}

.lk-sat__label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--lk-text-body);
}

.lk-today {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.lk-today__icon {
  font-size: 20px;
  line-height: 1.2;
  flex-shrink: 0;
}

.lk-today__text {
  font-size: 13px;
  line-height: 1.4;
  color: var(--lk-text-body);
}

.lk-today__text strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--lk-text-dark);
}

.lk-today__bar {
  height: 6px;
  margin-top: 10px;
  background: #EEF2FF;
  border-radius: 3px;
  overflow: hidden;
}

.lk-today__bar-fill {
  height: 100%;
  width: 78%;
  background: var(--lk-primary);
  border-radius: 3px;
  animation: lk-bar-grow 1.1s ease 0.4s both;
}

@keyframes lk-bar-grow {
  from { width: 0; }
}

/* ── Table commandes ── */
.lk-orders__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--lk-border-light);
}

.lk-orders__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--lk-text-dark);
}

.lk-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lk-green);
  animation: lk-pulse 1.8s ease-in-out infinite;
}

@keyframes lk-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
  50%      { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.lk-orders table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;               /* annule le margin:0 0 1.5em d'Astra sur <table> */
  border: 0;               /* annule la bordure de <table> héritée d'Astra */
}

.lk-orders td {
  height: 48px;            /* lignes uniformes ; logo 26px */
  padding: 0 12px;
  font-size: 12.5px;
  color: var(--lk-text-body);
  border: 0;               /* tue les bordures gauche/droite/haut héritées d'Astra (td,th{border:1px solid}) */
  border-bottom: 1px solid var(--lk-border-light);
  vertical-align: middle;
}

.lk-orders tr:last-child td { border-bottom: none; }

.lk-orders__mp {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lk-orders__mp img {
  width: 64px;              /* largeur fixe = colonne logo constante → noms alignés */
  height: 26px;
  object-fit: contain;      /* logo entier, non rogné (déjà recadré trim-) */
  object-position: left center;  /* logo collé à gauche dans sa boîte */
  border-radius: 4px;
  display: block;
  flex-shrink: 0;           /* le logo ne se compresse pas */
}

.lk-orders__mp span {
  font-weight: 500;
  color: var(--lk-text-dark);
  font-size: 14px;
  white-space: nowrap;
}

/* Élargit la colonne marketplace pour ne pas écraser les logos larges (Kaufland, Back Market) */
.lk-orders td:first-child { min-width: 120px; }

/* Colonne Pays (drapeau emoji + nom) */
.lk-orders__country {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--lk-text-body);
  white-space: nowrap;
}

.lk-orders__flag {
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;   /* enfant flex direct de .lk-orders__country : ne se comprime
                       jamais -> le drapeau garde sa taille quelle que soit la
                       largeur de cellule recalculée par table-layout:auto.
                       (Correctif au bon niveau : .lk-flag n'est PAS l'enfant flex.) */
}

/* Drapeaux SVG (flag-icons) — remplacent les emoji ; taille relative au texte
   environnant (comme le faisaient les emoji) via des unités em. */
.lk-flag {
  display: inline-block;
  width: 1.333em;   /* ratio 4:3 */
  height: 1em;
  flex-shrink: 0;   /* ne se comprime jamais dans le flex .lk-orders__country :
                       taille verrouillée à 20×15px quelle que soit la largeur
                       de cellule recalculée par la table (cf. .lk-orders__mp img). */
  object-fit: cover;
  vertical-align: -0.15em;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08); /* léger contour pour les drapeaux clairs */
}

.lk-orders__id {
  font-variant-numeric: tabular-nums;
  color: var(--lk-text-muted);
  white-space: nowrap;
}

/* Pills "Mode de livraison" */
.lk-orders__modepill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
}
.lk-orders__modepill--standard { background: #EEF1FF; color: #5B6CF9; }
.lk-orders__modepill--relais   { background: #FFF4E5; color: #D97706; }
.lk-orders__modepill--express  { background: #E7F8EF; color: #0E9F6E; }

/* Badges statut — la transition de couleur anime l'évolution */
.lk-os {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--lk-radius-full);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.4s ease, color 0.4s ease;
}

.lk-os::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.lk-os--created     { background: #F1F5F9; color: #64748B; }
.lk-os--fulfillment { background: #EEF0FE; color: var(--lk-primary); }
.lk-os--transit     { background: #DBEAFE; color: #2563EB; }
.lk-os--delivered   { background: #D1FAE5; color: #059669; }

/* Nouvelle ligne */
.lk-row-in {
  animation: lk-row-slide 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes lk-row-slide {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   7. SECTION STATS
   ========================================================= */
.lk-stats {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  padding: 88px 0;
}

.lk-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lk-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid #F1F5F9;
  border-radius: 20px;
  padding: 40px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.lk-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(91, 108, 249, 0.12);
  border-color: transparent;
}

.lk-stat__icon-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* icon-satisfaction.svg a plus de marge interne : on l'agrandit
   à 80px pour un rendu visuellement équivalent aux 3 autres */
.lk-stat__icon-img--lg {
  width: 80px;
  height: 80px;
}

.lk-stat__number {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0A1628;
  line-height: 1.05;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

.lk-stat__label {
  font-size: 15px;
  color: #64748B;
}

/* Fade-in pour la card sans compteur (Monde) */
.lk-stat__number--text {
  opacity: 0;
  transform: translateY(8px);
}

.lk-stats.is-visible .lk-stat__number--text {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* =========================================================
   8. SECTION MARKETPLACES
   ========================================================= */
.lk-integrations {
  background: var(--lk-bg-gray);
  padding: var(--lk-section-pad) 0;
  overflow: hidden;
}

.lk-section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.lk-section-head__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lk-primary);
  margin-bottom: 14px;
}

.lk-section-head__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--lk-text-dark);
  margin: 0 0 16px;
}

.lk-section-head__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--lk-text-body);
  margin: 0;
}

/* Carrousel */
.lk-marquee {
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.lk-marquee + .lk-marquee {
  margin-top: 20px;
}

/* Pas de gap flex : l'espacement vient du margin-right de chaque card,
   pour que -25% corresponde exactement à une période (boucle sans saut) */
.lk-marquee__track {
  display: flex;
  width: max-content;
  animation: lk-marquee 60s linear infinite;
}

.lk-marquee--reverse .lk-marquee__track {
  animation: lk-marquee-rev 60s linear infinite;
}

.lk-marquee:hover .lk-marquee__track {
  animation-play-state: paused;
}

@keyframes lk-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

@keyframes lk-marquee-rev {
  from { transform: translateX(-25%); }
  to   { transform: translateX(0); }
}

.lk-logo-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 140px;
  padding: 24px;
  margin-right: 24px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.lk-logo-card:hover {
  border-color: var(--lk-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(91, 108, 249, 0.12);
}

/* Les fichiers trim-*.png sont recadrés sur le logo visible (sans le
   padding transparent des canvas carrés d'origine) : object-fit contain
   suffit désormais à les afficher en grand */
.lk-logo-card img {
  max-height: 80px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ── Bloc écosystème : texte + illustration 3D ── */
.lk-eco {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.lk-eco__text {
  max-width: 520px;
}

.lk-eco__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--lk-text-dark);
  margin: 14px 0 20px;
}

.lk-eco__title em {
  font-style: normal;
  background: linear-gradient(120deg, #818CF8, #5B6CF9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lk-eco__p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--lk-text-body);
  margin: 0;
}

.lk-eco__visual {
  display: flex;
  justify-content: center;
}

.lk-eco__img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(91, 108, 249, 0.18));
  /* Reveal au scroll (classe .is-visible posée par main.js) */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.lk-eco__img.is-visible {
  opacity: 1;
  transform: translateY(0);
  /* Flottement subtil et continu une fois révélée */
  animation: lk-float 6s ease-in-out 0.7s infinite;
}

@keyframes lk-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  .lk-eco__img {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .lk-eco__img.is-visible {
    animation: none;
  }
}

/* =========================================================
   9. RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .lk-header__nav { display: none; }
  .lk-header__actions { display: none; }
  .lk-hamburger { display: flex; }

  .lk-hero {
    padding-top: calc(var(--lk-header-h) + 56px);
    padding-bottom: 72px;
  }

  .lk-hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .lk-hero__title { font-size: 44px; }

  /* Dashboard centré sous le texte, à plat */
  .lk-hero__visual {
    flex-direction: column;
    align-items: center;
  }

  .lk-dash {
    max-width: 560px;
    margin-inline: auto;
    transform: none;
  }

  /* Les colonnes de grille du hero doivent pouvoir rétrécir sous leur min-content
     (sinon le mock-up impose ~560px et coupe le contenu — cf. mesure de rendu). */
  .lk-hero__content,
  .lk-hero__visual {
    min-width: 0;
  }

  .lk-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  :root { --lk-section-pad: 64px; }

  .lk-hero {
    padding-top: calc(var(--lk-header-h) + 40px);
    padding-bottom: 56px;
  }

  .lk-hero__title { font-size: 34px; }
  .lk-hero__subtitle { font-size: 17px; }

  /* Mobile : mini-widgets masqués, dashboard simplifié pleine largeur */
  .lk-dash {
    max-width: none;
  }

  /* Le mock-up et ses widgets ne peuvent plus imposer leur largeur intrinsèque
     à la colonne de grille : ils se contraignent à la largeur disponible. */
  .lk-dash,
  .lk-mockup,
  .lk-mockup__body,
  .lk-perf {
    max-width: 100%;
    min-width: 0;
  }

  .lk-dash__row { display: none; }

  /* Donut + légende empilés si l'écran est étroit */
  .lk-perf__body {
    flex-wrap: wrap;
    justify-content: center;
  }

  .lk-mockup__body {
    padding: 16px;
  }

  /* Live Orders : scroll horizontal tactile sur mobile (evite la troncature
     des colonnes de droite - statut Express/Relais/Standard). Le clip vertical
     de la ligne sortante est conserve via overflow-y: hidden. */
  .lk-orders {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  /* NB : PAS de table-layout: fixed ici. La cellule .lk-orders__country est un
     <td> en display:flex ; en table-layout:fixed elle n'est plus une table-cell,
     sa largeur est ignorée, la colonne s'effondre et le drapeau tombe à 0px.
     On reste en table-layout:auto ; la stabilité de la taille du drapeau est
     assurée par flex-shrink:0 sur .lk-orders__flag (cf. règle plus haut). */
  .lk-orders table {
    min-width: 340px;
  }

  .lk-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .lk-hero__cta .lk-btn { width: 100%; }

  .lk-stats { padding: 56px 0; }
  .lk-stats__grid { grid-template-columns: 1fr; }
  .lk-stat { padding: 32px 28px; }
  .lk-stat__number { font-size: 40px; }
  .lk-stat__label { font-size: 14px; }

  .lk-section-head__title { font-size: 28px; }
  .lk-section-head__subtitle { font-size: 15.5px; }

  .lk-logo-card {
    width: 220px;
    height: 110px;
    padding: 18px;
    margin-right: 16px;
  }

  .lk-logo-card img {
    max-height: 60px;
    max-width: 170px;
  }

  /* Écosystème : texte au-dessus, illustration en dessous, pleine largeur */
  .lk-eco {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 48px;
    text-align: center;
  }

  .lk-eco__text {
    max-width: none;
  }

  .lk-eco__title { font-size: 28px; }
  .lk-eco__p { font-size: 15.5px; }

  .lk-eco__img {
    max-width: 360px;
  }
}

/* =========================================================
   9b. SECTION "EUROPE" — couverture
   ========================================================= */
.lk-europe {
  background: #fff;
  padding: 100px 0;
}

.lk-europe__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 56px;
}

.lk-europe__left,
.lk-europe__right {
  flex: 1 1 50%;
  min-width: 0;
}

.lk-europe__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lk-section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5B6CF9;
}

.lk-europe__left h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0A1628;
  margin: 0;
}

.lk-europe__left > p {
  font-size: 16px;
  line-height: 1.65;
  color: #64748B;
  margin: 0;
}

.lk-europe__countries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lk-country-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #5B6CF9;
  border-radius: 8px;
  background: #F5F6FF;
  font-size: 15px;
  font-weight: 500;
  color: #0A1628;
}

.lk-country-badge span {
  font-weight: 700;
  color: #5B6CF9;
}

.lk-europe__plus {
  color: #5B6CF9;
  font-weight: 600;
  margin: 0;
}

.lk-europe__map {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.lk-europe__map svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 600px;
}

.lk-europe__dot {
  fill: #fff;
  stroke: #5B6CF9;
  stroke-width: 2.5;
}

.lk-europe__pulse {
  fill: #5B6CF9;
  animation: pulse 2s ease-out infinite;
  animation-delay: var(--d, 0s);
}

@keyframes pulse {
  0%   { r: 5;  opacity: 1; }
  100% { r: 12; opacity: 0; }
}

/* Liaisons animées France -> villes */
.lk-europe__line {
  fill: none;
  stroke: #5B6CF9;
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.5;
  animation: dash 1.4s ease-out forwards;
}

@keyframes dash {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 980px) {
  .lk-europe { padding: 64px 0; }
  .lk-europe__container { flex-direction: column; gap: 40px; }
  .lk-europe__left, .lk-europe__right { flex: 1 1 100%; width: 100%; }
  .lk-europe__left h2 { font-size: 28px; }
}

@media (max-width: 540px) {
  .lk-europe__countries { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .lk-europe__pulse { animation: none; opacity: 0; }
  .lk-europe__line { animation: none; stroke-dashoffset: 0 !important; }
}

/* Dashboard Europe (tableau live — version premium dark, soft) */
.lk-eu-card { background: linear-gradient(135deg, #1a1f4e 0%, #0f1535 100%); border-radius: 20px; overflow: hidden; box-shadow: 0 30px 80px rgba(91,108,249,0.25), 0 0 0 1px rgba(255,255,255,0.06); width: 100%; border: none; position: relative; z-index: 1; }
.lk-eu-header { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.03); }
.lk-eu-dots { display: flex; gap: 5px; }
.lk-eu-dots span { width: 9px; height: 9px; border-radius: 50%; }
.lk-eu-dots span:nth-child(1) { background: #ff5f57; }
.lk-eu-dots span:nth-child(2) { background: #febc2e; }
.lk-eu-dots span:nth-child(3) { background: #28c840; }
.lk-eu-title { color: rgba(255,255,255,0.5); font-size: 11px; flex: 1; text-align: center; letter-spacing: 0.05em; }
.lk-eu-live { display: flex; align-items: center; gap: 5px; font-size: 10px; color: #4ade80; font-weight: 600; }
.lk-eu-pulse { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: lk-pulse 1.5s infinite; }
@keyframes lk-pulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.4;transform:scale(1.5);} }
.lk-eu-stats { display: flex; background: rgba(255,255,255,0.04) !important; border-bottom: 1px solid rgba(255,255,255,0.06); }
.lk-eu-stat { flex: 1; padding: 12px 0; text-align: center; border-right: 1px solid rgba(255,255,255,0.05); }
.lk-eu-stat:last-child { border-right: none; }
.lk-eu-stat-n { font-size: 16px; font-weight: 700; color: white; }
.lk-eu-stat-l { font-size: 9px; color: rgba(255,255,255,0.35); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
/* Reset des bordures globales d'Astra (table,td,th) sur le dashboard */
.lk-eu-table,
.lk-eu-table td,
.lk-eu-table th { border: none; }
.lk-eu-table { width: 100%; border-collapse: collapse; }
.lk-eu-table thead th { font-size: 9px; color: rgba(255,255,255,0.25); font-weight: 500; padding: 8px 14px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.04); text-transform: uppercase; letter-spacing: 0.08em; background: rgba(255,255,255,0.04) !important; }
.lk-eu-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.03); opacity: 0; animation: lk-slidein 0.4s ease forwards; }
.lk-eu-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.lk-eu-table tbody td { padding: 9px 14px; font-size: 12px; color: rgba(255,255,255,0.7); }
.lk-eu-table tbody td:first-child { font-size: 20px; padding-left: 14px; }
.lk-eu-badge { display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: 20px; font-size: 9px; font-weight: 600; background: rgba(74,222,128,0.12); color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
.lk-eu-badge-dot { width: 4px; height: 4px; border-radius: 50%; background: #4ade80; }
.lk-eu-cmd { color: #818CF8 !important; font-weight: 600; }
@keyframes lk-slidein { from{opacity:0;transform:translateX(-8px);}to{opacity:1;transform:translateX(0);} }

/* Halo lumineux derrière le dashboard */
.lk-europe__right { position: relative; }
.lk-europe__right::before { content: ''; position: absolute; top: -40px; right: -40px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(91,108,249,0.15) 0%, transparent 70%); pointer-events: none; z-index: 0; border-radius: 50%; }

/* =========================================================
   9c. SECTION "LA PLATEFORME" — features alternées
   ========================================================= */
.lk-features-alt {
  padding: 100px 0;
  background: #fff;
}
.lk-features-alt__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.lk-features-alt__row {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto 140px;
  padding: 0 60px;
}
.lk-features-alt__row--reverse {
  flex-direction: row-reverse;
}
.lk-features-alt__img {
  flex: 1.5;
  position: relative;
}
.lk-features-alt__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  /* fondu conservé mais atténué (~moitié) : démarre plus bas, ne blanchit plus à fond */
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 75%,
    rgba(255,255,255,0.45) 100%
  ),
  linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 82%,
    rgba(255,255,255,0.35) 100%
  );
  pointer-events: none;
}
.lk-features-alt__img img {
  width: 100%;
  border-radius: 16px;
  /* ombre plus marquée pour détacher la capture du fond (profondeur premium) */
  box-shadow: 0 20px 50px rgba(26, 31, 78, 0.18);
  /* fine bordure pour définir les bords sur fond clair */
  border: 1px solid rgba(26, 31, 78, 0.06);
  display: block;
  /* réveille les captures pâles (léger boost contraste + saturation) */
  filter: contrast(1.08) saturate(1.06);
}
.lk-features-alt__content {
  flex: 1;
}
.lk-features-alt__content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #1a1a2e;
  line-height: 1.3;
}
.lk-features-alt__content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.lk-features-alt__content ul li {
  padding-left: 28px;
  position: relative;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}
.lk-features-alt__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #5B6CF9;
  border-radius: 50%;
}

@media (max-width: 980px) {
  .lk-features-alt { padding: 64px 0; }
  .lk-features-alt__header { margin: 0 auto 48px; padding: 0 24px; }
  .lk-features-alt__row,
  .lk-features-alt__row--reverse {
    flex-direction: column;
    gap: 32px;
    margin: 0 auto 56px;
    padding: 0 24px;
  }
  .lk-features-alt__content h3 { font-size: 23px; margin-bottom: 16px; }
}

/* =========================================================
   9d. SECTION "TÉMOIGNAGES"
   ========================================================= */
.lk-testimonials { padding: 100px 0; background: #fff; }
.lk-testimonials__container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.lk-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.lk-testi-card { background: #fff; border-radius: 16px; padding: 28px; border: 1px solid #EEF1FF; box-shadow: 0 8px 24px rgba(91,108,249,0.08); display: flex; flex-direction: column; gap: 16px; transition: transform 0.2s, box-shadow 0.2s; min-height: 380px; }
.lk-testi-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(91,108,249,0.16); }
/* Note 5 étoiles dorées */
.lk-testi-stars { color: #FBBF24; font-size: 16px; letter-spacing: 2px; line-height: 1; }
.lk-testi-quote { font-size: 15px; line-height: 1.7; color: #374151; font-style: italic; flex: 1; }
/* Bloc identité client : logo à gauche, infos à droite */
.lk-testi-author { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 20px; border-top: 1px solid #EEF1FF; }
.lk-testi-logo { width: 48px; height: 48px; flex-shrink: 0; object-fit: contain; background: #fff; border: 1px solid #EEF1FF; border-radius: 10px; padding: 4px; }
.lk-testi-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.lk-testi-company { font-weight: 700; font-size: 15px; color: #1a1f4e; }
.lk-testi-meta { font-size: 12.5px; line-height: 1.45; color: #6B7280; }

@media (max-width: 980px) {
  .lk-testimonials { padding: 64px 0; }
  .lk-testimonials__container { padding: 0 24px; }
  .lk-testimonials__grid { grid-template-columns: 1fr; gap: 20px; }
  .lk-testimonials h2 { margin-bottom: 40px !important; }
}

/* =========================================================
   9e. SECTION "FAQ"
   ========================================================= */
.lk-faq { padding: 100px 0; background: #fff; }
.lk-faq__container { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.lk-faq__list { display: flex; flex-direction: column; gap: 12px; }
.lk-faq__item { background: #F8F9FF; border-radius: 12px; border: 1px solid #E2E5FF; overflow: hidden; transition: box-shadow 0.2s; }
.lk-faq__item:hover { box-shadow: 0 4px 20px rgba(91,108,249,0.08); }
.lk-faq__item.active { border-color: #5B6CF9; box-shadow: 0 4px 20px rgba(91,108,249,0.12); }
.lk-faq__question { width: 100%; background: none; border: none; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 15px; font-weight: 600; color: #1a1a2e; text-align: left; gap: 20px; transition: color 0.2s; }
.lk-faq__item.active .lk-faq__question { color: #5B6CF9; }
.lk-faq__icon { width: 28px; height: 28px; border-radius: 50%; background: white; border: 1px solid #E2E5FF; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #5B6CF9; font-weight: 300; transition: transform 0.3s, background 0.2s; flex-shrink: 0; line-height: 1; }
.lk-faq__item.active .lk-faq__icon { background: #5B6CF9; color: white; border-color: #5B6CF9; transform: rotate(45deg); }
.lk-faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.lk-faq__answer.open { max-height: 300px; padding-bottom: 24px; }
.lk-faq__answer p { font-size: 14px; line-height: 1.8; color: #666; margin: 0; padding: 0 24px; border-top: 1px solid #E2E5FF; padding-top: 16px; }

@media (max-width: 980px) {
  .lk-faq { padding: 64px 0; }
  .lk-faq__container { padding: 0 24px; }
  .lk-faq h2 { margin-bottom: 40px !important; }
}

/* =========================================================
   10. SECTION "LES ÉTAPES"
   ========================================================= */
.lk-steps {
  background-color: #F8FAFC;
  background-image: radial-gradient(rgba(91, 108, 249, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: var(--lk-section-pad) 0;
}

.lk-steps__inner {
  display: grid;
  grid-template-columns: 2fr 3fr; /* 40% / 60% */
  gap: 64px;
  align-items: start;
}

/* Colonne gauche — sticky au scroll */
.lk-steps__intro {
  position: sticky;
  top: calc(var(--lk-header-h) + 32px);
}

.lk-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5B6CF9;
  margin-bottom: 16px;
}

.lk-steps__title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0A1628;
  margin: 0 0 20px;
}

.lk-steps__text {
  font-size: 17px;
  line-height: 1.7;
  color: #64748B;
  margin: 0 0 32px;
}

/* CTA outline → filled au hover */
.lk-btn--outline-primary {
  background: transparent;
  border-color: #5B6CF9;
  color: #5B6CF9;
}

.lk-btn--outline-primary:hover {
  background: #5B6CF9;
  border-color: #5B6CF9;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 108, 249, 0.3);
}

/* Colonne droite — grille de cards */
.lk-steps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lk-feature {
  background: #fff;
  border: 1px solid #F1F5F9;
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.lk-feature:hover {
  border-color: #5B6CF9;
  box-shadow: 0 12px 30px rgba(91, 108, 249, 0.12);
  transform: translateY(-4px);
}

.lk-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #fff;
}

.lk-feature__icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.lk-feature__icon--blue  { background: linear-gradient(135deg, #5B6CF9, #818CF8); }
.lk-feature__icon--green { background: linear-gradient(135deg, #10B981, #34D399); }
.lk-feature__icon--amber { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.lk-feature__icon--pink  { background: linear-gradient(135deg, #EC4899, #F472B6); }

.lk-feature__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: #0A1628;
  margin: 20px 0 12px;
}

.lk-feature__text {
  font-size: 15px;
  line-height: 1.6;
  color: #64748B;
  margin: 0;
}

/* =========================================================
   10b. SECTION CROISSANCE — 3 cards pastel
   ========================================================= */
.lk-growth {
  background: #fff;
  padding: var(--lk-section-pad) 0;
}

.lk-growth .lk-section-head {
  max-width: 760px;
}

.lk-growth__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.lk-gcard {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lk-gcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.08);
}

.lk-gcard--blue   { background: #EFF6FF; }
.lk-gcard--yellow { background: #FEF9EC; }
.lk-gcard--pink   { background: #FDF2F4; }

.lk-gcard__illu {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.lk-gcard__num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0A1628;
  line-height: 1.1;
  margin-bottom: 10px;
}

.lk-gcard__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--lk-text-body);
  margin: 0;
}

/* Card 2 — mini reviews superposées */
.lk-reviews {
  position: relative;
  width: 210px;
  height: 130px;
}

.lk-review {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.1);
}

.lk-review--back {
  top: 0;
  right: 0;
  transform: rotate(2deg);
  opacity: 0.85;
}

.lk-review--front {
  bottom: 0;
  left: 0;
  transform: rotate(-2deg);
  z-index: 1;
}

.lk-review__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.lk-review__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lk-review__stars {
  color: #FBBF24;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}

.lk-review__line {
  display: block;
  height: 7px;
  background: #E2E8F0;
  border-radius: 4px;
}

/* Card 3 — grille transporteurs */
.lk-carriers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 260px;
}

.lk-carrier-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.07);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-family: var(--lk-font);
}

/* Logos transporteurs : largeur auto + plafond de sécurité.
   La hauteur de chaque logo reste pilotée par l'attribut height="" du HTML
   (pas de height:auto ici, sinon il écraserait ces attributs). */
.lk-carrier-chip img {
  width: auto;
  max-height: 40px;
  object-fit: contain;
}

/* =========================================================
   11. FORMULAIRE DEVIS
   ========================================================= */
.lk-quote {
  background: var(--lk-bg-gray);
  padding: var(--lk-section-pad) 0;
}

/* Accroche au-dessus du formulaire de devis : un peu plus grande, "30 %" en accent */
.lk-quote__lead {
  font-size: 18px;
}
.lk-quote__lead strong {
  color: var(--lk-primary);
  font-weight: 700;
}

.lk-quote__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.06), 0 24px 64px rgba(10, 22, 40, 0.12);
}

.lk-quote__left {
  background: #EFF6FF;
  padding: 40px;
}

.lk-quote__right {
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.lk-quote__col-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lk-text-dark);
  margin: 0 0 28px;
}

/* Honeypot — hors écran */
.lk-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Champs génériques — espacement uniforme ── */
.lk-field {
  margin-bottom: 20px;
}

.lk-field:last-of-type {
  margin-bottom: 0;
}

.lk-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.lk-req {
  color: var(--lk-primary);
  margin-left: 2px;
}

.lk-input {
  width: 100%;
  font-family: var(--lk-font);
  font-size: 15px;
  color: var(--lk-text-dark);
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lk-input::placeholder {
  color: var(--lk-text-muted);
}

.lk-input:focus {
  outline: none;
  border-color: var(--lk-primary);
  box-shadow: 0 0 0 3px rgba(91, 108, 249, 0.12);
}

.lk-select {
  appearance: none;
  -webkit-appearance: none;
  min-height: 48px;
  height: auto;
  line-height: normal;
  font-size: 15px;
  padding: 12px 44px 12px 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.lk-field__error {
  font-size: 13px;
  color: var(--lk-red);
  margin: 8px 0 0;
}

/* ── Slider volume ── */
/* La valeur est affichée AU-DESSUS de la barre : la barre garde
   une largeur 100% stable quelle que soit la longueur du texte */
.lk-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}

.lk-slider-header .lk-label {
  margin-bottom: 0;
}

.lk-slider-value {
  font-weight: 700;
  color: #5B6CF9;
  font-size: 16px;
  min-width: 220px;
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.lk-slider {
  display: block;
}

.lk-slider input[type="range"] {
  width: 100%;
}

/* L'input EST le track : le JS pose un linear-gradient inline en
   background à chaque input, donc la couleur suit le curseur partout.
   !important sur les propriétés structurelles pour neutraliser Astra —
   JAMAIS sur background (sinon le gradient inline JS serait écrasé). */
.lk-quote__card .lk-slider input[type="range"] {
  flex: 1;
  -webkit-appearance: none !important;
  appearance: none !important;
  height: 6px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 3px;
  outline: none;
  background: #E5E7EB; /* fallback — écrasé par le gradient inline JS */
  cursor: pointer;
}

.lk-quote__card .lk-slider input[type="range"]:focus-visible {
  outline: 2px solid var(--lk-primary);
  outline-offset: 6px;
}

/* Chrome / Edge / Safari */
.lk-quote__card .lk-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 3px;
  background: transparent;
}

.lk-quote__card .lk-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 22px;
  height: 22px;
  margin-top: -8px; /* (6px track - 22px thumb) / 2 */
  border-radius: 50%;
  background: #fff;
  border: 3px solid #5B6CF9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.lk-quote__card .lk-slider input[type="range"]:hover::-webkit-slider-thumb {
  transform: scale(1.1);
}

/* Firefox */
.lk-quote__card .lk-slider input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: transparent;
}

.lk-quote__card .lk-slider input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #5B6CF9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.lk-quote__card .lk-slider input[type="range"]:hover::-moz-range-thumb {
  transform: scale(1.1);
}

/* ── Checkbox ── */
.lk-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #374151;
  cursor: pointer;
}

.lk-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--lk-primary);
  cursor: pointer;
}

/* ── Compteur — uniformité 44px forcée (Astra style les inputs
   number avec padding/height : on neutralise avec !important) ── */
.lk-counter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lk-counter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  box-sizing: border-box;
  background: var(--lk-primary);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lk-counter__btn:hover {
  background: var(--lk-primary-dark);
}

.lk-counter__input {
  width: 80px !important;
  height: 44px !important;
  min-height: 0 !important;
  box-sizing: border-box !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 8px;
  background: #fff;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center;
  font-family: var(--lk-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 44px !important;
  color: var(--lk-text-dark);
  -moz-appearance: textfield;
}

.lk-counter__input::-webkit-outer-spin-button,
.lk-counter__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.lk-counter__input:focus {
  outline: none;
  border-color: var(--lk-primary) !important;
  box-shadow: 0 0 0 3px rgba(91, 108, 249, 0.12);
}

/* ── Cards taille produit — 4 colonnes égales sans débordement ── */
.lk-sizes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.lk-size {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 8px 12px;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  color: #64748B;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.lk-size:hover {
  border-color: #C7D2FE;
}

.lk-size input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lk-size svg {
  margin-bottom: 4px;
}

.lk-size__name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lk-text-dark);
}

.lk-size__ex {
  font-size: 11px;
  color: var(--lk-text-muted);
}

.lk-size:has(input:checked) {
  border-color: var(--lk-primary);
  background: #EEF2FF;
  color: var(--lk-primary);
}

.lk-size:has(input:focus-visible) {
  outline: 2px solid var(--lk-primary);
  outline-offset: 2px;
}

/* ── Pills intérêts ── */
.lk-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lk-pill {
  cursor: pointer;
}

.lk-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lk-pill span {
  display: inline-block;
  padding: 9px 18px;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--lk-radius-full);
  font-size: 13.5px;
  font-weight: 500;
  color: #374151;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lk-pill:hover span {
  border-color: #C7D2FE;
}

.lk-pill input:checked + span {
  background: var(--lk-primary);
  border-color: var(--lk-primary);
  color: #fff;
}

.lk-pill input:focus-visible + span {
  outline: 2px solid var(--lk-primary);
  outline-offset: 2px;
}

/* ── Multi-select pays avec tags ── */
.lk-countries {
  position: relative;
}

.lk-countries__control {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lk-countries.is-open .lk-countries__control,
.lk-countries__control:focus-visible {
  outline: none;
  border-color: var(--lk-primary);
  box-shadow: 0 0 0 3px rgba(91, 108, 249, 0.12);
}

.lk-countries__tags {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

.lk-countries__placeholder {
  font-size: 15px;
  color: var(--lk-text-muted);
}

.lk-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px 4px 10px;
  background: rgba(91, 108, 249, 0.12);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--lk-primary);
  white-space: nowrap;
}

.lk-tag__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: none;
  border: none;
  border-radius: 4px;
  padding: 0;
  color: var(--lk-primary);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lk-tag__remove:hover {
  background: rgba(91, 108, 249, 0.2);
}

.lk-countries__count {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--lk-text-muted);
  white-space: nowrap;
}

.lk-countries__chevron {
  flex-shrink: 0;
  color: var(--lk-text-muted);
  transition: transform 0.2s ease;
}

.lk-countries.is-open .lk-countries__chevron {
  transform: rotate(180deg);
}

.lk-countries__list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.14);
  max-height: 264px;
  overflow-y: auto;
}

.lk-countries__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  background: none;
  border: none;
  border-radius: 6px;
  font-family: var(--lk-font);
  font-size: 14.5px;
  color: var(--lk-text-dark);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lk-countries__option:hover {
  background: #F1F5F9;
}

.lk-countries__option.is-selected {
  background: rgba(91, 108, 249, 0.1);
  color: var(--lk-primary);
  font-weight: 600;
}

.lk-countries__option.is-selected::after {
  content: '✓';
  font-size: 13px;
}

.lk-countries__option:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── Téléphone ── */
.lk-phone {
  display: flex;
  align-items: stretch;
}

.lk-phone__prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--lk-bg-gray);
  border: 1px solid #E5E7EB;
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 14.5px;
  color: #374151;
  white-space: nowrap;
}

.lk-phone__input {
  border-radius: 0 8px 8px 0;
}

/* ── Submit ── */
.lk-quote__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding: 16px;
  background: var(--lk-primary);
  border: none;
  border-radius: var(--lk-radius-full);
  font-family: var(--lk-font);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(91, 108, 249, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lk-quote__submit:hover {
  background: #4A5AE8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(91, 108, 249, 0.45);
}

/* ── Succès / erreur ── */
.lk-quote__success {
  max-width: 560px;
  margin: 0 auto;
  padding: 64px 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.06), 0 24px 64px rgba(10, 22, 40, 0.12);
  text-align: center;
}

.lk-quote__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #D1FAE5;
  color: #059669;
  margin-bottom: 20px;
}

.lk-quote__success-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--lk-text-dark);
  margin: 0 0 8px;
}

.lk-quote__success-text {
  font-size: 16.5px;
  color: var(--lk-text-body);
  margin: 0;
}

.lk-quote__error {
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 14px 20px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  font-size: 14.5px;
  color: #B91C1C;
  text-align: center;
}

.lk-quote__error a {
  color: #B91C1C;
  font-weight: 600;
}

/* =========================================================
   13. CTA FINALE — carte gradient arrondie
   ========================================================= */
.lk-cta {
  background: var(--lk-bg-gray);
  padding: 0 0 100px;
}

.lk-cta__box {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
  background: linear-gradient(135deg, #5B6CF9 0%, #7C3AED 100%);
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
}

/* Motif subtil en overlay */
.lk-cta__box::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='2' cy='2' r='1.5' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 32px 32px;
  pointer-events: none;
}

.lk-cta__box > * {
  position: relative;
}

.lk-cta__title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
}

.lk-cta__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 36px;
}

.lk-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--lk-font);
  font-size: 16px;
  font-weight: 600;
  color: #5B6CF9;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lk-cta__btn:hover {
  color: #5B6CF9;
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.3);
}

/* Lien secondaire sous le bouton CTA : propre ligne, centré */
.lk-cta__link {
  display: block;
  text-align: center;
  margin: 18px auto 0;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.9;
  font-size: 14px;
  transition: opacity 0.2s ease;
}
.lk-cta__link:hover { opacity: 1; color: #fff; }

/* =========================================================
   14. RESPONSIVE — nouvelles sections
   ========================================================= */
@media (max-width: 1024px) {
  .lk-steps__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Plus de sticky en 1 colonne */
  .lk-steps__intro {
    position: static;
  }

  .lk-steps__title { font-size: 34px; }
}

@media (max-width: 768px) {
  .lk-steps__title { font-size: 30px; }

  .lk-steps__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lk-feature {
    padding: 26px 22px;
  }

  .lk-cta { padding: 0 16px 64px; }
  .lk-cta__box { padding: 48px 24px; border-radius: 18px; }
  .lk-cta__title { font-size: 28px; }
  .lk-cta__subtitle { font-size: 16px; }
  .lk-cta__btn { width: 100%; }
}

/* Responsive croissance + formulaire devis */
@media (max-width: 1024px) {
  .lk-growth__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .lk-quote__card {
    grid-template-columns: 1fr;
  }

  .lk-quote__left,
  .lk-quote__right {
    padding: 40px 32px;
  }

  /* Colonnes empilées : la colonne droite n'a plus de hauteur excédentaire,
     donc margin-top:auto ne pousse plus le bouton -> il se colle au dernier
     champ (margin-bottom:0). On rétablit un espacement explicite, cohérent
     avec le gap inter-champs (.lk-field margin-bottom: 20px). */
  .lk-quote__submit {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .lk-gcard {
    padding: 28px 24px;
  }

  .lk-gcard__num {
    font-size: 30px;
  }

  .lk-quote__left,
  .lk-quote__right {
    padding: 32px 20px;
  }

  .lk-sizes {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Valeur du slider sous le label sur petit écran */
  .lk-slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .lk-slider-value {
    min-width: 0;
    text-align: left;
    font-size: 15px;
  }
}

/* =========================================================
   15. FOOTER
   ========================================================= */
.lk-footer {
  background: var(--lk-navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
}

.lk-footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}

/* Colonne marque */
.lk-footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}

.lk-footer__logo img {
  height: 32px;
  width: auto;
  display: block;
}

.lk-footer__tagline {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
}

.lk-footer__desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  margin: 0 0 24px;
}

.lk-footer__social {
  display: flex;
  gap: 14px;
}

.lk-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.lk-footer__social a:hover {
  color: var(--lk-primary);
  border-color: var(--lk-primary);
  background: rgba(91, 108, 249, 0.1);
}

/* Colonnes liens */
.lk-footer__heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 0 20px;
}

.lk-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lk-footer__links a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.lk-footer__links a:hover {
  color: #fff;
}

/* Colonne contact */
.lk-footer__contact-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
}

.lk-footer__contact-line svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.lk-footer__login {
  margin-top: 24px;
}

/* Barre du bas */
.lk-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lk-footer__copy {
  font-size: 13.5px;
  margin: 0;
}

.lk-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.lk-footer__legal a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.lk-footer__legal a:hover {
  color: #fff;
}

/* Responsive footer */
@media (max-width: 1024px) {
  .lk-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
  }

  .lk-footer__brand {
    grid-column: 1 / -1;
  }
}

/* Tablette / petit écran : footer plus compact (desktop >900px inchangé) */
@media (max-width: 900px) {
  .lk-footer {
    padding: 44px 0 28px;
  }

  .lk-footer__grid {
    gap: 32px 28px;
    padding-bottom: 36px;
  }

  .lk-footer__desc {
    margin-bottom: 18px;
  }

  .lk-footer__heading {
    margin-bottom: 14px;
  }

  .lk-footer__login {
    margin-top: 18px;
  }

  .lk-footer__bottom {
    padding-top: 24px;
  }
}

@media (max-width: 768px) {
  .lk-footer {
    padding: 40px 0 24px;
  }

  .lk-footer__grid {
    grid-template-columns: 1fr;
    /* colonnes empilées : espacement resserré */
    gap: 24px;
    padding-bottom: 28px;
  }

  /* on resserre l'ensemble mais on garde des liens lisibles/tappables (>=14px) */
  .lk-footer__links {
    gap: 14px;
  }

  .lk-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
  }

  .lk-footer__legal {
    gap: 16px 20px;
  }
}

/* =========================================================
   FONDS ALTERNÉS — rythme visuel
   ========================================================= */
.lk-integrations,
.lk-europe,
.lk-features-alt {
  background-color: #F8F9FF;
}

/* =========================================================
   PAGES INTÉRIEURES CLAIRES — header opaque dès le chargement
   ========================================================= */
body.lk-interior .lk-header {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* =========================================================
   PAGE — MENTIONS LÉGALES (et pages légales similaires)
   ========================================================= */
.lk-legal {
  background: #fff;
  /* dégage le header fixe + marge de lecture */
  padding: calc(var(--lk-header-h) + 64px) 0 96px;
}

.lk-legal__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  font-family: var(--lk-font);
  color: var(--lk-text-body);
  font-size: 16px;
  line-height: 1.8;
}

.lk-legal__title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--lk-text-dark);
  margin: 0 0 32px;
}

/* Mention « version française fait foi » — note discrète (pages légales) */
.lk-legal__notice {
  font-size: 13.5px;
  color: var(--lk-text-muted, #6b7280);
  border-left: 3px solid rgba(91, 108, 249, 0.35);
  padding: 8px 14px;
  margin: 0 0 24px;
  background: rgba(91, 108, 249, 0.05);
  border-radius: 4px;
}

.lk-legal h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--lk-primary);
  margin: 48px 0 14px;
}

.lk-legal h3 {
  font-size: 17.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--lk-text-dark);
  margin: 28px 0 10px;
}

.lk-legal p {
  margin: 0 0 18px;
}

.lk-legal ul {
  margin: 0 0 18px;
  padding-left: 22px;
  list-style: disc;
}

.lk-legal li {
  margin-bottom: 8px;
}

.lk-legal strong {
  color: var(--lk-text-dark);
  font-weight: 600;
}

.lk-legal a {
  color: var(--lk-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.lk-legal a:hover {
  color: var(--lk-primary-dark);
}

.lk-legal em {
  color: var(--lk-text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .lk-legal {
    padding: calc(var(--lk-header-h) + 40px) 0 64px;
  }

  .lk-legal__container {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .lk-legal__title { font-size: 32px; }
  .lk-legal h2 { font-size: 19px; margin-top: 38px; }
  .lk-legal h3 { font-size: 16.5px; margin-top: 24px; }
}

/* =========================================================
   COMMENT ÇA MARCHE — hero + timeline 6 étapes
   ========================================================= */

/* ── Hero sombre ── */
.lk-htw-hero {
  background: linear-gradient(160deg, #1a1f4e 0%, #0f1535 100%);
  color: #fff;
  text-align: center;
  padding: calc(var(--lk-header-h) + 80px) 0 96px;
}

.lk-htw-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A5B4FC;
  margin-bottom: 16px;
}

.lk-htw-hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 780px;
  margin: 0 auto 20px;
}

/* Bouton secondaire du hero : outline clair bien visible sur fond sombre */
.lk-htw-hero .lk-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.lk-htw-hero .lk-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.lk-htw-hero__sub {
  font-size: 18.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  margin: 0 auto 36px;
}

.lk-htw-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ── Timeline : 2 couches de ligne + numéros ── */
.lk-htw-timeline {
  position: relative;
  background: #FAFBFF;
}

/* Couche commune (position/dimension) */
.lk-htw-line-bg,
.lk-htw-line-fill {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  border-radius: 3px;
  pointer-events: none;
}

/* Ligne "vide" grise, pleine hauteur */
.lk-htw-line-bg {
  bottom: 0;
  background: #E5E7FF;
  z-index: 0;
}

/* Ligne "remplie" violette : hauteur pilotée au scroll par JS */
.lk-htw-line-fill {
  height: 0;
  background: linear-gradient(to bottom, #5B6CF9, #3B82F6);
  z-index: 1;
}

.lk-htw-step {
  position: relative;
  z-index: 1;            /* le contenu passe au-dessus des lignes */
  background: transparent;
  padding: 88px 0 72px;
  text-align: center;
}

/* Numéro — état AFFICHÉ par défaut = actif (fallback no-JS / reduced-motion).
   Quand JS active l'animation (.lk-htw-anim), il démarre inactif puis s'active. */
.lk-htw-num {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--lk-font);
  font-size: 19px;
  font-weight: 800;
  z-index: 3;
  color: #fff;
  background: linear-gradient(135deg, #5B6CF9, #3B82F6);
  box-shadow: 0 8px 24px rgba(91, 108, 249, 0.40), 0 0 0 6px rgba(91, 108, 249, 0.08);
  transition: all 0.4s ease;
}

.lk-htw-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lk-primary);          /* #5B6CF9 */
  margin-bottom: 12px;
}

.lk-htw-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--lk-text-dark);
  margin: 0 0 14px;
}

.lk-htw-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--lk-text-body);
  max-width: 620px;
  margin: 0 auto 48px;
}

/* Hub : la hauteur du conteneur est définie par l'image de fond (ratio réel),
   la carte centrale reste donc parfaitement centrée quelle que soit sa taille. */
.lk-htw-hub {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.lk-htw-hub__bg {
  width: 100%;
  height: auto;
  display: block;
}

/* Logo Linkolis superposé pile au centre du décor */
.lk-htw-hub__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: auto;
  z-index: 3;
}

/* ── Étapes alternées (texte / image en zig-zag) ── */
.lk-htw-row {
  display: flex;
  align-items: center;
  gap: 48px;
}

.lk-htw-text {
  flex: 1;
  text-align: left;   /* annule le text-align:center de .lk-htw-step */
}

/* Dans une rangée, le sous-titre s'aligne à gauche (pas de centrage auto) */
.lk-htw-row .lk-htw-sub {
  margin: 0;
  max-width: 520px;
}

.lk-htw-media {
  flex: 1;
}

.lk-htw-media > img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Badges "point fort" ── */
.lk-htw-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;   /* centré (étape 1) ; gauche dans les rangées */
  margin-top: 20px;
}

.lk-htw-row .lk-htw-badges { justify-content: flex-start; }

.lk-htw-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--lk-radius-full);
  background: #F0F2FF;
  color: var(--lk-primary);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.lk-htw-badge::before {
  content: "✓";
  font-weight: 700;
}

/* Zig-zag : illustration à gauche, texte à droite */
.lk-htw-row--reverse { flex-direction: row-reverse; }

/* ── Animation au scroll (activée par JS : classe .lk-htw-anim sur la timeline).
   Sans JS / reduced-motion : on reste sur l'état final ci-dessus (tout visible,
   numéros actifs) → fallback accessible. ── */
.lk-htw-anim .lk-htw-step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lk-htw-anim .lk-htw-step.is-visible {
  opacity: 1;
  transform: none;
}

/* Léger décalage de l'image (stagger premium) */
.lk-htw-anim .lk-htw-media {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.12s, transform 0.6s ease 0.12s;
}

.lk-htw-anim .lk-htw-step.is-visible .lk-htw-media {
  opacity: 1;
  transform: none;
}

/* Numéros : inactifs tant que l'étape n'est pas atteinte */
.lk-htw-anim .lk-htw-num {
  color: #94A3B8;
  background: #fff;
  border: 2px solid #E5E7FF;
  box-shadow: none;
}

.lk-htw-anim .lk-htw-num.is-active {
  color: #fff;
  background: linear-gradient(135deg, #5B6CF9, #3B82F6);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(91, 108, 249, 0.40), 0 0 0 6px rgba(91, 108, 249, 0.08);
  transform: translate(-50%, -50%) scale(1.08);
}

/* Sécurité : si l'utilisateur réduit les animations, tout en état final */
@media (prefers-reduced-motion: reduce) {
  .lk-htw-anim .lk-htw-step,
  .lk-htw-anim .lk-htw-media {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .lk-htw-line-fill { height: 100% !important; }
}

/* Empilement + timeline à gauche sous 900px */
@media (max-width: 900px) {
  .lk-htw-row,
  .lk-htw-row--reverse {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  /* Ordre identique partout sur mobile : texte puis image (annule --reverse) */
  .lk-htw-text  { order: 1; }
  .lk-htw-media { order: 2; }

  .lk-htw-text { text-align: center; }

  .lk-htw-row .lk-htw-sub {
    max-width: 620px;
    margin: 0 auto;
  }

  /* badges recentrés sur mobile, y compris dans les rangées */
  .lk-htw-row .lk-htw-badges,
  .lk-htw-badges { justify-content: center; }

  /* Les 2 couches de ligne et les numéros passent à gauche, contenu décalé à droite */
  .lk-htw-step { padding-left: 52px; }
  .lk-htw-line-bg,
  .lk-htw-line-fill { left: 22px; }
  .lk-htw-num { left: 22px; top: 52px; }
}

/* Mobile */
@media (max-width: 768px) {
  .lk-htw-hero { padding: calc(var(--lk-header-h) + 48px) 0 64px; }
  .lk-htw-hero__title { font-size: 32px; }
  .lk-htw-hero__sub   { font-size: 16px; }
  .lk-htw-hero__cta .lk-btn { width: 100%; justify-content: center; }

  .lk-htw-step { padding-top: 72px; padding-bottom: 56px; }
  .lk-htw-title { font-size: 26px; }
  .lk-htw-sub   { font-size: 15.5px; }
  .lk-htw-hub__logo { width: 64px; }
}

/* =========================================================
   POURQUOI LINKOLIS
   ========================================================= */

/* ── Hero sombre ── */
.lk-why-hero {
  background: linear-gradient(160deg, #1a1f4e 0%, #0f1535 100%);
  color: #fff;
  text-align: center;
  padding: calc(var(--lk-header-h) + 80px) 0 96px;
}

.lk-why-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A5B4FC;
  margin-bottom: 16px;
}

.lk-why-hero__title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 820px;
  margin: 0 auto 20px;
}

.lk-why-hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
  margin: 0 auto 36px;
}

.lk-why-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.lk-why-hero .lk-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.lk-why-hero .lk-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

/* Mini-coches sous le sous-titre */
.lk-why-hero__checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin: 0 auto 32px;
  max-width: 760px;
}

.lk-why-check {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--lk-radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13.5px;
  font-weight: 500;
}

.lk-why-check::before {
  content: "✓";
  color: #818CF8;
  font-weight: 700;
}

/* Fine bande de 3 stats sous les boutons */
.lk-why-hero__stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lk-why-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.lk-why-hero__stat strong {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #818CF8, #5B6CF9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lk-why-hero__stat span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Sections génériques ── */
.lk-why-section { padding: 88px 0; }
.lk-why-section--white { background: #FFFFFF; }
.lk-why-section--gray  { background: #F8F9FF; }

.lk-why-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.lk-why-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lk-primary);
  margin-bottom: 12px;
}

.lk-why-h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--lk-text-dark);
  margin: 0 0 14px;
}

/* ── Comparatif sans / avec ── */
.lk-why-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.lk-why-compare__card {
  border-radius: 22px;
  padding: 40px;
}

.lk-why-compare__card--without {
  background: #fff;
  border: 1px solid var(--lk-border);
}

.lk-why-compare__card--with {
  background: linear-gradient(160deg, #5B6CF9 0%, #3B82F6 100%);
  color: #fff;
  border: 1px solid rgba(91, 108, 249, 0.4);
  box-shadow: 0 30px 60px rgba(91, 108, 249, 0.18);
  transform: translateY(-8px);
}

.lk-why-compare__title {
  font-size: 23px;
  font-weight: 700;
  margin: 0 0 26px;
}
.lk-why-compare__card--without .lk-why-compare__title { color: var(--lk-text-dark); }
.lk-why-compare__card--with .lk-why-compare__title { color: #fff; }

.lk-why-compare__list { list-style: none; margin: 0; padding: 0; }

.lk-why-compare__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  font-size: 16px;
  line-height: 1.45;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.lk-why-compare__list li:last-child { border-bottom: 0; }

.lk-why-compare__card--without .lk-why-compare__list li { color: var(--lk-text-body); }
.lk-why-compare__card--with .lk-why-compare__list li {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.lk-why-compare__list li::before {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.lk-why-compare__list--no li::before {
  content: "✕";
  background: #FEE2E2;
  color: #DC2626;
}
.lk-why-compare__list--yes li::before {
  content: "✓";
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* ── Cartes phares (3A) ── */
.lk-why-features {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 64px;
}

.lk-why-feature {
  display: flex;
  align-items: center;
  gap: 48px;
}
.lk-why-feature--reverse { flex-direction: row-reverse; }

/* Illustration : colonne plafonnée à ~42% + image bornée pour éviter le vide */
.lk-why-feature__media { flex: 0 0 42%; }
.lk-why-feature__media img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Texte : prend le reste (~58%), centré verticalement avec l'image */
.lk-why-feature__text { flex: 1; }
.lk-why-feature__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--lk-text-dark);
  margin: 0 0 14px;
}
.lk-why-feature__text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--lk-text-body);
  max-width: 540px;
  margin: 0;
}

/* ── Grille 9 cartes (3B) ── */
.lk-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lk-why-card {
  background: #fff;
  border: 1px solid var(--lk-border-light);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: var(--lk-shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lk-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lk-shadow-card-hover);
}

.lk-why-card__icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
}

.lk-why-card__title {
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--lk-text-dark);
  margin: 0 0 10px;
}

.lk-why-card__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--lk-text-body);
  margin: 0;
}

/* ── Apparition au scroll (gaté par .lk-why-anim, posé par why.js) ──
   Sans JS / reduced-motion : tout reste visible (état final). */
.lk-why-anim .lk-why-feature__media,
.lk-why-anim .lk-why-feature__text,
.lk-why-anim .lk-why-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Stagger : le texte du phare apparaît ~120ms après l'image */
.lk-why-anim .lk-why-feature__text { transition-delay: 0.12s; }

.lk-why-anim .lk-why-feature.is-visible .lk-why-feature__media,
.lk-why-anim .lk-why-feature.is-visible .lk-why-feature__text,
.lk-why-anim .lk-why-card.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .lk-why-anim .lk-why-feature__media,
  .lk-why-anim .lk-why-feature__text,
  .lk-why-anim .lk-why-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Pour qui — cartes segments premium ── */
.lk-why-segments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lk-why-segment {
  background: #fff;
  border: 1px solid #EEF1FF;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(91, 108, 249, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lk-why-segment:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(91, 108, 249, 0.18);
}

.lk-why-segment__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5B6CF9, #3B82F6);
  color: #fff;
  margin-bottom: 18px;
}

.lk-why-segment__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1f4e;
  margin: 0 0 8px;
}

.lk-why-segment__text {
  font-size: 14px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0;
}

/* ── Compatible avec — carrousel défilant (réutilise .lk-marquee de la home).
   Logos en noir & blanc par défaut, couleur au survol. Scopé à .lk-why-logos
   pour ne pas affecter le carrousel de la home. ── */
.lk-why-logos .lk-logo-card img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.lk-why-logos .lk-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ── Bandeau synthèse ── */
.lk-why-summary {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.lk-why-summary p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--lk-text-body);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .lk-why-feature,
  .lk-why-feature--reverse {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .lk-why-feature__media { flex-basis: auto; }     /* annule le 42% en colonne */
  .lk-why-feature__text p { max-width: none; margin: 0 auto; }

  .lk-why-grid     { grid-template-columns: repeat(2, 1fr); }
  .lk-why-segments { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .lk-why-hero { padding: calc(var(--lk-header-h) + 48px) 0 64px; }
  .lk-why-hero__title { font-size: 32px; }
  .lk-why-hero__sub   { font-size: 16px; }
  .lk-why-hero__cta .lk-btn { width: 100%; justify-content: center; }
  .lk-why-hero__stats { gap: 28px; }
  .lk-why-hero__stat strong { font-size: 24px; }

  .lk-why-section { padding: 56px 0; }
  .lk-why-h2 { font-size: 27px; }

  .lk-why-compare { grid-template-columns: 1fr; gap: 20px; }
  .lk-why-compare__card { padding: 32px 24px; }
  .lk-why-compare__card--with { transform: none; }

  .lk-why-grid     { grid-template-columns: 1fr; }
  .lk-why-segments { grid-template-columns: 1fr; }
}

/* =========================================================
   PARCOURS — résumé visuel rapide en 6 étapes (.lk-flow)
   ========================================================= */
.lk-flow {
  background: var(--lk-bg-gray);
  padding: 72px 0;
}

.lk-flow__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.lk-flow__title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--lk-text-dark);
  margin: 0;
}

/* Grille de 6 cartes — desktop : 3 colonnes × 2 lignes */
.lk-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lk-flow-card {
  position: relative;
  background: #fff;
  border: 1px solid #EEF1FF;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(91, 108, 249, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}
.lk-flow-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(91, 108, 249, 0.18);
}

/* Badge numéro 01 → 06 */
.lk-flow-card__num {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5B6CF9, #3B82F6);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

/* Grande illustration centrée, hauteur fixe pour aligner les titres */
.lk-flow-card__media {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.lk-flow-card__media img {
  width: 100%;
  max-width: 220px;
  max-height: 180px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  /* illustrations parfois sur fond blanc non détouré : fond clair => multiply */
  mix-blend-mode: multiply;
}

.lk-flow-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1f4e;
  margin: 0 0 8px;
}

.lk-flow-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: #6B7280;
  margin: 0;
}

.lk-flow__more {
  text-align: center;
  margin-top: 44px;
}

/* Tablette (<1024px) : 2 colonnes */
@media (max-width: 1024px) {
  .lk-flow-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile (<768px) : 1 colonne */
@media (max-width: 768px) {
  .lk-flow { padding: 48px 0; }
  .lk-flow__head { margin-bottom: 32px; }
  .lk-flow__title { font-size: 26px; }

  .lk-flow-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* =========================================================
   POURQUOI LINKOLIS — bande de synthèse fonctionnelle (.lk-feat)
   ========================================================= */
.lk-feat {
  background: #fff;
  padding: 72px 0;
}

.lk-feat__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.lk-feat__title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--lk-text-dark);
  margin: 0;
}

/* Grille 5 colonnes × 2 lignes (desktop) */
.lk-feat-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.lk-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F8F9FF;
  border: 1px solid #EEF1FF;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 4px 14px rgba(91, 108, 249, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lk-feat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(91, 108, 249, 0.14);
}

/* Coche dans une pastille ronde dégradé violet */
.lk-feat-item__check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5B6CF9, #3B82F6);
  color: #fff;
}

.lk-feat-item__label {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.3;
  color: #1a1f4e;
}

.lk-feat__more {
  text-align: center;
  margin-top: 36px;
}

/* Tablette : 3 colonnes */
@media (max-width: 1024px) {
  .lk-feat-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile : 2 colonnes */
@media (max-width: 768px) {
  .lk-feat { padding: 48px 0; }
  .lk-feat__head { margin-bottom: 28px; }
  .lk-feat__title { font-size: 26px; }
  .lk-feat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lk-feat-item { padding: 12px 14px; }
}

/* =========================================================
   Sélecteur de langue Polylang — dropdown (drapeau + nom)
   Header toujours sombre (transparent ou navy) → style clair unique.
   ========================================================= */
.lk-lang { position: relative; display: inline-block; }

.lk-lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 7px 10px;
  font-family: var(--lk-font);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lk-lang__toggle:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.28); }
.lk-lang__flag { font-size: 15px; line-height: 1; }
.lk-lang__chevron { opacity: 0.8; transition: transform 0.2s ease; }
.lk-lang.is-open .lk-lang__chevron { transform: rotate(180deg); }

.lk-lang__menu {
  list-style: none;
  margin: 6px 0 0;
  padding: 6px;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 1100;
  min-width: 172px;
  background: #fff;
  border: 1px solid var(--lk-border-light);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
/* Ouverture : clic (is-open) OU hover/focus clavier (fallback sans JS) */
.lk-lang.is-open .lk-lang__menu,
.lk-lang:hover .lk-lang__menu,
.lk-lang:focus-within .lk-lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lk-lang__item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 14px;
  color: #1a1f4e;
  text-decoration: none;
  transition: background 0.15s ease;
}
.lk-lang__item:hover { background: var(--lk-border-light); color: #1a1f4e; }
.lk-lang__menu .lk-lang__flag { font-size: 16px; }

/* Mobile (dans .lk-mobile-nav__actions) : pleine largeur, menu déroulé sous le bouton */
@media (max-width: 900px) {
  .lk-mobile-nav__actions .lk-lang { display: block; width: 100%; }
  .lk-mobile-nav__actions .lk-lang__toggle { width: 100%; justify-content: center; }
  .lk-mobile-nav__actions .lk-lang__menu { left: 0; right: 0; min-width: 0; }
}

/* =========================================================
   OVERRIDE FINAL — Force largeur de lecture des pages légales
   (placé en toute fin pour gagner sur l'ordre de cascade)
   ========================================================= */

/* Force largeur lecture pages légales */
.lk-legal {
  width: 100% !important;
  max-width: none !important;
  /* garantit un flux block normal : pas de flex/grid qui décalerait le bloc à gauche */
  display: block !important;
  text-align: left !important;
}
.lk-legal__container {
  max-width: 820px !important;
  width: 100% !important;
  /* bloc CENTRÉ horizontalement (espace blanc égal des 2 côtés, plus de bande à droite) */
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
  /* le BLOC est centré mais le TEXTE reste aligné à gauche (lecture naturelle) */
  text-align: left !important;
  /* annule un éventuel float qui collerait le conteneur à gauche */
  float: none !important;
}
/* si un parent imposait un contexte flex/grid, on force le centrage du conteneur */
.lk-legal {
  justify-content: center !important;  /* axe principal si flex */
  align-items: center !important;      /* axe transversal si flex/grid */
}
/* les enfants remplissent toute la largeur du conteneur (aucun max-width résiduel) */
.lk-legal__container > * {
  max-width: 100% !important;
}
/* neutralise toute contrainte de largeur d'un parent Astra sur ces pages */
.lk-page .ast-container,
.lk-page #primary,
.lk-page #content,
.lk-page .entry-content,
.lk-page .site-content { max-width: none !important; width: 100% !important; }
