/* =============================================
   BCN INTERPOL SÉNÉGAL — DESIGN SYSTÈME
   Couleurs officielles : Vert #00853F · Jaune #FDEF42 · Rouge #E31B23
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  /* Couleurs Sénégal */
  --sn-vert:   #00853F;
  --sn-jaune:  #FDEF42;
  --sn-rouge:  #E31B23;
  --sn-vert-d: #006830;
  --sn-vert-l: #e6f5ed;
  --sn-vert-m: #00a84f;

  /* Neutres */
  --ink:  #0f1923;
  --ink2: #2d3748;
  --ink3: #718096;
  --ink4: #a0aec0;
  --bg:   #f4f6f9;
  --bg2:  #ffffff;
  --bg3:  #edf2f7;
  --line: #e2e8f0;

  /* Or */
  --gold:  #c49a3c;
  --gold2: #e8b84b;
  --gold3: #fdf3dc;

  /* Paiement */
  --wave:    #00b9f1;
  --wave2:   #0098cc;
  --wave-bg: #e8f8fe;
  --om:      #ff7900;
  --om2:     #e06a00;
  --om-bg:   #fff4ec;

  /* UI */
  --red:  #e53e3e;
  --r:    10px;
  --r2:   16px;
  --r3:   24px;
  --dur:  0.22s;
  --ease: cubic-bezier(0.4,0,0.2,1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Sora', sans-serif;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  min-height: 100vh;
}

/* ══════════════════════════════════════════
   BANDE DRAPEAU SÉNÉGAL — GOUVERNEMENTAL
   ══════════════════════════════════════════ */
.senegal-flag-banner {
  display: flex;
  height: 6px;
  width: 100%;
  position: relative;
  z-index: 300;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.flag-green  { flex: 1; background: var(--sn-vert); }
.flag-yellow { flex: 1; background: var(--sn-jaune); }
.flag-red    { flex: 1; background: var(--sn-rouge); }

/* ══════════════════════════════════════════
   TOPBAR
   ══════════════════════════════════════════ */
.topbar {
  background: var(--sn-vert-d);
  padding: 8px 40px;
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 10;
}
.topbar a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--dur);
}
.topbar a:hover { color: var(--sn-jaune); }
.topbar svg { width: 13px; height: 13px; }
.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.topbar-badge {
  background: rgba(253,239,66,0.2);
  border: 1px solid rgba(253,239,66,0.3);
  color: var(--sn-jaune);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
header {
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow var(--dur);
}
header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Logo avec drapeau intégré */
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }

.logo-flag {
  display: flex;
  flex-direction: column;
  width: 36px;
  height: 46px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.08);
  flex-shrink: 0;
  position: relative;
}
.logo-flag-inner {
  display: flex;
  width: 100%;
  height: 100%;
}
.logo-flag-inner .lf-green  { flex: 1; background: var(--sn-vert); }
.logo-flag-inner .lf-yellow {
  flex: 1;
  background: var(--sn-jaune);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-flag-inner .lf-red   { flex: 1; background: var(--sn-rouge); }
.logo-flag-star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--sn-vert);
  font-size: 13px;
  line-height: 1;
  z-index: 2;
}

.logo-text-wrap { display: flex; flex-direction: column; }
.logo-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--sn-vert-d);
  line-height: 1.25;
  letter-spacing: -0.2px;
}
.logo-sub {
  font-size: 10px;
  color: var(--ink3);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Séparateur vertical */
.logo-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
  margin: 0 4px;
}

/* Badge INTERPOL */
.interpol-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.interpol-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a2980, #26d0ce);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 8px rgba(26,41,128,0.3);
  flex-shrink: 0;
}

nav { display: flex; gap: 2px; margin-left: auto; }
.nav-link {
  text-decoration: none;
  color: var(--ink3);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r);
  transition: all var(--dur);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--sn-vert);
  border-radius: 2px;
  transition: all var(--dur);
}
.nav-link:hover { color: var(--ink); background: var(--bg3); }
.nav-link.active { color: var(--sn-vert-d); font-weight: 600; }
.nav-link.active::after { left: 14px; right: 14px; }

.btn-header {
  background: var(--sn-vert);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--dur);
  font-family: inherit;
  box-shadow: 0 2px 12px rgba(0,133,63,0.3);
}
.btn-header:hover {
  background: var(--sn-vert-m);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,133,63,0.4);
}

/* ══════════════════════════════════════════
   HERO SECTION — DESIGN GOUVERNEMENTAL
   ══════════════════════════════════════════ */
.hero {
  background: 
    linear-gradient(rgba(0, 128, 0, 0.6), rgba(0, 128, 0, 0.6)),
    url('https://avatars.mds.yandex.net/i?id=c58708e0afd9274ae9db315ad3da303a00297796-6948195-images-thumbs&ref=rim&n=33&w=480&h=218');
    
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
}

/* Fond avec le drapeau en watermark */
.hero-flag-bg {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0.07;
  z-index: 0;
}
.hero-flag-bg .hf-green  { flex: 1; background: var(--sn-vert); }
.hero-flag-bg .hf-yellow { flex: 1; background: var(--sn-jaune); }
.hero-flag-bg .hf-red    { flex: 1; background: var(--sn-rouge); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0,40,20,0.97) 0%,
    rgba(0,60,30,0.93) 40%,
    rgba(0,80,40,0.88) 70%,
    rgba(10,40,20,0.95) 100%
  );
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(0,133,63,0.2) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(253,239,66,0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(227,27,35,0.06) 0%, transparent 35%);
}

/* Étoile sénégalaise décorative */
.hero-star-deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(120px, 18vw, 260px);
  color: rgba(0,133,63,0.1);
  z-index: 1;
  line-height: 1;
  pointer-events: none;
  font-weight: 900;
  letter-spacing: -10px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  width: 100%;
}

/* Texte hero */
.hero-text {}

.hero-gov-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(253,239,66,0.12);
  border: 1px solid rgba(253,239,66,0.25);
  padding: 6px 14px 6px 8px;
  border-radius: 40px;
  margin-bottom: 24px;
  animation: fadeUp 0.5s var(--ease) both;
}
.hero-gov-flag {
  display: flex;
  width: 22px;
  height: 16px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.hero-gov-flag .hgf-g { flex:1; background: var(--sn-vert); }
.hero-gov-flag .hgf-y { flex:1; background: var(--sn-jaune); display:flex; align-items:center; justify-content:center;}
.hero-gov-flag .hgf-r { flex:1; background: var(--sn-rouge); }
.hero-gov-flag-star {
  position: absolute;
  font-size: 7px;
  color: var(--sn-vert);
}
.hero-gov-badge-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(253,239,66,0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeUp 0.5s var(--ease) 0.08s both;
}
.hero-title em {
  color: var(--sn-jaune);
  font-style: normal;
  display: block;
}

.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeUp 0.5s var(--ease) 0.16s both;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  animation: fadeUp 0.5s var(--ease) 0.24s both;
}
.btn-primary {
  background: var(--sn-jaune);
  color: var(--sn-vert-d);
  border: none;
  padding: 13px 28px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: all var(--dur);
  box-shadow: 0 4px 20px rgba(253,239,66,0.3);
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(253,239,66,0.4);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 13px 22px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--dur);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.35); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  animation: fadeUp 0.5s var(--ease) 0.32s both;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { display: flex; flex-direction: column; gap: 3px; }
.hero-stat-n {
  font-family: 'DM Serif Display', serif;
  font-size: 1.9rem;
  color: #fff;
  line-height: 1;
}
.hero-stat-n span { color: var(--sn-jaune); }
.hero-stat-l { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 500; }

/* Card "Comment ça marche" dans le hero */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(12px);
  animation: fadeUp 0.5s var(--ease) 0.1s both;
}
.hero-card-flag-strip {
  display: flex;
  height: 3px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 22px;
}
.hero-card-flag-strip .s1 { flex:1; background: var(--sn-vert); }
.hero-card-flag-strip .s2 { flex:1; background: var(--sn-jaune); }
.hero-card-flag-strip .s3 { flex:1; background: var(--sn-rouge); }
.hero-card-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.mini-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  animation: fadeUp 0.4s var(--ease) calc(0.1s + var(--i) * 0.08s) both;
}
.mini-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(253,239,66,0.15);
  border: 1px solid rgba(253,239,66,0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sn-jaune);
  font-size: 11px;
  font-weight: 700;
}
.mini-step-text { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.5; }
.mini-step-text strong { color: #fff; font-weight: 600; display: block; margin-bottom: 1px; }

/* ══════════════════════════════════════════
   BARRE DE PROGRESSION
   ══════════════════════════════════════════ */
.progress-wrap {
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.progress-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  height: 56px;
}
.step-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  cursor: pointer;
  position: relative;
  transition: all var(--dur);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink4);
  user-select: none;
}
.step-indicator.active { color: var(--sn-vert-d); font-weight: 600; }
.step-indicator.done { color: var(--sn-vert); }
.step-indicator::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--dur);
  border-radius: 3px 3px 0 0;
}
.step-indicator.active::after { background: var(--sn-vert); }
.step-indicator.done::after { background: var(--sn-vert-l); }
.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  background: var(--bg3);
  color: var(--ink3);
  transition: all var(--dur);
  flex-shrink: 0;
}
.step-indicator.active .step-num { background: var(--sn-vert); color: #fff; }
.step-indicator.done .step-num { background: var(--sn-vert-l); color: var(--sn-vert-d); }
.step-divider { width: 1px; background: var(--line); margin: 14px 0; }

/* ══════════════════════════════════════════
   LAYOUT PRINCIPAL
   ══════════════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.main { padding: 40px 0 80px; }
.main-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.section-hd { margin-bottom: 28px; }
.section-hd h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.section-hd p { font-size: 13px; color: var(--ink3); }

/* ══════════════════════════════════════════
   CARDS ÉTAPES
   ══════════════════════════════════════════ */
.card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  overflow: hidden;
  margin-bottom: 20px;
  transition: box-shadow var(--dur);
  box-shadow: var(--shadow-sm);
}
.card:focus-within { box-shadow: 0 0 0 3px rgba(0,133,63,0.15), var(--shadow-sm); }

.card-hd {
  padding: 18px 24px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(to right, rgba(0,133,63,0.03), transparent);
}
.card-hd-icon {
  width: 38px;
  height: 38px;
  background: var(--sn-vert-l);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sn-vert);
  flex-shrink: 0;
}
.card-hd-icon svg { width: 18px; height: 18px; }
.card-hd-text h3 { font-size: 14px; font-weight: 700; color: var(--ink); }
.card-hd-text p { font-size: 11px; color: var(--ink3); margin-top: 2px; }
.card-body { padding: 24px; }

/* ══════════════════════════════════════════
   FORMULAIRE
   ══════════════════════════════════════════ */
.frow { display: grid; gap: 16px; margin-bottom: 16px; }
.frow-2 { grid-template-columns: 1fr 1fr; }
.frow-3 { grid-template-columns: 1fr 1fr 1fr; }
.frow:last-child { margin-bottom: 0; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.fg label .req { color: var(--sn-rouge); font-size: 13px; line-height: 1; }
.input-wrap { position: relative; }
.input-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--ink4);
  pointer-events: none;
}
.input-wrap input { padding-left: 38px !important; }
input, select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: var(--bg);
  transition: all var(--dur);
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder { color: var(--ink4); }
input:hover, select:hover { border-color: var(--ink4); }
input:focus, select:focus {
  outline: none;
  border-color: var(--sn-vert);
  background: var(--bg2);
  box-shadow: 0 0 0 3px rgba(0,133,63,0.12);
}
input.err, select.err { border-color: var(--red); background: #fff5f5; }
.err-msg {
  font-size: 11px;
  color: var(--red);
  display: none;
  align-items: center;
  gap: 4px;
}
.err-msg.show { display: flex; }
.err-msg svg { width: 12px; height: 12px; flex-shrink: 0; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--ink3);
  pointer-events: none;
}
.select-wrap select { cursor: pointer; }

/* ══════════════════════════════════════════
   CALENDRIER
   ══════════════════════════════════════════ */
.cal-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-month { font-size: 14px; font-weight: 700; color: var(--ink); }
.cal-nav-btn {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink3);
  transition: all var(--dur);
}
.cal-nav-btn:hover:not(:disabled) { background: var(--sn-vert-l); color: var(--sn-vert); border-color: var(--sn-vert); }
.cal-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.cal-nav-btn svg { width: 14px; height: 14px; }
.dow-row { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: 6px; }
.dow-cell {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 0;
}
.dow-cell:nth-child(6), .dow-cell:nth-child(7) { color: var(--red); opacity: 0.6; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.cd {
  aspect-ratio: 1;
  border: none;
  background: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all var(--dur);
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cd:hover:not(.cd-dis):not(.cd-om) { background: var(--sn-vert-l); color: var(--sn-vert); }
.cd.cd-sel { background: var(--sn-vert) !important; color: #fff !important; }
.cd.cd-today { color: var(--sn-vert); font-weight: 800; }
.cd.cd-today::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--sn-vert);
}
.cd.cd-dis { color: var(--line); cursor: not-allowed; }
.cd.cd-we { color: var(--red); opacity: 0.55; }
.cd.cd-we:hover { background: #fef2f2; }
.cd.cd-om { opacity: 0.2; cursor: default; }
.cd.cd-full { background: #fef2f2; color: var(--red); cursor: not-allowed; font-size: 11px; }

/* ══════════════════════════════════════════
   CRÉNEAUX
   ══════════════════════════════════════════ */
.slots-hd {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 20px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.slots-hd::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.slots-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.slot {
  padding: 11px 8px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  background: var(--bg);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--dur);
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
}
.slot:hover:not(.slot-full):not(.slot-dis) { border-color: var(--sn-vert); background: var(--bg2); color: var(--sn-vert); }
.slot.slot-sel { border-color: var(--sn-vert); background: var(--sn-vert); color: #fff; }
.slot-dot { width: 5px; height: 5px; border-radius: 50%; margin: 4px auto 0; }
.slot.slot-full { background: #fff5f5; border-color: #fecaca; color: var(--red); cursor: not-allowed; font-size: 11px; }
.slot.slot-full .slot-dot { background: var(--red); opacity: 0.4; }
.slot:not(.slot-full):not(.slot-dis):not(.slot-sel) .slot-dot { background: var(--sn-vert); }
.slot.slot-sel .slot-dot { background: rgba(255,255,255,0.5); }
.slot.slot-dis { opacity: 0.35; cursor: not-allowed; }
.slots-empty {
  grid-column: 1/-1;
  padding: 28px;
  background: var(--bg3);
  border-radius: var(--r);
  text-align: center;
  font-size: 12px;
  color: var(--ink3);
}
.slots-empty svg { width: 28px; height: 28px; color: var(--ink4); margin: 0 auto 8px; display: block; }

.date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--sn-vert-l), #e8f5ed);
  border: 1px solid rgba(0,133,63,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sn-vert-d);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s var(--ease);
}
.date-badge.show { opacity: 1; transform: translateY(0); }
.date-badge svg { width: 13px; height: 13px; }

/* ══════════════════════════════════════════
   BOUTONS NAVIGATION
   ══════════════════════════════════════════ */
.btn-next {
  margin-top: 20px;
  background: var(--sn-vert);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--dur);
  box-shadow: 0 2px 12px rgba(0,133,63,0.25);
}
.btn-next:hover { background: var(--sn-vert-m); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,133,63,0.35); }
.btn-next svg { width: 15px; height: 15px; }

/* ══════════════════════════════════════════
   CATÉGORIES — DESIGN PREMIUM
   ══════════════════════════════════════════ */
.cat-section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cat-section-title::after { content: ''; flex: 1; height: 1px; background: var(--line); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.cat-card {
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 16px 10px 14px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--sn-vert), var(--sn-vert-m));
  opacity: 0;
  transition: opacity var(--dur);
}
.cat-card:hover {
  border-color: var(--sn-vert);
  background: var(--bg2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,133,63,0.12);
}
.cat-card:hover::before { opacity: 1; }
.cat-card.cat-sel {
  border-color: var(--sn-vert);
  background: rgba(0,133,63,0.04);
  box-shadow: 0 0 0 4px rgba(0,133,63,0.12), 0 6px 20px rgba(0,133,63,0.1);
}
.cat-card.cat-sel::before { opacity: 1; }

.cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition: background var(--dur);
}
.cat-icon svg { width: 22px; height: 22px; stroke: var(--sn-vert-d); fill: none; stroke-width: 1.7; }
.cat-card:hover .cat-icon { background: var(--sn-vert-l); }
.cat-card.cat-sel .cat-icon { background: var(--sn-vert-l); }

.cat-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.cat-prices-inner { display: flex; flex-direction: column; gap: 3px; }
.cat-price-row { display: flex; justify-content: space-between; align-items: center; }
.cat-price-lbl { font-size: 10px; color: var(--ink3); }
.cat-price-val { font-size: 10px; font-weight: 700; color: var(--ink2); }
.cat-total-badge {
  margin-top: 9px;
  background: var(--sn-vert-l);
  color: var(--sn-vert-d);
  border-radius: 20px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 700;
  display: inline-block;
  transition: all var(--dur);
}
.cat-card.cat-sel .cat-total-badge { background: var(--sn-vert); color: #fff; }

/* ══════════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════════ */
.sidebar { display: flex; flex-direction: column; gap: 16px; }

.s-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.s-card-hd {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, rgba(0,133,63,0.04), transparent);
}
.s-card-hd svg { width: 14px; height: 14px; color: var(--sn-vert); }
.s-card-body { padding: 16px 18px; }

.step-item {
  display: flex;
  gap: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.step-item:last-child { border-bottom: none; padding-bottom: 0; }
.step-lft { display: flex; flex-direction: column; align-items: center; }
.step-circ {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--sn-vert-l);
  border: 1.5px solid rgba(0,133,63,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--sn-vert-d);
}
.step-line { width: 1.5px; flex: 1; background: var(--line); margin-top: 4px; }
.step-item:last-child .step-line { display: none; }
.step-rgt { padding-top: 4px; }
.step-rgt strong { font-size: 12px; color: var(--ink); display: block; margin-bottom: 2px; font-weight: 700; }
.step-rgt span { font-size: 11px; color: var(--ink3); line-height: 1.5; }

.info-list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.info-list-item:last-child { border-bottom: none; }
.info-icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.info-icon svg { width: 14px; height: 14px; }
.info-label { font-weight: 700; color: var(--ink); display: block; line-height: 1.3; }
.info-val { color: var(--ink3); }

/* Compteur créneaux */
.rdv-counter {
  background: linear-gradient(135deg, var(--sn-vert-d), var(--sn-vert));
  border-radius: var(--r2);
  padding: 20px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,133,63,0.3);
}
.rdv-counter::before {
  content: '★';
  position: absolute;
  right: -10px;
  top: -10px;
  font-size: 80px;
  color: rgba(253,239,66,0.08);
  line-height: 1;
}
.rdv-counter .lbl { font-size: 11px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; font-weight: 600; }
.rdv-counter .num { font-family: 'DM Serif Display', serif; font-size: 2.5rem; line-height: 1; }
.rdv-counter .sub { font-size: 11px; opacity: 0.55; margin-top: 4px; }
.rdv-progress { height: 5px; background: rgba(255,255,255,0.15); border-radius: 3px; margin-top: 16px; overflow: hidden; }
.rdv-progress-bar { height: 100%; background: var(--sn-jaune); border-radius: 3px; transition: width 0.8s var(--ease); }

/* ══════════════════════════════════════════
   SÉQUENÇAGE DES ÉTAPES
   ══════════════════════════════════════════ */
.step-card.locked { opacity: 0.38; pointer-events: none; }
.step-card.locked .card-body { display: none; }
.step-card.done .card-body { display: none; }
.step-card.done { border-color: rgba(0,133,63,0.3); }
.step-card.done .card-hd { background: rgba(0,133,63,0.05); cursor: pointer; }
.step-card.active .card-hd-icon { background: var(--sn-vert-l); color: var(--sn-vert); }

.step-summary {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 24px 14px;
  font-size: 12px;
  color: var(--ink3);
  flex-wrap: wrap;
}
.step-card.done .step-summary { display: flex; }
.step-summary-chip {
  background: var(--sn-vert-l);
  color: var(--sn-vert-d);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
}

.step-done-badge {
  display: none;
  margin-left: auto;
  background: var(--sn-vert-l);
  color: var(--sn-vert-d);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  align-items: center;
  gap: 5px;
}
.step-card.done .step-done-badge { display: flex; }
.step-done-badge svg { width: 11px; height: 11px; }
.lock-icon { margin-left: auto; color: var(--ink4); }
.lock-icon svg { width: 14px; height: 14px; }

@keyframes unlockSlide {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.step-card.unlocking { animation: unlockSlide 0.4s cubic-bezier(0.34,1.2,0.64,1) both; }

/* ══════════════════════════════════════════
   PAIEMENT
   ══════════════════════════════════════════ */
.pay-recap-box {
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  padding: 18px;
  margin-bottom: 20px;
}
.pay-recap-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pay-recap-title::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.recap-rows { display: flex; flex-direction: column; gap: 0; }
.recap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.recap-row:last-child { border-bottom: none; }
.recap-row.recap-total { margin-top: 4px; padding-top: 12px; border-top: 2px solid var(--line); border-bottom: none; }
.recap-row-lbl { color: var(--ink3); display: flex; align-items: center; gap: 8px; }
.recap-row-lbl svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.recap-row-val { font-weight: 700; color: var(--ink); }
.recap-row-val.green { color: var(--sn-vert); font-size: 16px; }

.pay-methods-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pay-methods-title::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.pay-methods-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.pay-method {
  border: 2px solid var(--line);
  border-radius: var(--r2);
  padding: 16px 14px;
  cursor: pointer;
  transition: all var(--dur);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg);
}
.pay-method:hover { border-color: var(--ink4); background: var(--bg2); }
.pay-method.wave-sel { border-color: var(--wave); background: var(--wave-bg); box-shadow: 0 0 0 3px rgba(0,185,241,0.12); }
.pay-method.om-sel { border-color: var(--om); background: var(--om-bg); box-shadow: 0 0 0 3px rgba(255,121,0,0.12); }
.pay-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.wave-logo-bg { background: var(--wave); color: #fff; }
.om-logo-bg { background: var(--om); color: #fff; }
.pay-method-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.pay-method-sub { font-size: 11px; color: var(--ink3); }
.pay-method-badge { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-top: 2px; }
.wave-badge { background: rgba(0,185,241,0.15); color: var(--wave2); }
.om-badge { background: rgba(255,121,0,0.15); color: var(--om2); }

.pay-phone-wrap { margin-bottom: 20px; }
.pay-phone-label { font-size: 11px; font-weight: 700; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; display: block; }
.pay-phone-row { display: flex; gap: 10px; align-items: center; }
.pay-prefix {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg3);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 11px 14px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pay-prefix svg { width: 14px; height: 14px; }
.pay-phone-row input { flex: 1; }
.err-msg-pay { font-size: 11px; color: var(--red); display: none; align-items: center; gap: 4px; margin-top: 6px; }
.err-msg-pay.show { display: flex; }
.err-msg-pay svg { width: 12px; height: 12px; flex-shrink: 0; }

.btn-pay-wave {
  width: 100%; background: var(--wave); color: #fff; border: none;
  border-radius: var(--r); padding: 14px; font-size: 14px; font-weight: 700;
  font-family: 'Outfit', sans-serif; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all var(--dur);
}
.btn-pay-wave:hover { background: var(--wave2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,185,241,0.35); }
.btn-pay-om {
  width: 100%; background: var(--om); color: #fff; border: none;
  border-radius: var(--r); padding: 14px; font-size: 14px; font-weight: 700;
  font-family: 'Outfit', sans-serif; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all var(--dur);
}
.btn-pay-om:hover { background: var(--om2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,121,0,0.35); }
.btn-pay-disabled {
  width: 100%; background: var(--bg3); color: var(--ink3); border: 1.5px solid var(--line);
  border-radius: var(--r); padding: 14px; font-size: 14px; font-weight: 600;
  font-family: 'Outfit', sans-serif; cursor: not-allowed;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}

/* ══════════════════════════════════════════
   MODAL PAIEMENT
   ══════════════════════════════════════════ */
.pay-overlay {
  position: fixed; inset: 0;
  background: rgba(10,16,20,0.7);
  z-index: 998; display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); padding: 24px;
}
.pay-overlay.open { display: flex; }
.pay-modal {
  background: var(--bg2); border-radius: var(--r3); padding: 36px;
  max-width: 400px; width: 100%;
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both; position: relative;
  box-shadow: var(--shadow-lg);
}
.pay-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 30px; height: 30px; border: none; background: var(--bg3);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink3); transition: all var(--dur);
}
.pay-modal-close:hover { background: var(--line); color: var(--ink); }
.pay-modal-close svg { width: 14px; height: 14px; }
.pay-modal-logo {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; margin: 0 auto 18px;
}
.pay-modal-title { font-family: 'DM Serif Display', serif; font-size: 1.35rem; text-align: center; margin-bottom: 6px; }
.pay-modal-sub { text-align: center; font-size: 13px; color: var(--ink3); margin-bottom: 20px; line-height: 1.6; }
.pay-modal-amount { text-align: center; font-family: 'DM Serif Display', serif; font-size: 2rem; margin-bottom: 6px; }
.pay-modal-phone { text-align: center; font-size: 12px; color: var(--ink3); margin-bottom: 20px; }
.pay-modal-recap { background: var(--bg3); border-radius: var(--r); padding: 14px; margin-bottom: 20px; }
.pay-modal-recap-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 12px; border-bottom: 1px solid var(--line); }
.pay-modal-recap-row:last-child { border-bottom: none; }
.pay-modal-recap-row span:first-child { color: var(--ink3); }
.pay-modal-recap-row span:last-child { color: var(--ink); font-weight: 600; }
.pay-modal-btns { display: flex; flex-direction: column; gap: 10px; }
.btn-pay-confirm-wave { width: 100%; background: var(--wave); color: #fff; border: none; border-radius: var(--r); padding: 13px; font-size: 14px; font-weight: 700; font-family: 'Outfit', sans-serif; cursor: pointer; transition: all var(--dur); }
.btn-pay-confirm-wave:hover { background: var(--wave2); }
.btn-pay-confirm-om { width: 100%; background: var(--om); color: #fff; border: none; border-radius: var(--r); padding: 13px; font-size: 14px; font-weight: 700; font-family: 'Outfit', sans-serif; cursor: pointer; transition: all var(--dur); }
.btn-pay-confirm-om:hover { background: var(--om2); }
.btn-cancel-pay { width: 100%; background: transparent; color: var(--ink3); border: 1px solid var(--line); border-radius: var(--r); padding: 12px; font-size: 13px; font-weight: 500; font-family: 'Outfit', sans-serif; cursor: pointer; transition: all var(--dur); }
.btn-cancel-pay:hover { background: var(--bg3); }

/* ══════════════════════════════════════════
   MODAL SUCCÈS
   ══════════════════════════════════════════ */
.pay-success-overlay {
  position: fixed; inset: 0; background: rgba(10,16,20,0.7);
  z-index: 999; display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); padding: 24px;
}
.pay-success-overlay.open { display: flex; }
.pay-success-modal {
  background: var(--bg2); border-radius: var(--r3); padding: 40px;
  max-width: 460px; width: 100%;
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both; position: relative;
  box-shadow: var(--shadow-lg);
}

.success-icon-wrap {
  width: 76px; height: 76px; background: var(--sn-vert-l);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; position: relative;
}
.success-icon-wrap::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--sn-vert-l);
  animation: pulse-ring 1.5s ease-out 0.3s 3;
}
.success-icon-wrap svg { width: 30px; height: 30px; color: var(--sn-vert); }

.pay-tx-box {
  background: var(--bg3); border: 1px dashed var(--ink4);
  border-radius: var(--r); padding: 14px; text-align: center; margin-bottom: 16px;
}
.pay-tx-lbl { font-size: 10px; font-weight: 700; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.pay-tx-num { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--sn-vert-d); letter-spacing: 0.1em; }
.pay-method-chip { display: inline-flex; align-items: center; gap: 6px; border-radius: 20px; padding: 3px 10px; font-size: 11px; font-weight: 700; margin-bottom: 16px; }
.wave-chip { background: rgba(0,185,241,0.15); color: var(--wave2); }
.om-chip { background: rgba(255,121,0,0.15); color: var(--om2); }
.success-detail-rows { margin-bottom: 24px; }
.success-detail-row { display: flex; gap: 10px; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.success-detail-row:last-child { border-bottom: none; }
.success-detail-row svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.success-detail-row .lbl { color: var(--ink3); flex: 1; }
.success-detail-row .val { color: var(--ink); font-weight: 700; }
.success-actions { display: flex; gap: 10px; }
.btn-success-copy { flex: 1; background: var(--bg3); color: var(--ink); border: 1px solid var(--line); border-radius: var(--r); padding: 12px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'Outfit', sans-serif; display: flex; align-items: center; justify-content: center; gap: 7px; transition: all var(--dur); }
.btn-success-copy:hover { background: var(--line); }
.btn-success-copy svg { width: 14px; height: 14px; }
.btn-success-ok { flex: 1; background: var(--sn-vert); color: #fff; border: none; border-radius: var(--r); padding: 12px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'Outfit', sans-serif; transition: all var(--dur); }
.btn-success-ok:hover { background: var(--sn-vert-m); }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  background: var(--sn-vert-d);
  padding: 60px 40px 28px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
footer::before {
  content: '★';
  position: absolute;
  right: -40px;
  bottom: -40px;
  font-size: 280px;
  color: rgba(253,239,66,0.04);
  line-height: 1;
  pointer-events: none;
}
.footer-flag-strip {
  display: flex;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.footer-flag-strip .fs-g { flex:1; background: var(--sn-vert); filter: brightness(1.4); }
.footer-flag-strip .fs-y { flex:1; background: var(--sn-jaune); }
.footer-flag-strip .fs-r { flex:1; background: var(--sn-rouge); }

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-flag {
  display: flex;
  width: 32px;
  height: 42px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  flex-shrink: 0;
  position: relative;
}
.footer-logo-flag-inner { display: flex; width: 100%; height: 100%; }
.footer-logo-flag-inner .flf-g { flex:1; background: var(--sn-vert); filter: brightness(1.2); }
.footer-logo-flag-inner .flf-y { flex:1; background: var(--sn-jaune); }
.footer-logo-flag-inner .flf-r { flex:1; background: var(--sn-rouge); }
.footer-logo-flag-star {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--sn-vert);
  font-size: 11px;
  line-height: 1;
  z-index: 2;
}
.footer-logo-name { font-weight: 700; color: #fff; font-size: 13px; line-height: 1.4; }
.footer-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.75; }
.footer-col h5 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: 12px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color var(--dur); }
.footer-col ul a:hover { color: var(--sn-jaune); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.footer-contact-item svg { width: 13px; height: 13px; color: var(--sn-jaune); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: var(--ink); color: #fff; padding: 12px 18px;
  border-radius: var(--r); font-size: 13px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px); opacity: 0;
  transition: all 0.3s var(--ease); pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 16px; height: 16px; color: var(--sn-vert); flex-shrink: 0; }

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes modalIn {
  from { transform: scale(0.88) translateY(16px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes pulse-ring {
  from { transform: scale(1); opacity: 1; }
  to   { transform: scale(1.4); opacity: 0; }
}
.fade-in  { animation: fadeUp 0.4s var(--ease) both; }
.fade-in-d1 { animation-delay: 0.07s; }
.fade-in-d2 { animation-delay: 0.14s; }
.fade-in-d3 { animation-delay: 0.21s; }

/* ══════════════════════════════════════════
   HAMBURGER & DRAWER MOBILE
   ══════════════════════════════════════════ */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: 1.5px solid var(--line); border-radius: var(--r);
  cursor: pointer; flex-shrink: 0; transition: background var(--dur);
}
.hamburger:hover { background: var(--bg3); }
.hamburger span { display: block; width: 16px; height: 1.5px; background: var(--ink2); border-radius: 2px; transition: all 0.25s var(--ease); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-drawer {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg2); z-index: 190; padding: 24px 20px;
  flex-direction: column; gap: 4px;
  transform: translateY(-8px); opacity: 0; transition: all 0.25s var(--ease); overflow-y: auto;
}
.nav-drawer.open { display: flex; transform: translateY(0); opacity: 1; }
.nav-drawer .nav-link { font-size: 15px; padding: 13px 16px; border-bottom: 1px solid var(--line); border-radius: 0; color: var(--ink); font-weight: 500; }
.nav-drawer .nav-link:last-child { border-bottom: none; }
.nav-drawer .btn-header { margin-top: 16px; justify-content: center; padding: 14px; font-size: 14px; }

/* ══════════════════════════════════════════
   MODALS DIVERS
   ══════════════════════════════════════════ */
.overlay {
  position: fixed; inset: 0; background: rgba(10,16,20,0.65); z-index: 999;
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); padding: 24px;
}
.overlay.open { display: flex; }
.modal {
  background: var(--bg2); border-radius: var(--r3); padding: 40px;
  max-width: 460px; width: 100%;
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both; position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close { position: absolute; top: 16px; right: 16px; width: 30px; height: 30px; border: none; background: var(--bg3); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ink3); transition: all var(--dur); }
.modal-close:hover { background: var(--line); color: var(--ink); }
.modal-close svg { width: 14px; height: 14px; }
.modal-icon { width: 68px; height: 68px; background: var(--sn-vert-l); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; position: relative; }
.modal-icon::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--sn-vert-l); animation: pulse-ring 1.5s ease-out 0.3s 3; }
.modal-icon svg { width: 28px; height: 28px; color: var(--sn-vert); }
.modal h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; text-align: center; margin-bottom: 10px; }
.modal-sub { text-align: center; font-size: 13px; color: var(--ink3); margin-bottom: 20px; }
.modal-ref-box { background: var(--bg3); border: 1px dashed var(--ink4); border-radius: var(--r); padding: 14px; text-align: center; margin-bottom: 16px; }
.modal-ref-lbl { font-size: 10px; font-weight: 700; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.modal-ref-num { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--sn-vert-d); letter-spacing: 0.1em; }
.modal-details { font-size: 12px; color: var(--ink3); margin-bottom: 24px; }
.modal-detail-row { display: flex; gap: 10px; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--line); }
.modal-detail-row:last-child { border-bottom: none; }
.modal-detail-row svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.modal-detail-row span { color: var(--ink); font-size: 12px; }
.modal-actions { display: flex; gap: 10px; }
.btn-modal-ok { flex: 1; background: var(--sn-vert); color: #fff; border: none; border-radius: var(--r); padding: 12px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'Outfit', sans-serif; transition: all var(--dur); }
.btn-modal-ok:hover { background: var(--sn-vert-m); }
.btn-modal-dl { flex: 1; background: var(--bg3); color: var(--ink); border: 1px solid var(--line); border-radius: var(--r); padding: 12px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'Outfit', sans-serif; display: flex; align-items: center; justify-content: center; gap: 7px; transition: all var(--dur); }
.btn-modal-dl:hover { background: var(--line); }
.btn-modal-dl svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .header-inner { padding: 0 24px; gap: 24px; }
  .hero-inner { padding: 52px 24px; gap: 40px; }
  .container { padding: 0 24px; }
  .footer-grid { gap: 32px; }
}
@media (max-width: 960px) {
  nav { display: none; }
  .btn-header { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 48px 24px; }
  .hero-card { display: none; }
  .hero-title { font-size: 2.1rem; }
  .hero-stats { gap: 28px; }
  .progress-inner { overflow-x: auto; padding: 0 24px; gap: 0; scrollbar-width: none; }
  .progress-inner::-webkit-scrollbar { display: none; }
  .step-indicator { white-space: nowrap; flex-shrink: 0; }
  .main-grid { grid-template-columns: 1fr; gap: 24px; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .rdv-counter { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid .footer-col:first-child { grid-column: 1 / -1; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .pay-methods-grid { grid-template-columns: 1fr 1fr; }
  .logo-divider { display: none; }
  .interpol-badge { display: none; }
}
@media (max-width: 720px) {
  .hero-inner { padding: 36px 20px; }
  .hero-title { font-size: 1.85rem; }
  .section-hd h2 { font-size: 1.4rem; }
  .frow-2 { grid-template-columns: 1fr; }
  .frow-3 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid .footer-col:first-child { grid-column: 1; }
}
@media (max-width: 480px) {
  .topbar { display: none; }
  .header-inner { padding: 0 16px; height: 62px; }
  .logo-sub { display: none; }
  .hero-inner { padding: 28px 16px 32px; }
  .hero-title { font-size: 1.6rem; line-height: 1.2; }
  .progress-wrap { top: 0; }
  .progress-inner { padding: 0 16px; height: 48px; }
  .step-indicator { font-size: 11px; padding: 0 10px; gap: 6px; }
  .container { padding: 0 16px; }
  .main { padding: 24px 0 60px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .modal { padding: 28px 20px; border-radius: 18px; }
  .modal-actions { flex-direction: column; }
  .success-actions { flex-direction: column; }
  .pay-modal { padding: 24px 18px; }
  .pay-success-modal { padding: 28px 20px; }
  footer { padding: 40px 16px 20px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .toast { bottom: 16px; right: 16px; left: 16px; }
}
@media (max-width: 360px) {
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .progress-inner { padding: 0 12px; }
}