/* ==========================================================================
   FADJUNA — site institutionnel
   Design system custom au-dessus de Bootstrap 5 (grille/utilitaires only)
   ========================================================================== */

:root {
  --fj-green: #1E9E4F;
  --fj-green-deep: #128047;
  --fj-green-dark: #0F5C38;
  --fj-blue: #1D5FA6;
  --fj-navy: #0D2340;
  --fj-navy-2: #102A4C;
  --fj-navy-dark: #071629;
  --fj-teal: #00677F;
  --fj-gold: #E3A82F;
  --fj-gold-deep: #B8860B;
  --fj-ink: #101B2D;
  --fj-muted: #5C6F7B;
  --fj-muted-2: #8A9EBD;
  --fj-paper: #F6F9FC;
  --fj-paper-2: #EEF3F8;
  --fj-white: #FFFFFF;
  --fj-line: rgba(13, 35, 64, 0.08);

  --fj-grad-brand: linear-gradient(120deg, var(--fj-green) 0%, var(--fj-blue) 100%);
  --fj-grad-navy: linear-gradient(160deg, var(--fj-navy-2) 0%, var(--fj-navy-dark) 100%);
  --fj-grad-gold: linear-gradient(120deg, #F0C05A 0%, var(--fj-gold-deep) 100%);

  --fj-shadow-sm: 0 4px 14px rgba(13, 35, 64, 0.06);
  --fj-shadow-md: 0 14px 40px rgba(13, 35, 64, 0.10);
  --fj-shadow-lg: 0 30px 80px rgba(13, 35, 64, 0.16);
  --fj-shadow-navy: 0 30px 70px rgba(4, 14, 28, 0.45);

  --fj-radius-sm: 14px;
  --fj-radius-md: 22px;
  --fj-radius-lg: 32px;

  --fj-font-head: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --fj-font-body: "Inter", system-ui, -apple-system, sans-serif;

  --container-max: 1280px;
}

/* ── Reset / base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fj-font-body);
  color: var(--fj-ink);
  background: var(--fj-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.lock-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--fj-font-head);
  color: var(--fj-navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}
p { margin: 0; }
.container-fj {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
::selection { background: var(--fj-green); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--fj-paper); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--fj-green), var(--fj-blue)); border-radius: 10px; }

/* ── Type scale ───────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fj-font-head);
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fj-green-deep);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--fj-grad-brand); border-radius: 2px;
}
.eyebrow.on-dark { color: #7FE3B0; }
h2.section-title { font-size: clamp(28px, 4vw, 44px); line-height: 1.12; margin-top: 14px; }
.section-lede { color: var(--fj-muted); font-size: 17px; line-height: 1.65; max-width: 640px; margin-top: 16px; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }
.section-pad { padding: 120px 0; }
@media (max-width: 767px) { .section-pad { padding: 78px 0; } .section-head { margin-bottom: 40px; } }

.text-grad {
  background: var(--fj-grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── Boutons ──────────────────────────────────────────────────────────── */
.btn-fj {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--fj-font-head); font-weight: 700; font-size: 15px;
  padding: 15px 28px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, background .35s, color .35s;
  white-space: nowrap;
}
.btn-fj svg { flex: none; }
.btn-fj.primary {
  background: var(--fj-grad-brand); color: #fff; box-shadow: 0 14px 30px rgba(30, 158, 79, .32);
}
.btn-fj.primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(30, 158, 79, .42); color: #fff; }
.btn-fj.ghost-dark {
  background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
}
.btn-fj.ghost-dark:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); color: #fff; }
.btn-fj.ghost-light {
  background: #fff; color: var(--fj-navy); border: 1.5px solid var(--fj-line); box-shadow: var(--fj-shadow-sm);
}
.btn-fj.ghost-light:hover { transform: translateY(-3px); box-shadow: var(--fj-shadow-md); color: var(--fj-navy); }
.btn-fj.sm { padding: 11px 20px; font-size: 13.5px; }

/* ==========================================================================
   PRELOADER — effet d'entrée
   ========================================================================== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--fj-grad-navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-mark { width: 150px; }
.preloader-mark svg { width: 100%; height: auto; overflow: visible; }
.preloader-ring {
  fill: none; stroke: url(#preload-grad); stroke-width: 8.5; stroke-linecap: round;
  stroke-dasharray: 320; stroke-dashoffset: 320;
  animation: draw-ring 1.35s cubic-bezier(.65,0,.35,1) forwards;
}
.preloader-heart {
  opacity: 0; transform: scale(.3); transform-origin: 54px 33px;
  animation: pop-heart .55s cubic-bezier(.34,1.56,.64,1) .95s forwards;
}
@keyframes draw-ring { to { stroke-dashoffset: 0; } }
@keyframes pop-heart { to { opacity: 1; transform: scale(1); } }
.preloader-word {
  position: absolute; bottom: 34%; left: 50%; transform: translateX(-50%);
  font-family: var(--fj-font-head); font-weight: 800; letter-spacing: .5em;
  font-size: 13px; color: rgba(255,255,255,.55); opacity: 0;
  animation: fade-up-word .6s ease .9s forwards;
}
@keyframes fade-up-word { from { opacity: 0; transform: translate(-50%, 10px);} to { opacity: 1; transform: translate(-50%, 0);} }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0; transition: all .4s cubic-bezier(.2,.8,.2,1);
}
#navbar .container-fj { display: flex; align-items: center; justify-content: space-between; }
#navbar.scrolled {
  padding: 12px 0; background: rgba(10, 25, 46, .72); backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 10px 30px rgba(4,14,28,.25);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand svg { width: 34px; height: auto; }
.nav-brand span { font-family: var(--fj-font-head); font-weight: 800; letter-spacing: .04em; font-size: 19px; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--fj-font-head); font-size: 14px; font-weight: 600; color: rgba(255,255,255,.78);
  padding: 10px 16px; border-radius: 100px; transition: all .25s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06); align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: #fff; position: relative; transition: all .3s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.on span { background: transparent; }
.nav-toggle.on span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.on span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 991px) {
  .nav-links { position: fixed; top: 0; right: -100%; height: 100dvh; width: min(340px, 84vw);
    background: var(--fj-grad-navy); flex-direction: column; align-items: stretch; justify-content: center;
    gap: 4px; padding: 40px 28px; transition: right .45s cubic-bezier(.2,.8,.2,1); box-shadow: -30px 0 60px rgba(0,0,0,.35); }
  .nav-links.open { right: 0; }
  .nav-links a { padding: 15px 18px; font-size: 17px; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: 0; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-fj.ghost-dark { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--fj-grad-navy); overflow: hidden; padding: 150px 0 80px;
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; z-index: 0;
  animation: blob-float 16s ease-in-out infinite;
}
.hero-blob.b1 { width: 620px; height: 620px; top: -220px; left: -180px; background: radial-gradient(circle, var(--fj-green) 0%, transparent 70%); animation-duration: 18s; }
.hero-blob.b2 { width: 560px; height: 560px; bottom: -260px; right: -160px; background: radial-gradient(circle, var(--fj-blue) 0%, transparent 70%); animation-duration: 22s; animation-delay: -4s; }
.hero-blob.b3 { width: 380px; height: 380px; top: 30%; right: 8%; background: radial-gradient(circle, var(--fj-gold) 0%, transparent 72%); opacity: .35; animation-duration: 14s; animation-delay: -8s; }
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 25px) scale(0.95); }
}
.hero-grid-fx {
  position: absolute; inset: 0; z-index: 0; opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 20%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 60% 60% at 50% 20%, #000 30%, transparent 75%);
}
.hero .container-fj { position: relative; z-index: 2; }
.hero-row { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
@media (max-width: 991px) { .hero-row { grid-template-columns: 1fr; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px 9px 9px; border-radius: 100px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(8px);
  color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 28px;
}
.hero-badge .dot-ico {
  width: 26px; height: 26px; border-radius: 50%; background: var(--fj-grad-gold); display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.hero h1 {
  color: #fff; font-size: clamp(38px, 5.4vw, 68px); line-height: 1.06; letter-spacing: -0.03em;
}
.hero h1 em { font-style: normal; background: linear-gradient(120deg, #6FE3A0, #67B4F0 60%, var(--fj-gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { color: rgba(214, 226, 240, .82); font-size: 18px; line-height: 1.65; max-width: 560px; margin-top: 24px; }
.hero-tagline {
  margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; font-family: var(--fj-font-head);
  font-weight: 700; font-size: 13.5px; letter-spacing: .05em; color: #fff;
}
.hero-tagline span { display: flex; align-items: center; gap: 10px; }
.hero-tagline b { color: var(--fj-gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 46px; flex-wrap: wrap; }
.hero-trust .htk { color: #fff; }
.hero-trust .htk b { display: block; font-family: var(--fj-font-head); font-size: 24px; font-weight: 800; }
.hero-trust .htk small { color: rgba(255,255,255,.55); font-size: 12px; }
.hero-trust .sep { width: 1px; height: 34px; background: rgba(255,255,255,.15); }

.hero-phone-wrap { position: relative; display: flex; justify-content: center; perspective: 1400px; }
.hero-phone {
  width: min(320px, 78vw); position: relative; z-index: 2;
  transform: rotateY(-10deg) rotateX(4deg) rotate(2deg);
  animation: phone-levitate 6s ease-in-out infinite;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.55));
  border-radius: 42px; overflow: hidden;
}
.hero-phone img { width: 100%; display: block; border-radius: 42px; }
@keyframes phone-levitate {
  0%, 100% { transform: rotateY(-10deg) rotateX(4deg) rotate(2deg) translateY(0); }
  50% { transform: rotateY(-7deg) rotateX(2deg) rotate(1deg) translateY(-18px); }
}
.hero-float-card {
  position: absolute; z-index: 3; background: rgba(16, 30, 52, .72); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 14px 18px; color: #fff;
  box-shadow: 0 20px 44px rgba(0,0,0,.35); display: flex; align-items: center; gap: 12px;
  animation: card-float 5.5s ease-in-out infinite;
}
.hero-float-card .ic { width: 38px; height: 38px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex: none; }
.hero-float-card b { display: block; font-size: 15px; font-family: var(--fj-font-head); }
.hero-float-card small { color: rgba(255,255,255,.6); font-size: 11.5px; }
.hero-float-card.c1 { top: 4%; left: -8%; animation-delay: -1s; }
.hero-float-card.c1 .ic { background: linear-gradient(135deg,#23A855,#0F6A37); }
.hero-float-card.c2 { bottom: -4%; right: -6%; animation-delay: -3s; }
.hero-float-card.c2 .ic { background: linear-gradient(135deg,#E3A82F,#A66E14); }
@keyframes card-float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-14px);} }
@media (max-width: 575px) { .hero-float-card { padding: 10px 14px; } .hero-float-card b { font-size: 13px; } .hero-float-card.c1, .hero-float-card.c2 { display: none; } }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,.5);
  font-size: 11px; letter-spacing: .18em; font-weight: 700; text-transform: uppercase;
}
.scroll-cue .wheel { width: 26px; height: 40px; border-radius: 20px; border: 1.5px solid rgba(255,255,255,.35); position: relative; }
.scroll-cue .wheel::before { content: ""; position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; border-radius: 3px; background: #fff; animation: cue-blink 1.8s ease infinite; }
@keyframes cue-blink { 0%,100% { opacity: 1; transform: translateY(0);} 50% { opacity: 0; transform: translateY(10px);} }

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats-strip { background: var(--fj-navy-dark); padding: 46px 0; position: relative; z-index: 3; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 767px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-item { text-align: center; padding: 0 10px; }
.stat-item b { font-family: var(--fj-font-head); font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: #fff; display: block; }
.stat-item b .grad { background: var(--fj-grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-item small { color: rgba(255,255,255,.5); font-size: 12.5px; font-weight: 600; letter-spacing: .02em; }

/* ==========================================================================
   REVEAL (scroll)
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal="zoom"] { transform: scale(.92); }
[data-reveal="zoom"].in { transform: scale(1); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="left"].in { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="right"].in { transform: translateX(0); }

/* ==========================================================================
   COMMENT ÇA MARCHE
   ========================================================================== */
.steps-wrap { position: relative; }
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
@media (max-width: 860px) { .steps-row { grid-template-columns: 1fr; } }
.step-card {
  background: var(--fj-white); border: 1px solid var(--fj-line); border-radius: var(--fj-radius-lg);
  padding: 40px 32px; position: relative; transition: transform .4s, box-shadow .4s; overflow: hidden;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--fj-shadow-lg); }
.step-card::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(400px 220px at 20% 0%, rgba(30,158,79,.08), transparent 60%);
}
.step-card:hover::after { opacity: 1; }
.step-num {
  font-family: var(--fj-font-head); font-size: 60px; font-weight: 800; line-height: 1;
  background: var(--fj-grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .28;
}
.step-ic {
  width: 60px; height: 60px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
  margin: 4px 0 22px; font-size: 26px; color: #fff; background: var(--fj-grad-brand); box-shadow: 0 14px 28px rgba(30,158,79,.28);
}
.step-card:nth-child(2) .step-ic { background: linear-gradient(120deg, var(--fj-gold) 0%, var(--fj-gold-deep) 100%); box-shadow: 0 14px 28px rgba(184,134,11,.28); }
.step-card:nth-child(3) .step-ic { background: linear-gradient(120deg, var(--fj-blue) 0%, var(--fj-navy) 100%); box-shadow: 0 14px 28px rgba(29,95,166,.28); }
.step-card h3 { font-size: 21px; margin-bottom: 12px; }
.step-card p { color: var(--fj-muted); font-size: 15px; line-height: 1.7; }
.step-arrow { position: absolute; top: 56px; right: -34px; z-index: 2; color: var(--fj-line); }
@media (max-width: 860px) { .step-arrow { display: none; } }

/* ==========================================================================
   APP SHOWCASE (mockup téléphone "vidéo")
   ========================================================================== */
.app-showcase { background: var(--fj-paper); position: relative; overflow: hidden; }
.showcase-row { display: grid; grid-template-columns: .92fr 1.08fr; gap: 60px; align-items: center; }
@media (max-width: 991px) { .showcase-row { grid-template-columns: 1fr; } }
.showcase-row.rev { grid-template-columns: 1.08fr .92fr; }
@media (max-width: 991px) { .showcase-row.rev { grid-template-columns: 1fr; } }
.showcase-row.rev .device-col { order: -1; }
@media (max-width: 991px) { .showcase-row.rev .device-col { order: 0; } }

.feature-list { margin-top: 30px; display: flex; flex-direction: column; gap: 4px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 16px; border-radius: 16px; cursor: default;
  transition: background .3s;
}
.feature-item.active { background: #fff; box-shadow: var(--fj-shadow-md); }
.feature-item .fi-ic {
  width: 42px; height: 42px; border-radius: 12px; flex: none; display: flex; align-items: center; justify-content: center;
  background: var(--fj-paper-2); color: var(--fj-muted); font-size: 18px; transition: all .3s;
}
.feature-item.active .fi-ic { background: var(--fj-grad-brand); color: #fff; }
.feature-item b { font-family: var(--fj-font-head); font-size: 15.5px; display: block; margin-bottom: 3px; color: var(--fj-navy); }
.feature-item p { font-size: 13.5px; color: var(--fj-muted); line-height: 1.5; }

.device-col { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.phone-stage { position: relative; width: min(300px, 74vw); }
.phone-shot-frame {
  position: relative; border-radius: 40px; overflow: hidden; box-shadow: var(--fj-shadow-lg);
  background: #17181B; aspect-ratio: 397 / 838;
}
.phone-shot-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0;
  transition: opacity .7s ease;
}
.phone-shot-frame img.on { opacity: 1; }
.device-glow {
  position: absolute; inset: -40px; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,158,79,.18), transparent 70%); filter: blur(20px);
}
.dots-row { display: flex; gap: 7px; justify-content: center; margin-top: 24px; }
.dots-row button {
  width: 7px; height: 7px; border-radius: 50%; border: none; background: var(--fj-line); cursor: pointer; padding: 0;
  transition: all .3s;
}
.dots-row button.on { width: 22px; border-radius: 4px; background: var(--fj-grad-brand); }

/* ==========================================================================
   PARTENAIRES
   ========================================================================== */
.partners-band { background: var(--fj-navy); padding: 90px 0; position: relative; overflow: hidden; }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee 32s linear infinite; }
.marquee-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner-card {
  width: 190px; flex: none; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px; padding: 22px 18px; display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: all .35s;
}
.partner-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.partner-card .plogo { width: 56px; height: 56px; border-radius: 16px; overflow: hidden; background: #fff; display: flex; align-items: center; justify-content: center; }
.partner-card .plogo img { width: 100%; height: 100%; object-fit: cover; }
.partner-card b { color: #fff; font-size: 13.5px; font-family: var(--fj-font-head); text-align: center; }
.partner-card small { color: rgba(255,255,255,.45); font-size: 11px; text-align: center; }

.rates-card {
  margin-top: 60px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: var(--fj-radius-lg);
  padding: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media (max-width: 767px) { .rates-card { grid-template-columns: repeat(2, 1fr); padding: 26px; } }
.rate-pill { text-align: center; padding: 16px 8px; }
.rate-pill b { display: block; font-family: var(--fj-font-head); font-size: 24px; font-weight: 800; color: var(--fj-gold); }
.rate-pill span { color: rgba(255,255,255,.6); font-size: 12.5px; }

.pay-rail { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.pay-rail .pr-label { color: rgba(255,255,255,.4); font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.pay-chip { display: flex; align-items: center; gap: 10px; background: #fff; padding: 10px 18px 10px 10px; border-radius: 100px; }
.pay-chip img { width: 30px; height: 30px; border-radius: 8px; object-fit: cover; }
.pay-chip b { font-family: var(--fj-font-head); font-size: 13.5px; color: var(--fj-navy); }

/* ==========================================================================
   ASSURANCES / PACKS
   ========================================================================== */
.packs-scroll { display: flex; gap: 22px; overflow-x: auto; padding: 10px 4px 30px; scroll-snap-type: x proximity; }
.packs-scroll::-webkit-scrollbar { height: 8px; }
.pack-card {
  scroll-snap-align: start; flex: none; width: 290px; border-radius: var(--fj-radius-md); padding: 32px 26px;
  background: #fff; border: 1px solid var(--fj-line); box-shadow: var(--fj-shadow-sm);
  transition: transform .4s, box-shadow .4s; display: flex; flex-direction: column;
}
.pack-card:hover { transform: translateY(-8px); box-shadow: var(--fj-shadow-lg); }
.pack-card.reco { background: var(--fj-grad-navy); border-color: transparent; box-shadow: var(--fj-shadow-navy); }
.pack-tag {
  align-self: flex-start; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; background: var(--fj-paper-2); color: var(--fj-muted); margin-bottom: 18px;
}
.pack-card.reco .pack-tag { background: var(--fj-grad-gold); color: #fff; }
.pack-card h3 { font-size: 21px; margin-bottom: 6px; }
.pack-card.reco h3 { color: #fff; }
.pack-card .pack-desc { color: var(--fj-muted); font-size: 13.5px; margin-bottom: 18px; }
.pack-card.reco .pack-desc { color: rgba(255,255,255,.6); }
.pack-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px dashed var(--fj-line); }
.pack-card.reco .pack-price { border-color: rgba(255,255,255,.15); }
.pack-price b { font-family: var(--fj-font-head); font-size: 32px; font-weight: 800; color: var(--fj-navy); }
.pack-card.reco .pack-price b { color: #fff; }
.pack-price span { color: var(--fj-muted); font-size: 13px; }
.pack-card.reco .pack-price span { color: rgba(255,255,255,.55); }
.pack-feats { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pack-feats li { display: flex; gap: 10px; font-size: 13.5px; line-height: 1.5; color: var(--fj-ink); }
.pack-card.reco .pack-feats li { color: rgba(255,255,255,.85); }
.pack-feats li svg { flex: none; margin-top: 2px; color: var(--fj-green); }
.pack-card.reco .pack-feats li svg { color: #7FE3B0; }

/* ==========================================================================
   BACK-OFFICE (mockup navigateur)
   ========================================================================== */
.admin-showcase { background: var(--fj-navy-dark); position: relative; overflow: hidden; }
.browser-mock {
  border-radius: 18px; overflow: hidden; background: #12213A; box-shadow: var(--fj-shadow-navy);
  border: 1px solid rgba(255,255,255,.08);
}
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; background: #0E1A2E; }
.browser-bar .bdot { width: 11px; height: 11px; border-radius: 50%; }
.browser-bar .bdot:nth-child(1) { background: #FF5F57; }
.browser-bar .bdot:nth-child(2) { background: #FEBC2E; }
.browser-bar .bdot:nth-child(3) { background: #28C840; }
.browser-url {
  margin-left: 16px; flex: 1; max-width: 360px; background: rgba(255,255,255,.06); border-radius: 8px;
  padding: 6px 14px; color: rgba(255,255,255,.45); font-size: 12px; font-family: monospace;
}
.browser-body { position: relative; aspect-ratio: 16/10; background: #fff; }
.browser-body img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 0; transition: opacity .8s ease; }
.browser-body img.on { opacity: 1; }
.admin-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 767px) { .admin-feat-grid { grid-template-columns: repeat(2, 1fr); } }
.admin-feat {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 18px;
  cursor: default; transition: all .3s;
}
.admin-feat.active { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); }
.admin-feat b { color: #fff; font-family: var(--fj-font-head); font-size: 13.5px; display: flex; align-items: center; gap: 8px; }
.admin-feat span { color: rgba(255,255,255,.4); font-size: 11.5px; }
.admin-feat .adot { width: 7px; height: 7px; border-radius: 50%; background: var(--fj-green); flex: none; }

/* ==========================================================================
   IMPACT / ODD
   ========================================================================== */
.odd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 991px) { .odd-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .odd-grid { grid-template-columns: 1fr; } }
.odd-card {
  border-radius: var(--fj-radius-md); padding: 30px 24px; background: var(--fj-paper); border: 1px solid var(--fj-line);
  transition: all .4s; position: relative; overflow: hidden;
}
.odd-card:hover { transform: translateY(-6px); box-shadow: var(--fj-shadow-md); background: #fff; }
.odd-num {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-family: var(--fj-font-head); font-weight: 800; color: #fff; font-size: 14px; margin-bottom: 20px;
}
.odd-card h3 { font-size: 16.5px; margin-bottom: 10px; line-height: 1.3; }
.odd-card p { color: var(--fj-muted); font-size: 13.5px; line-height: 1.6; }

/* ==========================================================================
   PREUVES TERRAIN
   ========================================================================== */
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 767px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-card {
  border-radius: var(--fj-radius-lg); overflow: hidden; background: var(--fj-paper); border: 1px solid var(--fj-line);
  transition: all .4s;
}
.proof-card:hover { box-shadow: var(--fj-shadow-lg); transform: translateY(-6px); }
.proof-media {
  aspect-ratio: 16/10; position: relative; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--fj-navy-2), var(--fj-navy-dark)); overflow: hidden;
  width: 100%; border: none; padding: 0; margin: 0; font: inherit; cursor: pointer;
}
.proof-media img { position: absolute; width: 44%; max-width: 220px; left: 50%; top: 50%; transform: translate(-50%, -50%);
  object-fit: contain; opacity: .22; filter: grayscale(1) brightness(2); }
.proof-play {
  width: 78px; height: 78px; border-radius: 50%; background: rgba(255,255,255,.14); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; z-index: 2;
  color: #fff; font-size: 26px; transition: all .3s; cursor: pointer;
}
.proof-card:hover .proof-play { background: var(--fj-grad-brand); transform: scale(1.08); border-color: transparent; }
.proof-body { padding: 26px 26px 30px; }
.proof-body b { font-family: var(--fj-font-head); font-size: 16px; display: block; margin-bottom: 8px; }
.proof-body p { color: var(--fj-muted); font-size: 13.5px; line-height: 1.6; }

/* ==========================================================================
   ÉQUIPE
   ========================================================================== */
.founder-card {
  display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: center;
  background: var(--fj-paper); border: 1px solid var(--fj-line); border-radius: var(--fj-radius-lg); padding: 44px;
}
@media (max-width: 700px) { .founder-card { grid-template-columns: 1fr; text-align: center; padding: 32px 26px; } }
.founder-photo {
  width: 190px; height: 190px; border-radius: 28px; margin: 0 auto; background: var(--fj-grad-brand);
  display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--fj-font-head);
  font-size: 52px; font-weight: 800; box-shadow: var(--fj-shadow-md); overflow: hidden;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.founder-body b.name { font-family: var(--fj-font-head); font-size: 24px; color: var(--fj-navy); display: block; }
.founder-role { color: var(--fj-green-deep); font-weight: 700; font-size: 14px; margin: 4px 0 16px; }
.founder-body p { color: var(--fj-muted); line-height: 1.7; font-size: 15px; }
.founder-contacts { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; justify-content: flex-start; }
@media (max-width: 700px) { .founder-contacts { justify-content: center; } }
.founder-contacts a {
  display: flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 100px; background: #fff;
  border: 1px solid var(--fj-line); font-size: 13px; font-weight: 600; transition: all .25s;
}
.founder-contacts a:hover { border-color: var(--fj-green); color: var(--fj-green-deep); transform: translateY(-2px); }

/* ==========================================================================
   CTA / CONTACT
   ========================================================================== */
.cta-band {
  position: relative; background: var(--fj-grad-navy); border-radius: var(--fj-radius-lg); padding: 70px 50px;
  overflow: hidden; text-align: center;
}
@media (max-width: 700px) { .cta-band { padding: 50px 26px; } }
.cta-band .hero-blob { opacity: .4; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); position: relative; z-index: 2; }
.cta-band p { color: rgba(255,255,255,.65); max-width: 560px; margin: 18px auto 34px; position: relative; z-index: 2; font-size: 16px; }
.cta-actions { position: relative; z-index: 2; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff; border: 1px solid var(--fj-line); border-radius: var(--fj-radius-md); padding: 30px;
  transition: all .3s;
}
.contact-card:hover { box-shadow: var(--fj-shadow-md); transform: translateY(-4px); }
.contact-card .cc-ic {
  width: 46px; height: 46px; border-radius: 14px; background: var(--fj-paper-2); color: var(--fj-green-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 19px;
}
.contact-card b { font-family: var(--fj-font-head); font-size: 15px; display: block; margin-bottom: 6px; }
.contact-card span { color: var(--fj-muted); font-size: 14px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.site-footer { background: var(--fj-navy-dark); padding: 70px 0 30px; color: rgba(255,255,255,.55); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 860px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand svg { width: 32px; }
.footer-brand span { color: #fff; font-family: var(--fj-font-head); font-weight: 800; font-size: 18px; }
.footer-col b { color: #fff; font-family: var(--fj-font-head); font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; display: block; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; transition: all .25s; }
.footer-socials a:hover { background: var(--fj-grad-brand); color: #fff; }

/* ==========================================================================
   MISC
   ========================================================================== */
.back-to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 500; width: 48px; height: 48px; border-radius: 50%;
  background: var(--fj-grad-brand); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(30,158,79,.35); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .35s; border: none; cursor: pointer;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ==========================================================================
   LIGHTBOX VIDÉO
   ========================================================================== */
.video-lightbox {
  position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center;
  padding: 5vh 4vw; background: rgba(4, 10, 20, .88); backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
}
.video-lightbox.open { opacity: 1; visibility: visible; }
.video-lightbox-inner { position: relative; width: 100%; max-width: 1000px; }
.video-lightbox video {
  width: 100%; max-height: 86vh; border-radius: 16px; background: #000; box-shadow: 0 40px 100px rgba(0,0,0,.6);
  display: block;
}
.video-lightbox-title {
  color: #fff; font-family: var(--fj-font-head); font-weight: 700; font-size: 15px; margin-top: 16px; text-align: center;
}
.video-lightbox-close {
  position: absolute; top: -18px; right: -18px; width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--fj-navy); border: none; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 10px 26px rgba(0,0,0,.35); transition: transform .25s;
}
.video-lightbox-close:hover { transform: scale(1.08) rotate(90deg); }
@media (max-width: 700px) { .video-lightbox-close { top: -50px; right: 0; } }
