/* ============================================================
   home-editorial.css — Approche éditoriale bento + ticket
   Hero asymétrique · Marquee · Bento grid · Ticket animé
   Chargé APRÈS design-system.css et rabidpos.css
   ============================================================ */

/* ── Body : fond éditorial + logo watermark ───────────── */
.sh-body {
  position: relative;
  background:
    radial-gradient(1400px 800px at 8% -10%, rgba(0,119,182,0.08), transparent 55%),
    radial-gradient(1100px 600px at 100% 8%, rgba(212,175,55,0.07), transparent 55%),
    linear-gradient(180deg, #FAFBFD 0%, #F3F6FB 100%) !important;
}
.sh-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('/img/rabidpos-logo.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: min(140vmin, 1600px) auto;
  opacity: 0.06;
  filter: grayscale(1) contrast(1.2);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  animation: ed-logo-breathe 14s ease-in-out infinite;
}
@keyframes ed-logo-breathe {
  0%,100% { opacity: 0.06; transform: scale(1); }
  50%     { opacity: 0.09; transform: scale(1.04); }
}
/* Toutes les sections doivent rester au-dessus du watermark */
.sh-body > * { position: relative; z-index: 1; }

/* ── NAV : glass fine + wordmark bold ─────────────────── */
.sh-nav,
.sh-nav.sh-nav-hero,
.sh-nav.kp-nav-dark {
  background: rgba(255,255,255,0.72) !important;
  backdrop-filter: blur(24px) saturate(1.8) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.8) !important;
  border-bottom: 1px solid rgba(15,23,42,0.06) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 8px 30px rgba(15,23,42,0.05) !important;
}
.sh-nav .sh-logo-wordmark,
.sh-nav .sh-nav-link,
.sh-nav .sh-nav-login { color: #0B1220 !important; }
.sh-nav .sh-logo-wordmark { font-weight: 800 !important; letter-spacing: -0.02em !important; }
.sh-nav .sh-nav-link { font-weight: 600 !important; }
.sh-nav .sh-nav-link:hover { color: #0077B6 !important; }
.sh-nav .sh-nav-cta {
  background: #0B1220 !important;
  color: #fff !important;
  border: 0 !important;
  padding: 10px 20px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 24px rgba(11,18,32,0.30), inset 0 1px 0 rgba(255,255,255,0.12) !important;
  transition: transform 200ms cubic-bezier(0.22,1,0.36,1), background 200ms ease !important;
}
.sh-nav .sh-nav-cta:hover { background: #0077B6 !important; transform: translateY(-1px); }
.sh-nav .sh-nav-login {
  background: transparent !important;
  border: 1px solid rgba(11,18,32,0.15) !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
}
.sh-nav .sh-nav-login:hover { border-color: #0B1220 !important; }

/* ═══════════════════════════════════════════════════════
   HERO ÉDITORIAL
   ═══════════════════════════════════════════════════════ */

.sh-hero.kp-hero-dark {
  background: transparent !important;
  color: #0B1220 !important;
  padding: 0 !important;
  min-height: auto !important;
  display: block !important;
  overflow: visible !important;
}
.sh-hero.kp-hero-dark::before,
.sh-hero.kp-hero-dark::after { display: none !important; }
.sh-hero.kp-hero-dark > svg,
.sh-hero.kp-hero-dark > .kp-corner-el,
.sh-hero.kp-hero-dark > .kp-float-el,
.sh-hero.kp-hero-dark > .kp-mouse-grad,
.sh-hero.kp-hero-dark .sh-hero-wave,
.sh-hero.kp-hero-dark > .sh-hero-inner { display: none !important; }

/* Nouveau hero inner injecté à la place de .kp-hero-dark-inner */
.sh-hero.kp-hero-dark .kp-hero-dark-inner { display: none !important; }

.ed-hero {
  position: relative;
  padding: 160px 48px 80px;
  max-width: 1480px;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
}

/* Blobs décoratifs */
.ed-hero::before,
.ed-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}
.ed-hero::before {
  top: -240px; left: -200px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(0,119,182,0.30), transparent 65%);
  animation: ed-drift 20s cubic-bezier(0.65,0,0.35,1) infinite;
}
.ed-hero::after {
  bottom: -280px; right: -240px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(212,175,55,0.26), transparent 65%);
  animation: ed-drift 26s cubic-bezier(0.65,0,0.35,1) infinite reverse;
}
@keyframes ed-drift {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.8; }
  33%     { transform: translate(60px,-40px) scale(1.15); opacity: 1; }
  66%     { transform: translate(-40px,30px) scale(0.92); opacity: 0.7; }
}

/* Kicker */
.ed-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: #fff;
  border: 1px solid rgba(11,18,32,0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #0B1220;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(15,23,42,0.06);
  margin-bottom: 28px;
}
.ed-kicker__pill {
  background: linear-gradient(135deg, #0077B6, #1B4F72);
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ed-kicker__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.18);
  animation: ed-pulse 2s ease-in-out infinite;
}
@keyframes ed-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Layout single column éditorial */
.ed-hero__grid {
  display: block;
  max-width: 1100px;
}

/* Titre massif */
.ed-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(56px, 9vw, 148px);
  line-height: 0.90;
  font-weight: 900;
  letter-spacing: -0.055em;
  color: #0B1220;
  margin: 0;
}
.ed-title__line { display: block; }
.ed-title__line--italic {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #0077B6 0%, #1B4F72 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 12px;
}
.ed-title__line--outline {
  -webkit-text-stroke: 2px #0B1220;
  color: transparent;
}

.ed-sub {
  max-width: 520px;
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.55;
  color: #475569;
  font-weight: 400;
}
.ed-sub strong { color: #0B1220; font-weight: 700; }

/* CTAs */
.ed-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.ed-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 260ms cubic-bezier(0.22,1,0.36,1), box-shadow 260ms, background 260ms;
  font-family: inherit;
}
.ed-cta--primary {
  background: #0B1220;
  color: #fff;
  box-shadow: 0 14px 40px rgba(11,18,32,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.ed-cta--primary:hover { background: #0077B6; transform: translateY(-2px); box-shadow: 0 20px 50px rgba(0,119,182,0.35); }
.ed-cta--ghost {
  background: transparent;
  color: #0B1220;
  border: 1.5px solid rgba(11,18,32,0.20);
}
.ed-cta--ghost:hover { background: #0B1220; color: #fff; transform: translateY(-2px); }
.ed-cta svg { width: 18px; height: 18px; }

/* Stat row sous les CTAs (gauche) */
.ed-statrow {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(11,18,32,0.08);
  width: fit-content;
}
.ed-stat__v {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #0B1220;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #0077B6 0%, #1B4F72 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ed-stat__l {
  font-size: 11px;
  color: #64748B;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ─────────────────────────────────────────────────────
   INDEX éditorial (panneau droit du hero)
   ───────────────────────────────────────────────────── */
.ed-right {
  position: relative;
  padding-top: 24px;
}
.ed-index {
  position: relative;
  padding: 28px 28px 20px;
  background: #fff;
  border: 1px solid rgba(11,18,32,0.08);
  border-radius: 24px;
  box-shadow:
    0 30px 70px rgba(15,23,42,0.10),
    0 10px 24px rgba(15,23,42,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
.ed-index::before {
  content: '';
  position: absolute;
  top: 0; left: 28px;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, #0077B6, #D4AF37);
  border-radius: 0 0 4px 4px;
}
.ed-index__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94A3B8;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(11,18,32,0.12);
  margin-bottom: 6px;
}
.ed-index__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px dashed rgba(11,18,32,0.08);
  text-decoration: none;
  color: #0B1220;
  transition: padding 260ms cubic-bezier(0.22,1,0.36,1),
              color 260ms;
}
.ed-index__item:last-child { border-bottom: 0; }
.ed-index__item:hover {
  padding-left: 10px;
  color: #0077B6;
}
.ed-index__num {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #CBD5E1;
  letter-spacing: 0.02em;
  min-width: 22px;
  transition: color 260ms;
}
.ed-index__item:hover .ed-index__num { color: #0077B6; }
.ed-index__name {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ed-index__arrow {
  color: #CBD5E1;
  transform: translateX(-6px);
  opacity: 0;
  transition: transform 260ms cubic-bezier(0.22,1,0.36,1),
              opacity 260ms,
              color 260ms;
}
.ed-index__item:hover .ed-index__arrow {
  color: #0077B6;
  transform: translateX(0);
  opacity: 1;
}

/* ─────────────────────────────────────────────────────
   TUILES BENTO avec image en fond
   ───────────────────────────────────────────────────── */
.ed-tile--img {
  padding: 0;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.ed-tile__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 900ms cubic-bezier(0.22,1,0.36,1),
              filter 500ms;
  animation: ed-tile-kenburns 20s ease-in-out infinite alternate;
  filter: saturate(1.05);
}
.ed-tile--img:hover .ed-tile__bg {
  transform: scale(1.12);
  filter: saturate(1.15);
}
@keyframes ed-tile-kenburns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1%, -1%); }
}

.ed-tile__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,18,32,0.20) 0%, rgba(11,18,32,0.55) 55%, rgba(11,18,32,0.92) 100%),
    linear-gradient(135deg, rgba(0,119,182,0.35) 0%, transparent 55%);
  transition: opacity 500ms;
}
.ed-tile__veil--amber {
  background:
    linear-gradient(180deg, rgba(120,53,15,0.15) 0%, rgba(120,53,15,0.55) 55%, rgba(120,53,15,0.92) 100%),
    linear-gradient(135deg, rgba(217,119,6,0.35) 0%, transparent 55%);
}
.ed-tile__veil--violet {
  background:
    linear-gradient(180deg, rgba(76,29,149,0.15) 0%, rgba(76,29,149,0.55) 55%, rgba(76,29,149,0.92) 100%),
    linear-gradient(135deg, rgba(124,58,237,0.35) 0%, transparent 55%);
}
.ed-tile__veil--green {
  background:
    linear-gradient(180deg, rgba(6,78,59,0.15) 0%, rgba(6,78,59,0.55) 55%, rgba(6,78,59,0.92) 100%),
    linear-gradient(135deg, rgba(16,185,129,0.35) 0%, transparent 55%);
}

.ed-tile__content {
  position: relative;
  z-index: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 100%;
}
.ed-tile--img .ed-tile__num {
  color: rgba(255,255,255,0.75);
}
.ed-tile--img .ed-tile__title {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.25);
}
.ed-tile--img .ed-tile__desc {
  color: rgba(255,255,255,0.85);
}
.ed-tile--img .ed-tile__cta {
  color: #fff;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  align-self: flex-start;
}
.ed-tile--img .ed-tile__cta svg { color: #fff; }

/* Tuile Hero (Caisse) — override pour image */
.ed-tile--hero.ed-tile--img {
  padding: 0;
}
.ed-tile--hero.ed-tile--img::before { display: none; }
.ed-tile--hero.ed-tile--img .ed-tile__content { padding: 40px; }
.ed-tile--hero.ed-tile--img .ed-tile__title {
  font-size: 56px;
  line-height: 0.95;
}
.ed-tile--hero.ed-tile--img .ed-tile__big {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(64px, 8vw, 140px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  background: linear-gradient(135deg, #fff 0%, #E8C956 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 20px 0 8px;
  text-shadow: none;
}
.ed-tile--hero.ed-tile--img .ed-tile__bigunit {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Entrée séquentielle des tuiles */
.ed-tile {
  animation: ed-tile-in 700ms cubic-bezier(0.22,1,0.36,1) both;
}
.ed-bento .ed-tile:nth-child(1) { animation-delay: 0ms; }
.ed-bento .ed-tile:nth-child(2) { animation-delay: 120ms; }
.ed-bento .ed-tile:nth-child(3) { animation-delay: 240ms; }
.ed-bento .ed-tile:nth-child(4) { animation-delay: 360ms; }
.ed-bento .ed-tile:nth-child(5) { animation-delay: 480ms; }
@keyframes ed-tile-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════
   MARQUEE TICKER
   ═══════════════════════════════════════════════════════ */
.ed-marquee {
  position: relative;
  margin: 60px 0 0;
  padding: 22px 0;
  background: #0B1220;
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ed-marquee::before,
.ed-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.ed-marquee::before { left: 0;  background: linear-gradient(90deg, #0B1220, transparent); }
.ed-marquee::after  { right: 0; background: linear-gradient(-90deg, #0B1220, transparent); }

.ed-marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ed-marquee-scroll 45s linear infinite;
  width: max-content;
}
.ed-marquee:hover .ed-marquee__track { animation-play-state: paused; }
@keyframes ed-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ed-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.ed-marquee__item--brand { color: #E8C956; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.ed-marquee__item--green { color: #6EE7B7; }
.ed-marquee__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0077B6;
  box-shadow: 0 0 12px rgba(0,119,182,0.8);
}

/* ═══════════════════════════════════════════════════════
   BENTO GRID (remplace la section "4 outils")
   ═══════════════════════════════════════════════════════ */
.ed-bento-section {
  padding: 120px 48px;
  max-width: 1480px;
  margin: 0 auto;
  position: relative;
}
.ed-bento-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.ed-bento-head__left { flex: 1 1 480px; }
.ed-bento-head__num {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0077B6;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ed-bento-head__num::before {
  content: '';
  width: 32px; height: 2px;
  background: #0077B6;
}
.ed-bento-head__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #0B1220;
  margin: 0;
}
.ed-bento-head__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #D4AF37 0%, #B8961E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ed-bento-head__desc {
  max-width: 420px;
  font-size: 17px;
  color: #64748B;
  line-height: 1.55;
  margin-top: 0;
}

.ed-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}
.ed-bento--quad {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 360px;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.ed-bento--quad .ed-tile {
  grid-column: span 1;
  grid-row: span 1;
}
.ed-tile {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(11,18,32,0.06);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.03);
  transition: transform 340ms cubic-bezier(0.22,1,0.36,1), box-shadow 340ms;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
}
.ed-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15,23,42,0.10), 0 8px 20px rgba(0,119,182,0.08);
}
.ed-tile__num {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94A3B8;
}
.ed-tile__title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #0B1220;
  margin: 12px 0 8px;
}
.ed-tile__desc {
  font-size: 14px;
  line-height: 1.5;
  color: #64748B;
}
.ed-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #0077B6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ed-tile__cta svg { transition: transform 240ms; }
.ed-tile:hover .ed-tile__cta svg { transform: translateX(4px); }

/* Tuile hero (grande) */
.ed-tile--hero {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, #0B1220 0%, #1B4F72 100%);
  color: #fff;
  padding: 40px;
}
.ed-tile--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 100% 0%, rgba(0,119,182,0.4), transparent 60%),
    radial-gradient(400px 260px at 0% 100%, rgba(212,175,55,0.25), transparent 60%);
  pointer-events: none;
}
.ed-tile--hero > * { position: relative; }
.ed-tile--hero .ed-tile__num { color: rgba(255,255,255,0.55); }
.ed-tile--hero .ed-tile__title { color: #fff; font-size: 56px; line-height: 0.95; }
.ed-tile--hero .ed-tile__desc { color: rgba(255,255,255,0.72); font-size: 16px; max-width: 380px; }
.ed-tile--hero .ed-tile__big {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(64px, 8vw, 140px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  background: linear-gradient(135deg, #fff 0%, #E8C956 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 20px 0 8px;
}
.ed-tile--hero .ed-tile__bigunit {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Tuile wide (petite — 1 col) */
.ed-tile--wide { grid-column: span 1; grid-row: span 1; }
.ed-tile--wide2 { grid-column: span 1; grid-row: span 2; }
.ed-tile--full  { grid-column: span 3; grid-row: span 1; }

/* Accents des tuiles image : bordures subtiles selon thème */
.ed-tile--stock  { border-color: rgba(217,119,6,0.20); }
.ed-tile--team   { border-color: rgba(124,58,237,0.20); }
.ed-tile--analyt { border-color: rgba(16,185,129,0.22); }

/* Tuile full-width (paiement) */
.ed-tile--pay {
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(0,119,182,0.12), transparent 55%),
    #fff;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.ed-tile--pay .ed-tile__title { font-size: 36px; }
.ed-tile--pay__content { flex: 1; }
.ed-tile--pay__logos {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.ed-tile--pay__logo {
  padding: 14px 20px;
  background: #fff;
  border: 1px solid rgba(11,18,32,0.08);
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(15,23,42,0.04);
}
.ed-tile--pay__logo--wave { color: #1DC8CD; }
.ed-tile--pay__logo--om   { color: #F97316; }
.ed-tile--pay__logo--cb   { color: #0B1220; }
.ed-tile--pay__logo--cash { color: #16A34A; }

/* Décoration tuile hero : petites bulles stats */
.ed-tile--hero__badges {
  position: absolute;
  right: 40px;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ed-tile--hero__badge {
  padding: 8px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(10px);
}

/* ═══════════════════════════════════════════════════════
   SECTION TICKET ANIMÉ (signature)
   ═══════════════════════════════════════════════════════ */
.ed-ticket-section {
  padding: 120px 48px;
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(0,119,182,0.08), transparent 60%),
    linear-gradient(180deg, #F3F6FB 0%, #FAFBFD 100%);
  position: relative;
  overflow: hidden;
}
.ed-ticket-section::before {
  content: 'Preuve';
  position: absolute;
  top: 60px;
  right: -60px;
  font-family: 'Poppins', sans-serif;
  font-size: 220px;
  font-weight: 900;
  color: rgba(11,18,32,0.03);
  letter-spacing: -0.04em;
  transform: rotate(-90deg);
  transform-origin: right top;
  pointer-events: none;
  white-space: nowrap;
}

.ed-ticket-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.ed-ticket-copy {
  max-width: 480px;
}
.ed-ticket-copy__kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0077B6;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ed-ticket-copy__kicker::before {
  content: '';
  width: 32px; height: 2px;
  background: #0077B6;
}
.ed-ticket-copy__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #0B1220;
  margin: 0 0 24px;
}
.ed-ticket-copy__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #0077B6 0%, #1B4F72 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ed-ticket-copy__desc {
  font-size: 17px;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 24px;
}
.ed-ticket-copy__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ed-ticket-copy__bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #0B1220;
  font-weight: 500;
}
.ed-ticket-copy__bullet::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0077B6 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/10px no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

/* TICKET papier */
.ed-ticket {
  position: relative;
  background: #FFFFFF;
  padding: 40px 34px 28px;
  font-family: 'Courier New', ui-monospace, monospace;
  color: #0B1220;
  box-shadow:
    0 30px 80px rgba(15,23,42,0.14),
    0 10px 30px rgba(15,23,42,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transform: rotate(-1.5deg);
  transition: transform 500ms cubic-bezier(0.22,1,0.36,1);
}
.ed-ticket:hover { transform: rotate(0deg) scale(1.02); }
/* Bords déchirés en haut et bas */
.ed-ticket::before,
.ed-ticket::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 14px;
  background:
    radial-gradient(circle at 7px 0, transparent 6px, #fff 7px) 0 0/14px 14px;
}
.ed-ticket::before { top: -7px; transform: rotate(180deg); }
.ed-ticket::after  { bottom: -7px; }

.ed-ticket__header {
  text-align: center;
  padding-bottom: 18px;
  border-bottom: 2px dashed rgba(11,18,32,0.2);
  margin-bottom: 18px;
}
.ed-ticket__brand {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #0B1220;
}
.ed-ticket__brand em {
  font-style: normal;
  color: #0077B6;
}
.ed-ticket__sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748B;
  margin-top: 6px;
}
.ed-ticket__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #475569;
  margin-top: 12px;
}

.ed-ticket__items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ed-ticket__line {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 13px;
  border-bottom: 1px dotted rgba(11,18,32,0.12);
  opacity: 0;
  transform: translateX(-12px);
  animation: ed-ticket-print 500ms cubic-bezier(0.22,1,0.36,1) forwards;
}
.ed-ticket__line--anim-1 { animation-delay: 0.3s; }
.ed-ticket__line--anim-2 { animation-delay: 0.55s; }
.ed-ticket__line--anim-3 { animation-delay: 0.80s; }
.ed-ticket__line--anim-4 { animation-delay: 1.05s; }
.ed-ticket__line--anim-5 { animation-delay: 1.30s; }
.ed-ticket__line--anim-6 { animation-delay: 1.55s; }
.ed-ticket__line--anim-7 { animation-delay: 1.80s; }
@keyframes ed-ticket-print {
  to { opacity: 1; transform: translateX(0); }
}
.ed-ticket__line--total {
  border-bottom: none;
  border-top: 2px dashed rgba(11,18,32,0.2);
  padding-top: 12px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  color: #0B1220;
}
.ed-ticket__line--total span:last-child { color: #16A34A; }

.ed-ticket__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 2px dashed rgba(11,18,32,0.2);
  text-align: center;
  font-size: 11px;
  color: #64748B;
  line-height: 1.5;
}
.ed-ticket__barcode {
  display: block;
  margin: 14px auto 8px;
  width: 140px;
  height: 28px;
  background: repeating-linear-gradient(
    90deg,
    #0B1220 0, #0B1220 2px,
    transparent 2px, transparent 4px,
    #0B1220 4px, #0B1220 5px,
    transparent 5px, transparent 9px,
    #0B1220 9px, #0B1220 11px,
    transparent 11px, transparent 13px
  );
}

/* ═══════════════════════════════════════════════════════
   SECTION TICKET — variante WhatsApp
   ═══════════════════════════════════════════════════════ */
.ed-ticket-section--wa {
  background:
    radial-gradient(700px 450px at 75% 10%, rgba(37,211,102,0.10), transparent 60%),
    radial-gradient(600px 400px at 15% 90%, rgba(18,140,126,0.08), transparent 60%),
    linear-gradient(180deg, #F7FBF9 0%, #FAFBFD 100%) !important;
}
.ed-ticket-section--wa::before {
  content: 'WhatsApp' !important;
  color: rgba(37,211,102,0.05) !important;
}
.ed-ticket-section--wa .ed-ticket-copy__kicker {
  color: #128C7E;
}
.ed-ticket-section--wa .ed-ticket-copy__kicker::before { background: #25D366; }
.ed-ticket-section--wa .ed-wa-ico { color: #25D366; }
.ed-ticket-section--wa .ed-ticket-copy__title em {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
}
.ed-ticket-section--wa .ed-ticket-copy__bullet::before {
  background-color: #25D366;
}
.ed-ticket-section--wa .ed-ticket-wrap {
  grid-template-columns: 1fr 340px;
}

/* Badge "Envoyé via WhatsApp" */
.ed-wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 18px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow:
    0 14px 30px -10px rgba(37,211,102,0.55),
    0 4px 12px -4px rgba(37,211,102,0.35);
}
.ed-wa-badge__dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: ed-wa-dot-pulse 1.8s ease-out infinite;
}
@keyframes ed-wa-dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.ed-wa-badge__check { color: #fff; }

/* ─── Phone mockup WhatsApp ──────────────────────────── */
.ed-wa-phone {
  position: relative;
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 320 / 640;
  background: #0B1220;
  border-radius: 38px;
  padding: 12px 10px;
  box-shadow:
    0 40px 80px -20px rgba(15,23,42,0.35),
    0 20px 40px -15px rgba(18,140,126,0.25),
    inset 0 0 0 2px rgba(255,255,255,0.06);
  transform: rotate(2deg);
  transition: transform 500ms cubic-bezier(0.22,1,0.36,1);
}
.ed-wa-phone:hover { transform: rotate(0deg) translateY(-4px); }
.ed-wa-phone__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 20px;
  background: #0B1220;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.ed-wa-phone__screen {
  width: 100%;
  height: 100%;
  background: #ECE5DD;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(18,140,126,0.04) 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(37,211,102,0.03) 2px, transparent 3px);
  background-size: 40px 40px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Header WhatsApp */
.ed-wa-phone__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 28px 12px 10px;
  background: #075E54;
  color: #fff;
}
.ed-wa-phone__back {
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}
.ed-wa-phone__avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}
.ed-wa-phone__who { flex: 1; min-width: 0; }
.ed-wa-phone__name {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ed-wa-phone__status {
  font-size: 10px;
  opacity: 0.75;
}
.ed-wa-phone__icons {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,0.9);
}

/* Chat area */
.ed-wa-phone__chat {
  flex: 1;
  padding: 12px 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.ed-wa-phone__msg {
  max-width: 88%;
  background: #fff;
  border-radius: 8px 8px 8px 2px;
  padding: 6px 8px 4px;
  box-shadow: 0 1px 0.5px rgba(11,20,26,0.13);
  opacity: 0;
  transform: translateY(6px);
  animation: ed-wa-msg-in 400ms cubic-bezier(0.22,1,0.36,1) forwards;
}
.ed-wa-phone__msg--in { animation-delay: 0.3s; }
.ed-wa-phone__msg--ticket {
  padding: 8px;
  background: #fff;
  max-width: 94%;
  animation-delay: 0.8s;
}
@keyframes ed-wa-msg-in {
  to { opacity: 1; transform: translateY(0); }
}
.ed-wa-phone__txt {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  line-height: 1.4;
  color: #0B1220;
}
.ed-wa-phone__time {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  font-size: 9px;
  color: #667781;
  margin-top: 2px;
}

/* Mini ticket dans la bulle WhatsApp */
.ed-wa-mini-ticket {
  background: #FAFAF8;
  border: 1px dashed rgba(11,18,32,0.15);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: 'Courier New', monospace;
  color: #0B1220;
}
.ed-wa-mini-ticket__brand {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}
.ed-wa-mini-ticket__brand em { font-style: normal; color: #0077B6; }
.ed-wa-mini-ticket__sub {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748B;
  text-align: center;
  margin-top: 2px;
}
.ed-wa-mini-ticket__meta {
  font-size: 8px;
  color: #64748B;
  text-align: center;
  margin-top: 2px;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(11,18,32,0.15);
}
.ed-wa-mini-ticket__items {
  list-style: none;
  padding: 6px 0 0;
  margin: 0;
}
.ed-wa-mini-ticket__items li {
  display: flex;
  justify-content: space-between;
  font-size: 8.5px;
  padding: 2px 0;
  border-bottom: 1px dotted rgba(11,18,32,0.10);
}
.ed-wa-mini-ticket__total {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 4px;
  border-top: 1px dashed rgba(11,18,32,0.2);
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 900;
}
.ed-wa-mini-ticket__total span:last-child { color: #16A34A; }
.ed-wa-mini-ticket__foot {
  text-align: center;
  font-size: 8px;
  color: #64748B;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════
   SECTION "COMMENT ÇA MARCHE" : rebrandée éditoriale
   ═══════════════════════════════════════════════════════ */
.sh-howitworks {
  padding: 120px 48px !important;
  background: #FAFBFD !important;
}
.sh-howitworks .sh-section-head {
  max-width: 1400px;
  margin: 0 auto 56px;
  text-align: left !important;
}
.sh-howitworks .sh-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #0077B6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sh-howitworks .sh-section-label::before {
  content: '';
  width: 32px; height: 2px;
  background: #0077B6;
}
.sh-howitworks .sh-section-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(40px, 5.5vw, 72px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  line-height: 1 !important;
  color: #0B1220 !important;
  margin: 18px 0 0 !important;
}
.sh-howitworks .sh-section-title .sh-text-blue {
  font-style: italic;
  font-weight: 500 !important;
  background: linear-gradient(135deg, #0077B6 0%, #1B4F72 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}
.sh-howitworks .sh-steps {
  max-width: 1400px;
  margin: 0 auto;
}
.sh-step {
  position: relative;
  background: #fff !important;
  border: 1px solid rgba(11,18,32,0.06) !important;
  border-radius: 24px !important;
  padding: 36px 32px !important;
  box-shadow: 0 4px 14px rgba(15,23,42,0.04) !important;
  transition: transform 340ms cubic-bezier(0.22,1,0.36,1), box-shadow 340ms !important;
}
.sh-step:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 60px rgba(15,23,42,0.10), 0 8px 18px rgba(0,119,182,0.10) !important;
}
.sh-step .sh-step-num {
  background: transparent !important;
  color: #0B1220 !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 72px !important;
  font-weight: 900 !important;
  letter-spacing: -0.05em !important;
  width: auto !important;
  height: auto !important;
  line-height: 0.9 !important;
  box-shadow: none !important;
  margin-bottom: 8px !important;
  background: linear-gradient(135deg, #0077B6 0%, #1B4F72 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}
.sh-step .sh-step-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #0B1220 !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 10px !important;
}
.sh-step .sh-step-desc {
  font-size: 15px !important;
  color: #64748B !important;
  line-height: 1.6 !important;
}

/* ═══════════════════════════════════════════════════════
   SECTION "POUR QUI" : rebrand éditorial clean
   ═══════════════════════════════════════════════════════ */
.kp-for-section {
  padding: 120px 48px !important;
  background: #fff !important;
}
.kp-for-section .sh-section-head {
  max-width: 1400px;
  margin: 0 auto 56px;
  text-align: left !important;
}
.kp-for-section .sh-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #D97706;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kp-for-section .sh-section-label::before {
  content: '';
  width: 32px; height: 2px;
  background: #D97706;
}
.kp-for-section .sh-section-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(40px, 5.5vw, 72px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  line-height: 1 !important;
  color: #0B1220 !important;
  margin: 18px 0 0 !important;
}
.kp-for-section .sh-section-title .sh-text-gold {
  font-style: italic;
  font-weight: 500 !important;
  background: linear-gradient(135deg, #E8C956 0%, #D4AF37 50%, #B8961E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}
.kp-for-grid {
  max-width: 1400px !important;
  margin: 0 auto !important;
}
.kp-for-card {
  background: #FAFBFD !important;
  border: 1px solid rgba(11,18,32,0.06) !important;
  border-radius: 20px !important;
  transition: transform 340ms cubic-bezier(0.22,1,0.36,1), box-shadow 340ms, border-color 340ms !important;
  box-shadow: 0 2px 6px rgba(15,23,42,0.03) !important;
  backdrop-filter: none !important;
}
.kp-for-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(0,119,182,0.25) !important;
  box-shadow: 0 20px 50px rgba(15,23,42,0.10), 0 6px 16px rgba(0,119,182,0.12) !important;
}
.kp-for-card.kp-for-soon { opacity: 0.55; }
.kp-for-card.kp-for-soon:hover { transform: translateY(-2px) !important; opacity: 0.7; }

/* ═══════════════════════════════════════════════════════
   SECTIONS RESTANTES : harmonisation
   ═══════════════════════════════════════════════════════ */
.kp-compare-section {
  padding: 120px 48px !important;
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(0,119,182,0.06), transparent 55%),
    #FAFBFD !important;
}
.kp-compare-section .sh-section-head {
  max-width: 1400px;
  margin: 0 auto 56px;
  text-align: left !important;
}
.kp-compare-section .sh-section-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(40px, 5.5vw, 72px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  line-height: 1 !important;
  color: #0B1220 !important;
}

.kp-ic-wrap {
  max-width: 1400px !important;
  margin: 0 auto !important;
  border-radius: 24px !important;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(15,23,42,0.14),
    0 10px 30px rgba(0,119,182,0.10),
    inset 0 1px 0 rgba(255,255,255,0.5) !important;
  border: 1px solid rgba(11,18,32,0.08) !important;
}

.sh-features { padding: 120px 48px !important; background: #fff !important; }

/* ═══════════════════════════════════════════════════════
   AUTH SECTION — editorial redesign
   ═══════════════════════════════════════════════════════ */
.sh-auth-section {
  padding: 120px 48px !important;
  background: #fff !important;
  position: relative;
  overflow: hidden;
}
.sh-auth-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(0,119,182,0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.sh-auth-section::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(212,175,55,0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.sh-auth-section .sh-auth-inner { position: relative; z-index: 1; }

/* Pitch left side */
.sh-auth-section .sh-auth-title {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  color: #0B1220 !important;
  font-size: clamp(32px, 4.4vw, 48px) !important;
  line-height: 1.02 !important;
}
.sh-auth-section .sh-auth-sub {
  color: #475569 !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

/* ─── Card ─────────────────────────────────────────────── */
.sh-auth-section .sh-card {
  background: #fff !important;
  border-radius: 28px !important;
  border: 1px solid rgba(11,18,32,0.06) !important;
  box-shadow:
    0 40px 90px -20px rgba(15,23,42,0.22),
    0 18px 40px -20px rgba(0,119,182,0.12),
    inset 0 1px 0 rgba(255,255,255,0.9) !important;
  padding: 36px 34px !important;
  position: relative;
  overflow: hidden;
}
.sh-auth-section .sh-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0077B6 0%, #00A8E8 50%, #D4AF37 100%);
}

/* ─── Tabs ─────────────────────────────────────────────── */
.sh-auth-section .sh-tabs {
  position: relative;
  display: flex;
  gap: 0;
  margin-bottom: 28px !important;
  border-bottom: 1px solid rgba(11,18,32,0.08) !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.sh-auth-section .sh-tab {
  flex: 1;
  background: transparent !important;
  border: none !important;
  padding: 14px 0 !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.02em !important;
  color: #94A3B8 !important;
  cursor: pointer;
  transition: color 0.25s ease !important;
  border-radius: 0 !important;
  position: relative;
}
.sh-auth-section .sh-tab.active {
  color: #0B1220 !important;
  background: transparent !important;
}
.sh-auth-section .sh-tab:hover:not(.active) { color: #475569 !important; }
.sh-auth-section .sh-tab-slider {
  position: absolute;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, #0077B6, #00A8E8) !important;
  border-radius: 2px !important;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), width 0.35s cubic-bezier(0.22,1,0.36,1) !important;
}

/* ─── Panel head ───────────────────────────────────────── */
.sh-auth-section .sh-panel-head { margin-bottom: 22px !important; }
.sh-auth-section .sh-panel-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: #0B1220 !important;
  margin-bottom: 4px !important;
}
.sh-auth-section .sh-panel-sub {
  font-size: 14px !important;
  color: #64748B !important;
}

/* ─── Labels ───────────────────────────────────────────── */
.sh-auth-section .sh-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #475569 !important;
  margin-bottom: 8px !important;
  display: block;
}
.sh-auth-section .sh-req { color: #D4AF37 !important; }

/* ─── Input wrapper + field ────────────────────────────── */
.sh-auth-section .sh-field { margin-bottom: 18px !important; }
.sh-auth-section .sh-input-wrap {
  position: relative;
  background: #F8FAFC !important;
  border: 1.5px solid rgba(11,18,32,0.08) !important;
  border-radius: 14px !important;
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1) !important;
  overflow: hidden;
}
.sh-auth-section .sh-input-wrap:hover {
  background: #fff !important;
  border-color: rgba(0,119,182,0.25) !important;
}
.sh-auth-section .sh-input-wrap:focus-within {
  background: #fff !important;
  border-color: #0077B6 !important;
  box-shadow:
    0 0 0 4px rgba(0,119,182,0.12),
    0 8px 20px -8px rgba(0,119,182,0.25) !important;
  transform: translateY(-1px);
}
.sh-auth-section .sh-input,
.sh-auth-section .sh-select {
  background: transparent !important;
  border: none !important;
  padding: 16px 18px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #0B1220 !important;
  width: 100%;
  outline: none !important;
}
.sh-auth-section .sh-input::placeholder { color: #94A3B8 !important; font-weight: 400 !important; }
.sh-auth-section .sh-input-ico {
  display: flex;
  align-items: center;
  padding-left: 16px;
  color: #94A3B8;
}
.sh-auth-section .sh-input-wrap:focus-within .sh-input-ico { color: #0077B6; }
.sh-auth-section .sh-input-wrap .sh-input-ico + .sh-input { padding-left: 12px !important; }

/* Country code select — tel input */
.sh-auth-section .kp-tel-wrap { display: flex; align-items: stretch; }
.sh-auth-section .kp-cc-select {
  background: transparent !important;
  border: none !important;
  border-right: 1px solid rgba(11,18,32,0.08) !important;
  padding: 0 14px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #0B1220 !important;
  outline: none !important;
  cursor: pointer;
}

/* ─── Submit button ────────────────────────────────────── */
.sh-auth-section .sh-btn-submit {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #0077B6 0%, #005F8E 100%) !important;
  color: #fff !important;
  border: none !important;
  padding: 18px 24px !important;
  border-radius: 14px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 14px 30px -10px rgba(0,119,182,0.55),
    0 4px 12px -4px rgba(0,119,182,0.35),
    inset 0 1px 0 rgba(255,255,255,0.25) !important;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1) !important;
  margin-top: 8px !important;
}
.sh-auth-section .sh-btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}
.sh-auth-section .sh-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px -10px rgba(0,119,182,0.6),
    0 6px 16px -4px rgba(0,119,182,0.45),
    inset 0 1px 0 rgba(255,255,255,0.3) !important;
}
.sh-auth-section .sh-btn-submit:hover::before { transform: translateX(100%); }
.sh-auth-section .sh-btn-submit:active { transform: translateY(0); }
.sh-auth-section .sh-btn-submit svg { transition: transform 0.3s ease; }
.sh-auth-section .sh-btn-submit:hover svg { transform: translateX(4px); }

/* ─── Footer link ──────────────────────────────────────── */
.sh-auth-section .sh-panel-foot {
  text-align: center;
  margin-top: 18px !important;
  font-size: 13px !important;
  color: #64748B !important;
}
.sh-auth-section .sh-panel-foot a {
  color: #0077B6 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  position: relative;
}
.sh-auth-section .sh-panel-foot a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: #0077B6;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.sh-auth-section .sh-panel-foot a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ─── Section heads (inscription form) ─────────────────── */
.sh-auth-section .ins-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #0077B6 !important;
  margin: 22px 0 14px !important;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0,119,182,0.25);
}

/* ─── OTP boxes ────────────────────────────────────────── */
.sh-auth-section .kp-otp-box {
  background: #F8FAFC !important;
  border: 1.5px solid rgba(11,18,32,0.08) !important;
  border-radius: 12px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  color: #0B1220 !important;
  transition: all 0.25s ease !important;
}
.sh-auth-section .kp-otp-box:focus {
  background: #fff !important;
  border-color: #0077B6 !important;
  box-shadow: 0 0 0 4px rgba(0,119,182,0.12) !important;
  outline: none !important;
  transform: translateY(-2px);
}

/* Hide old "feature cinematic" cards section header (remplacé par bento) */
.kp-feat-section { display: none !important; }

/* Divider diagonal avant section Pour qui */
.ed-divider-diag {
  position: relative;
  height: 80px;
  background: #fff;
  overflow: hidden;
}
.ed-divider-diag::before {
  content: '';
  position: absolute;
  inset: -1px 0 auto 0;
  height: 50%;
  background: #FAFBFD;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
}

/* ═══════════════════════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ed-hero { padding: 130px 32px 60px; }
  .ed-hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .ed-right { padding-top: 0; }
  .ed-index { max-width: 560px; }

  .ed-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .ed-bento--quad {
    grid-auto-rows: 320px;
  }
  .ed-tile--hero  { grid-column: span 2; grid-row: span 1; padding: 32px; }
  .ed-tile--hero .ed-tile__title { font-size: 42px; }
  .ed-tile--wide,
  .ed-tile--wide2,
  .ed-tile--full { grid-column: span 2; }
  .ed-tile--pay { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ed-ticket-wrap { grid-template-columns: 1fr; gap: 48px; }
  .ed-ticket-section--wa .ed-ticket-wrap { grid-template-columns: 1fr; }
  .ed-ticket { max-width: 360px; margin: 0 auto; }
  .ed-wa-phone { transform: rotate(0deg); }
}

@media (max-width: 720px) {
  .ed-hero { padding: 110px 18px 40px; }
  .ed-kicker {
    font-size: 11px;
    padding: 6px 12px 6px 6px;
    margin-bottom: 20px;
  }
  .ed-kicker__pill { padding: 4px 9px; font-size: 10px; }
  .ed-kicker span:last-child { display: none; }

  .ed-title {
    font-size: clamp(44px, 13vw, 64px);
    line-height: 0.92;
  }
  .ed-title__line--outline { -webkit-text-stroke-width: 1.5px; }

  .ed-sub { font-size: 16px; margin-top: 22px; }

  .ed-ctas { gap: 10px; margin-top: 28px; }
  .ed-cta { flex: 1; justify-content: center; padding: 16px 20px; font-size: 15px; }

  .ed-statrow {
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
  .ed-stat__v { font-size: 26px; }
  .ed-stat__l { font-size: 10px; }

  /* Index éditorial — mobile */
  .ed-right { margin-top: 8px; padding-top: 0; }
  .ed-index { padding: 22px 22px 14px; border-radius: 20px; }
  .ed-index__label { font-size: 10px; padding-bottom: 12px; }
  .ed-index__item { padding: 14px 4px; gap: 14px; }
  .ed-index__item:hover { padding-left: 6px; }
  .ed-index__num { font-size: 13px; min-width: 20px; }
  .ed-index__name { font-size: 15px; }
  .ed-index__arrow { opacity: 1; transform: translateX(0); } /* toujours visible mobile */

  /* Sections */
  .ed-bento-section,
  .ed-ticket-section { padding: 80px 18px; }
  .ed-bento-head { margin-bottom: 32px; }
  .ed-bento-head__title { font-size: 38px; }
  .ed-bento-head__desc { font-size: 15px; max-width: 100%; }
  .ed-bento { gap: 12px; }
  .ed-tile { padding: 22px; }
  .ed-tile__title { font-size: 22px; }
  .ed-tile--hero { padding: 28px; }
  .ed-tile--hero .ed-tile__title { font-size: 32px; }
  .ed-tile--hero__badges { right: 20px; top: 20px; }
  .ed-tile--hero__badge { font-size: 10px; padding: 6px 10px; }
  .ed-tile--pay__logos { flex-wrap: wrap; }
  .ed-tile--pay__logo { padding: 10px 14px; font-size: 12px; }

  /* Marquee */
  .ed-marquee { padding: 16px 0; }
  .ed-marquee__item { font-size: 12px; }
  .ed-marquee__track { gap: 28px; }
  .ed-marquee::before,
  .ed-marquee::after { width: 60px; }

  /* Ticket */
  .ed-ticket { padding: 30px 22px 20px; transform: rotate(0deg); }
  .ed-ticket__brand { font-size: 18px; }
  .ed-ticket__line { font-size: 12px; }
  .ed-ticket-copy__title { font-size: 34px; }
  .ed-ticket-copy__desc { font-size: 15px; }
  .ed-ticket-section::before { display: none; }

  /* Autres sections */
  .sh-howitworks,
  .kp-for-section,
  .kp-compare-section,
  .sh-features,
  .sh-auth-section { padding: 80px 18px !important; }
  .sh-step .sh-step-num { font-size: 56px !important; }
}
