/* ═══════════════════════════════════════════════
   RESERVATION.CSS — Salle de Jeu
   Design: Rétro-futuriste gaming — Néon sur noir
═══════════════════════════════════════════════ */

:root {
  --bg:        #08090d;
  --bg2:       #0d0f16;
  --bg3:       #111420;
  --bg-card:   #0f1118;
  --cyan:      #00e5ff;
  --cyan-dim:  rgba(0,229,255,.15);
  --cyan-glow: rgba(0,229,255,.3);
  --violet:    #b44fff;
  --violet-dim:rgba(180,79,255,.15);
  --green:     #39ff14;
  --green-dim: rgba(57,255,20,.12);
  --amber:     #ffb300;
  --pink:      #ff2d78;
  --white:     #e8eaf6;
  --grey:      #4a4e6a;
  --grey-light:#8890b8;

  --font-hud:  'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --font-body: 'Nunito', sans-serif;

  --radius:    12px;
  --radius-sm: 8px;
  --transition:.25s cubic-bezier(.4,0,.2,1);
  --glow-cyan: 0 0 12px rgba(0,229,255,.5), 0 0 30px rgba(0,229,255,.2);
  --glow-violet:0 0 12px rgba(180,79,255,.5), 0 0 30px rgba(180,79,255,.2);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100dvh;
}
a { color: var(--cyan); text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: .95rem;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

/* ─── Scanlines ─── */
.scanlines {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,.07) 3px,
    rgba(0,0,0,.07) 4px
  );
}

/* ─── BG Canvas ─── */
#bgCanvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: .45;
}

/* ─── NAV ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,9,13,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,229,255,.15);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: .85rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.nav-back {
  font-family: var(--font-mono); font-size: .75rem;
  color: var(--grey-light);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-back:hover { color: var(--cyan); }
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
}
.pixel-icon { font-size: 1.4rem; }
.logo-main {
  font-family: var(--font-hud); font-size: 1rem; font-weight: 700;
  color: var(--cyan); letter-spacing: .08em; text-transform: uppercase;
}
.logo-sub { font-size: .65rem; color: var(--grey-light); letter-spacing: .06em; }
.nav-status {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: .7rem; color: var(--green);
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.5s ease infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: .3; }
}

/* ─── HERO ─── */
.hero {
  position: relative; z-index: 1;
  min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(0,229,255,.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(180,79,255,.05) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-tag {
  font-family: var(--font-mono);
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: var(--cyan); letter-spacing: .3em;
  margin-bottom: 1.2rem;
}
.glitch {
  position: relative;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; right: 0;
  overflow: hidden;
}
.glitch::before {
  color: var(--violet);
  animation: glitch1 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
.glitch::after {
  color: var(--green);
  animation: glitch2 4s infinite;
  clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
}
@keyframes glitch1 {
  0%,90%,100% { transform: translateX(0); opacity: 0; }
  92% { transform: translateX(-4px); opacity: .8; }
  94% { transform: translateX(4px); opacity: .8; }
  96% { transform: translateX(0); opacity: 0; }
}
@keyframes glitch2 {
  0%,88%,100% { transform: translateX(0); opacity: 0; }
  90% { transform: translateX(3px); opacity: .7; }
  93% { transform: translateX(-3px); opacity: .7; }
  95% { transform: translateX(0); opacity: 0; }
}

.hero-title {
  display: flex; flex-direction: column;
  font-family: var(--font-hud);
  font-size: clamp(2.5rem, 9vw, 5.5rem);
  font-weight: 700; line-height: 1.0;
  text-transform: uppercase; letter-spacing: .02em;
  margin-bottom: 1rem;
}
.title-line1 { color: var(--white); }
.title-line2 { color: var(--cyan); text-shadow: var(--glow-cyan); }
.title-line2 em { color: var(--violet); font-style: normal; text-shadow: var(--glow-violet); }

.hero-sub {
  font-size: clamp(.8rem, 2vw, .95rem);
  color: var(--grey-light); line-height: 1.8;
  margin-bottom: 1.5rem;
}
.hero-chips { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.chip {
  font-family: var(--font-mono); font-size: .72rem;
  padding: .3rem .8rem; border-radius: 4px;
  background: var(--bg3);
  border: 1px solid rgba(0,229,255,.2);
  color: var(--cyan);
}

.hero-scroll {
  margin-top: 3rem;
  font-family: var(--font-mono); font-size: .75rem;
  color: var(--grey); letter-spacing: .1em;
  animation: float 2s ease infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─── MAIN / WIZARD ─── */
main {
  position: relative; z-index: 1;
  padding: 2rem 1.5rem 4rem;
}
.wizard-container {
  max-width: 820px; margin: 0 auto;
}

/* ─── STEPPER ─── */
.stepper {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 2.5rem; flex-wrap: nowrap;
  overflow-x: auto; padding-bottom: .5rem;
}
.step-item {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  min-width: 52px;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--grey);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: .8rem;
  color: var(--grey);
  transition: all var(--transition);
}
.step-label {
  font-family: var(--font-hud); font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--grey);
  transition: color var(--transition);
}
.step-item.active .step-num {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--glow-cyan);
  background: rgba(0,229,255,.08);
}
.step-item.active .step-label { color: var(--cyan); }
.step-item.done .step-num {
  border-color: var(--green);
  background: var(--green);
  color: var(--bg);
}
.step-item.done .step-label { color: var(--green); }
.step-line {
  flex: 1; height: 2px;
  background: var(--grey); opacity: .3;
  min-width: 20px; max-width: 60px;
}

/* ─── STEP PANELS ─── */
.step-panel {
  display: none;
  animation: fadeUp .35s ease both;
}
.step-panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.panel-header { margin-bottom: 2rem; }
.panel-tag {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .15em; color: var(--cyan);
  margin-bottom: .5rem;
}
.panel-title {
  font-family: var(--font-hud);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--white); line-height: 1.1;
}
.panel-title em { color: var(--cyan); font-style: normal; text-shadow: var(--glow-cyan); }
.panel-desc {
  margin-top: .5rem; font-size: .9rem; color: var(--grey-light);
}

/* ─── FORFAITS GRID ─── */
.forfaits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem; margin-bottom: 1.5rem;
}
.forfait-card {
  background: var(--bg-card);
  border: 2px solid var(--grey);
  border-radius: var(--radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.forfait-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--card-color, var(--cyan));
  opacity: 0; transition: opacity var(--transition);
}
.forfait-card:hover, .forfait-card.selected {
  border-color: var(--card-color, var(--cyan));
  background: rgba(0,229,255,.04);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,229,255,.1);
}
.forfait-card.selected::before { opacity: 1; }
.forfait-badge {
  position: absolute; top: .75rem; right: .75rem;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .08em;
  padding: .2rem .6rem; border-radius: 4px;
  background: var(--amber); color: var(--bg);
}
.forfait-emoji { font-size: 2rem; margin-bottom: .5rem; }
.forfait-nom {
  font-family: var(--font-hud); font-size: 1.05rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--white); margin-bottom: .2rem;
}
.forfait-horaire {
  font-family: var(--font-mono); font-size: .78rem;
  color: var(--cyan); margin-bottom: .5rem;
}
.forfait-desc { font-size: .8rem; color: var(--grey-light); margin-bottom: .8rem; line-height: 1.5; }
.forfait-prix-block {
  display: flex; flex-direction: column; gap: .3rem;
}
.forfait-prix {
  font-family: var(--font-hud); font-size: 1.4rem; font-weight: 700;
  color: var(--card-color, var(--cyan));
}
.forfait-prive {
  font-size: .75rem; color: var(--grey-light);
}
.forfait-prive strong { color: var(--violet); }
.check-indicator {
  position: absolute; bottom: .75rem; right: .75rem;
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--grey);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: transparent;
  transition: all var(--transition);
}
.forfait-card.selected .check-indicator {
  background: var(--card-color, var(--cyan));
  border-color: var(--card-color, var(--cyan));
  color: var(--bg);
  box-shadow: 0 0 10px var(--card-color, var(--cyan));
}

/* ─── HEURE BLOCK ─── */
.heure-block {
  background: var(--bg-card);
  border: 2px solid var(--grey);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  transition: border-color var(--transition);
}
.heure-block.selected {
  border-color: var(--cyan);
  background: rgba(0,229,255,.03);
}
.heure-header input[type="radio"] { display: none; }
.heure-label-main {
  display: flex; align-items: center; gap: .75rem;
  cursor: pointer; font-family: var(--font-hud);
  font-size: 1rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em;
}
.heure-emoji { font-size: 1.8rem; }
.heure-badge {
  margin-left: auto;
  font-family: var(--font-mono); font-size: .65rem;
  padding: .2rem .7rem; border-radius: 4px;
  border: 1px solid var(--cyan); color: var(--cyan);
}
.heure-detail { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(0,229,255,.1); }
.heure-inputs {
  display: flex; align-items: flex-end; gap: 1rem; flex-wrap: wrap;
}
.heure-arrow {
  font-size: 1.5rem; color: var(--cyan); padding-bottom: .6rem;
  flex-shrink: 0;
}
.heure-inputs .form-group { flex: 1; min-width: 120px; }
.heure-prix-preview {
  margin-top: 1rem;
  padding: .75rem 1rem;
  background: rgba(0,229,255,.06);
  border: 1px solid rgba(0,229,255,.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono); font-size: .85rem; color: var(--cyan);
}

/* ─── SESSIONS GRID ─── */
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem; margin-bottom: 2rem;
}
.session-card {
  background: var(--bg-card);
  border: 2px solid var(--grey);
  border-radius: var(--radius);
  padding: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: .4rem;
}
.session-card:hover, .session-card.selected {
  border-color: var(--violet);
  background: var(--violet-dim);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(180,79,255,.15);
}
.session-emoji { font-size: 1.8rem; }
.session-nom {
  font-family: var(--font-hud); font-size: .95rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--white);
}
.session-desc { font-size: .78rem; color: var(--grey-light); line-height: 1.4; }
.session-card.selected .session-nom { color: var(--violet); }

/* ─── MODE CARDS ─── */
.mode-block { margin-bottom: 1.5rem; }
.mode-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mode-card {
  background: var(--bg-card);
  border: 2px solid var(--grey);
  border-radius: var(--radius);
  padding: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: .5rem;
}
.mode-card:hover, .mode-card.selected {
  border-color: var(--cyan);
  background: var(--cyan-dim);
}
.mode-icon { font-size: 1.8rem; }
.mode-name {
  font-family: var(--font-hud); font-size: .95rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--white);
}
.mode-card.selected .mode-name { color: var(--cyan); }
.mode-desc { font-size: .78rem; color: var(--grey-light); line-height: 1.4; }
.mode-price-tag {
  font-family: var(--font-mono); font-size: .8rem;
  color: var(--amber); margin-top: .25rem;
}
.neon-cyan { color: var(--cyan) !important; }

/* ─── PARTICIPANTS ─── */
.participants-selector {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  padding: 2rem 0;
}
.participants-display {
  display: flex; align-items: center; gap: 1.5rem;
}
.pax-btn {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--cyan);
  color: var(--cyan); font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  font-family: var(--font-hud);
}
.pax-btn:hover:not(:disabled) {
  background: var(--cyan-dim);
  box-shadow: var(--glow-cyan);
}
.pax-btn:disabled { border-color: var(--grey); color: var(--grey); cursor: not-allowed; }
.pax-count {
  font-family: var(--font-hud); font-size: 4rem; font-weight: 700;
  color: var(--cyan); text-shadow: var(--glow-cyan);
  min-width: 80px; text-align: center;
}
.participants-icons {
  display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center;
  min-height: 2rem;
}
.pax-icon { font-size: 1.8rem; transition: all var(--transition); }
.participants-note {
  font-family: var(--font-mono); font-size: .8rem;
  color: var(--grey-light); text-align: center; max-width: 400px;
}

/* ─── FORM ─── */
.form-grid { display: flex; flex-direction: column; gap: .2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group {
  display: flex; flex-direction: column; gap: .4rem;
  margin-bottom: .75rem;
}
.form-group label {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--grey-light);
}
.required { color: var(--pink); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  background: var(--bg3);
  border: 1px solid var(--grey);
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey); }
.form-group select option { background: var(--bg3); }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.5) sepia(1) hue-rotate(160deg); }

/* ─── RÉCAP ─── */
.recap-box {
  background: var(--bg-card);
  border: 1px solid rgba(0,229,255,.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  margin-bottom: 1.2rem;
}
.recap-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.recap-row:last-child { border-bottom: none; padding-bottom: 0; }
.recap-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.recap-label {
  font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--grey-light); margin-bottom: .2rem;
}
.recap-value {
  font-family: var(--font-hud); font-size: 1rem;
  font-weight: 600; color: var(--white);
}
.recap-sub { font-size: .8rem; color: var(--grey-light); margin-top: .1rem; }
.recap-footer { margin-bottom: 1.5rem; }
.recap-total {
  font-family: var(--font-hud); font-size: 1.6rem; font-weight: 700;
  color: var(--cyan); text-shadow: var(--glow-cyan);
  margin-bottom: .4rem;
}
.recap-note {
  font-size: .8rem; color: var(--grey-light);
}

.form-msg {
  padding: .85rem 1.1rem; border-radius: var(--radius-sm);
  font-size: .9rem; margin-bottom: 1rem;
}
.form-msg.error { background: rgba(255,45,120,.1); border: 1px solid var(--pink); color: var(--pink); }
.form-msg.success { background: rgba(57,255,20,.08); border: 1px solid var(--green); color: var(--green); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-hud); font-size: .9rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  transition: all var(--transition);
}
.btn-next {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: var(--glow-cyan);
}
.btn-next:hover:not(:disabled) {
  background: #33ecff;
  box-shadow: 0 0 20px rgba(0,229,255,.7), 0 0 50px rgba(0,229,255,.3);
  transform: translateY(-2px);
}
.btn-next:disabled {
  background: var(--grey); color: var(--bg); box-shadow: none; cursor: not-allowed;
}
.btn-back {
  background: transparent;
  border: 2px solid var(--grey);
  color: var(--grey-light);
}
.btn-back:hover {
  border-color: var(--cyan); color: var(--cyan);
}
.btn-confirm {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: var(--bg);
  box-shadow: 0 0 20px rgba(180,79,255,.4);
  font-size: 1rem;
  padding: 1rem 2.5rem;
}
.btn-confirm:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(180,79,255,.6), 0 0 60px rgba(0,229,255,.3);
}
.step-nav {
  display: flex; justify-content: flex-end; gap: 1rem;
  margin-top: 2rem; align-items: center;
}

/* ─── SUCCESS MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,9,13,.92);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  max-width: 520px; width: 100%;
  background: var(--bg-card);
  border: 1px solid rgba(0,229,255,.25);
  border-radius: var(--radius);
  padding: 2.5rem;
  animation: slideUp .35s ease both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.success-modal { text-align: center; }
.success-anim {
  position: relative; display: inline-block;
  margin-bottom: 1.5rem;
}
.success-ring {
  width: 80px; height: 80px; border-radius: 50%;
  border: 3px solid var(--cyan);
  box-shadow: var(--glow-cyan);
  animation: pulse-ring 2s ease infinite;
  margin: 0 auto;
}
@keyframes pulse-ring {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: .7; }
}
.success-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem; color: var(--cyan);
  text-shadow: var(--glow-cyan);
}
.success-title {
  font-family: var(--font-hud); font-size: 2rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: .75rem;
}
.success-title em { color: var(--cyan); font-style: normal; text-shadow: var(--glow-cyan); }
.success-text { color: var(--grey-light); margin-bottom: 1.5rem; }
.success-info { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.success-info-item {
  display: flex; gap: .75rem; align-items: flex-start;
  background: var(--bg3); border-radius: var(--radius-sm);
  padding: .75rem 1rem; text-align: left;
  font-size: .85rem; color: var(--grey-light);
}

/* ─── FOOTER ─── */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(0,229,255,.1);
  padding: 1.5rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: .72rem; color: var(--grey);
}
.footer-inner a:hover { color: var(--cyan); }

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  .forfaits-grid, .sessions-grid { grid-template-columns: 1fr; }
  .mode-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .step-nav { flex-direction: column-reverse; }
  .btn { width: 100%; justify-content: center; }
  .stepper { justify-content: flex-start; gap: 0; }
  .step-label { display: none; }
  .heure-inputs { flex-direction: column; }
  .heure-arrow { display: none; }
}
@media (max-width: 400px) {
  .hero-title { font-size: 2rem; }
}
