/* ════════════════════════════════════════════════════════════════════════
   B'ELARA — belara.ma — Design system landing WOW
   Esthetique : luxe editorial (magazine beaute), palette navy/rose/gold.
   Font : Plus Jakarta Sans (identique a l'app).
   ════════════════════════════════════════════════════════════════════════ */

:root {
  /* Palette signature B'ELARA (identique a l'app) */
  --navy: #1A2238;
  --navy-light: #2D3A52;
  --rose: #D4567A;
  --rose-deep: #C2405E;
  --rose-pale: #FFF0F3;
  --gold: #D4A574;
  --gold-light: #F5E6D3;
  --gold-deep: #B8895A;
  --cream: #FAF7F3;
  --cream-2: #FDFBF8;
  --ink: #1A2238;
  --ink-soft: #5E6D7F;
  --hairline: rgba(212, 165, 116, 0.22);

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

[dir="rtl"] { font-family: var(--font); }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ─── Typographie editoriale ─── */
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
}

h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.05; font-weight: 800; }

.dot { color: var(--rose); }

/* ─── Layout ─── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ════════════════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  background: rgba(250, 247, 243, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, padding 0.4s;
}
.nav.scrolled { border-bottom-color: var(--hairline); padding: 12px 32px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.nav-logo-img { height: 46px; width: auto; transition: height 0.4s; }
.nav.scrolled .nav-logo-img { height: 38px; }
.nav-logo .mark {
  width: 34px; height: 34px; border-radius: 9px; background: var(--navy);
  display: grid; place-items: center; color: var(--rose); font-size: 19px; font-weight: 800;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--ink-soft); transition: color 0.3s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  padding: 10px 20px; background: var(--navy); color: #fff !important;
  border-radius: 100px; font-size: 13px !important; font-weight: 700 !important;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(26,34,56,0.25); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 110;
}
.nav-burger span {
  display: block; width: 26px; height: 2.5px; background: var(--navy);
  border-radius: 3px; transition: transform 0.35s var(--ease), opacity 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 105;
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 40px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
  font-size: 24px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em;
  padding: 12px; text-align: center;
}
.mobile-menu .mobile-menu-cta {
  margin-top: 18px; padding: 16px 40px; background: var(--navy); color: #fff;
  border-radius: 100px; font-size: 17px;
}

/* ════════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 60px; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
}
.hero-eyebrow { margin-bottom: 22px; opacity: 0; animation: rise 0.9s var(--ease) 0.1s forwards; }
.hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  margin-bottom: 24px;
  opacity: 0; animation: rise 0.9s var(--ease) 0.2s forwards;
}
.hero h1 .line2 { color: var(--navy); }
.hero-sub {
  font-size: clamp(16px, 2vw, 19px); color: var(--ink-soft); font-weight: 500;
  max-width: 480px; margin-bottom: 36px; line-height: 1.6;
  opacity: 0; animation: rise 0.9s var(--ease) 0.35s forwards;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: rise 0.9s var(--ease) 0.5s forwards; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 100px; font-size: 15px; font-weight: 700;
  transition: transform 0.3s var(--ease), box-shadow 0.35s; cursor: pointer; border: none;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(26,34,56,0.28); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--hairline); }
.btn-ghost:hover { border-color: var(--gold); background: var(--cream-2); transform: translateY(-3px); }

.hero-trust {
  display: flex; align-items: center; gap: 22px; margin-top: 36px;
  opacity: 0; animation: rise 0.9s var(--ease) 0.65s forwards;
}
.hero-trust .stat-num { font-size: 26px; font-weight: 800; color: var(--navy); }
.hero-trust .stat-lbl { font-size: 12px; color: var(--ink-soft); font-weight: 600; }
.hero-trust .vline { width: 1px; height: 34px; background: var(--hairline); }

/* halo decoratif */
.hero-watermark {
  position: absolute; bottom: -60px; left: -80px; width: 380px; height: auto;
  opacity: 0.05; pointer-events: none; z-index: 0;
}
.hero::before {
  content: ''; position: absolute; top: -10%; right: -5%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,86,122,0.10), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -20%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,165,116,0.12), transparent 65%);
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════════════════
   PHONE MOCKUPS (recrees en CSS pur)
   ════════════════════════════════════════════════════════════════════════ */
.phones { position: relative; display: flex; justify-content: center; align-items: center; min-height: 600px; }

.phone {
  position: relative; width: 250px; border-radius: 42px;
  background: var(--navy); padding: 11px;
  box-shadow: 0 40px 90px rgba(26,34,56,0.35), 0 8px 24px rgba(26,34,56,0.2);
}
.phone-screen {
  border-radius: 32px; overflow: hidden; background: var(--cream);
  aspect-ratio: 9 / 19.5; position: relative;
}
/* iOS notch */
.phone.ios .notch {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: var(--navy); border-radius: 0 0 16px 16px; z-index: 5;
}
/* Android punch-hole */
.phone.android .punch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; background: var(--navy); border-radius: 50%; z-index: 5;
}
.phone.behind {
  position: absolute; left: 50%;
  transform: translateX(-14%) scale(0.82) rotate(8deg);
  transform-origin: bottom center;
  filter: brightness(0.98); z-index: 1;
}
.phone.front {
  z-index: 2;
  transform: translateX(-66%) rotate(-4deg);
  transform-origin: bottom center;
}

.os-tag {
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  padding: 5px 14px; border-radius: 100px; font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; background: #fff; color: var(--navy);
  box-shadow: 0 6px 16px rgba(26,34,56,0.15); white-space: nowrap; z-index: 6;
}

/* ── Contenu d'ecran simule ── */
.scr { height: 100%; display: flex; flex-direction: column; font-size: 10px; }
.scr-head { padding: 34px 16px 12px; }
.scr-eyebrow { font-size: 7px; font-weight: 800; letter-spacing: 2px; color: var(--gold-deep); }
.scr-title { font-size: 20px; font-weight: 800; color: var(--navy); line-height: 1.05; margin-top: 4px; letter-spacing: -0.02em; }
.scr-search {
  margin: 12px 16px; padding: 11px 14px; background: #fff; border-radius: 14px;
  display: flex; align-items: center; gap: 8px; color: var(--ink-soft); font-size: 9px;
  box-shadow: 0 4px 14px rgba(26,34,56,0.06);
}
.scr-search .mag { width: 12px; height: 12px; border: 1.6px solid var(--gold); border-radius: 50%; position: relative; }
.scr-search .mag::after { content:''; position:absolute; width:5px; height:1.6px; background:var(--gold); transform: rotate(45deg); bottom:-1px; right:-3px; }
.scr-concierge {
  margin: 4px 16px 0; padding: 14px; border-radius: 16px; background: var(--navy);
  color: #fff; display: flex; align-items: center; gap: 10px;
}
.scr-concierge .ci { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold)); display: grid; place-items: center; flex-shrink: 0; }
.scr-concierge .ci span { font-size: 16px; }
.scr-concierge .ct { font-size: 8px; font-weight: 800; letter-spacing: 1.4px; color: var(--gold); }
.scr-concierge .cd { font-size: 12px; font-weight: 800; margin-top: 1px; }
.scr-cats { padding: 14px 16px 0; }
.scr-cats-label { font-size: 7px; font-weight: 800; letter-spacing: 2px; color: var(--gold-deep); }
.scr-cats-title { font-size: 16px; font-weight: 800; color: var(--navy); margin: 3px 0 10px; }
.scr-cat-row { display: flex; gap: 8px; }
.scr-cat {
  flex: 1; border-radius: 13px; overflow: hidden; background: #fff;
  box-shadow: 0 4px 12px rgba(26,34,56,0.06);
}
.scr-cat .img { height: 56px; background-size: cover; background-position: center; }
.scr-cat .c1 { background: linear-gradient(135deg, #3a2a2f, #5e4248); }
.scr-cat .c2 { background: linear-gradient(135deg, #e8d5c4, #d4b196); }
.scr-cat .c3 { background: linear-gradient(135deg, #c9a896, #8f6f5e); }
.scr-cat .meta { padding: 7px 8px; }
.scr-cat .nm { font-size: 9px; font-weight: 800; color: var(--navy); }
.scr-cat .pr { font-size: 7px; color: var(--gold-deep); font-weight: 700; margin-top: 1px; }

/* ecran 2 (prestataire / booking) */
.scr2-hero { background: var(--navy); padding: 30px 16px 18px; color: #fff; }
.scr2-back { width: 24px; height: 24px; border-radius: 50%; border: 1px solid rgba(212,165,116,0.5); display: grid; place-items: center; color: var(--gold); font-size: 11px; }
.scr2-name { font-size: 18px; font-weight: 800; margin-top: 14px; }
.scr2-row { display: flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 9px; color: rgba(255,255,255,0.7); }
.scr2-online { display:inline-flex; align-items:center; gap:4px; padding: 3px 8px; border-radius: 100px; background: rgba(30,168,94,0.16); color: #1EA85E; font-size: 7px; font-weight: 800; letter-spacing: 1px; }
.scr2-online .dot-g { width: 5px; height: 5px; border-radius: 50%; background: #1EA85E; }
.scr2-medals { display: flex; gap: 4px; margin-top: 10px; }
.scr2-medals .m { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.scr2-medals .m.empty { background: #fff; border: 1px solid var(--hairline); }
.scr2-body { padding: 14px 16px; }
.scr2-slot-label { font-size: 8px; font-weight: 800; letter-spacing: 1.5px; color: var(--gold-deep); }
.scr2-slots { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.scr2-slot { padding: 7px 11px; border-radius: 10px; background: #fff; font-size: 9px; font-weight: 700; color: var(--navy); box-shadow: 0 3px 10px rgba(26,34,56,0.06); }
.scr2-slot.sel { background: var(--rose); color: #fff; }
.scr2-cta { margin: 14px 16px; padding: 13px; border-radius: 14px; background: var(--navy); color: var(--gold); text-align: center; font-size: 11px; font-weight: 800; }

/* ════════════════════════════════════════════════════════════════════════
   SECTIONS GENERIQUES
   ════════════════════════════════════════════════════════════════════════ */
.section-pad { padding: 110px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; display: block; }
.section-head h2 { font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 18px; }
.section-head p { font-size: 17px; color: var(--ink-soft); font-weight: 500; line-height: 1.6; }

/* reveal au scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ─── Categories ─── */
.cats-band { background: var(--navy); color: #fff; }
.cats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-pill {
  border-radius: 20px; overflow: hidden; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,165,116,0.18); transition: transform 0.4s var(--ease), border-color 0.4s;
}
.cat-pill:hover { transform: translateY(-6px); border-color: var(--gold); }
.cat-pill:hover .cat-img { transform: scale(1.06); }
.cat-img { height: 130px; background-size: cover; background-position: center; transition: transform 0.6s var(--ease); }
.cat-pill .cat-body { padding: 18px 20px 22px; }
.cat-pill .nm { font-size: 17px; font-weight: 800; }
.cat-pill .desc { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 6px; }
.cats-band .section-head h2 { color: #fff; }
.cats-band .section-head p { color: rgba(255,255,255,0.7); }

/* ─── Steps (comment ca marche) ─── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step { position: relative; padding: 32px; border-radius: 24px; background: var(--cream-2); border: 1px solid var(--hairline); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.step:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(26,34,56,0.10); }
.step .num { font-size: 13px; font-weight: 800; color: var(--gold-deep); letter-spacing: 2px; }
.step h3 { font-size: 22px; margin: 14px 0 10px; }
.step p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.step .ic { width: 52px; height: 52px; border-radius: 15px; background: var(--rose-pale); display: grid; place-items: center; font-size: 26px; margin-bottom: 18px; }

/* ─── Features (split) ─── */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 120px; }
.feature:last-child { margin-bottom: 0; }
.feature.reverse .feat-visual { order: 2; }
.feature h3 { font-size: clamp(26px, 3.5vw, 40px); margin: 16px 0 18px; }
.feature p { font-size: 16px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 22px; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feat-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 500; }
.feat-list .chk { width: 22px; height: 22px; border-radius: 50%; background: var(--rose-pale); color: var(--rose); display: grid; place-items: center; flex-shrink: 0; font-weight: 800; font-size: 12px; }
.feat-visual {
  border-radius: 28px; min-height: 360px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: grid; place-items: center;
}
.feat-visual.gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.feat-visual.rose { background: linear-gradient(135deg, var(--rose-pale), var(--rose-muted, #D4899E)); }
.feat-visual .big-emoji { font-size: 120px; opacity: 0.92; }
.feat-visual .float-card {
  position: absolute; background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 20px 44px rgba(26,34,56,0.22); font-size: 13px; font-weight: 700; color: var(--navy);
}
.feat-visual .fc1 { top: 30px; left: 24px; }
.feat-visual .fc2 { bottom: 34px; right: 24px; display: flex; align-items: center; gap: 8px; }
.feat-visual .fc2 .gdot { width: 9px; height: 9px; border-radius: 50%; background: #1EA85E; }

/* ─── Trust / securite ─── */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-card { padding: 30px; border-radius: 22px; background: var(--cream-2); border: 1px solid var(--hairline); text-align: center; }
.trust-card .ic { font-size: 34px; margin-bottom: 14px; }
.trust-card h4 { font-size: 18px; margin-bottom: 8px; }
.trust-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* ─── Prestataire CTA band ─── */
.pro-band { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff; border-radius: 36px; padding: 70px 56px; position: relative; overflow: hidden; }
.pro-band::before { content:''; position:absolute; top:-30%; right:-10%; width:400px; height:400px; border-radius:50%; background: radial-gradient(circle, rgba(212,165,116,0.18), transparent 65%); }
.pro-band-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.pro-band h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.pro-band p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 28px; }
.pro-stats { display: flex; flex-direction: column; gap: 18px; }
.pro-stat { padding: 22px; border-radius: 18px; background: rgba(255,255,255,0.05); border: 1px solid rgba(212,165,116,0.2); }
.pro-stat .n { font-size: 30px; font-weight: 800; color: var(--gold); }
.pro-stat .l { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(212,165,116,0.4); }

/* ─── Download band ─── */
.dl-band { text-align: center; }
.dl-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.dl-badge {
  display: inline-flex; align-items: center; gap: 12px; padding: 14px 24px;
  border-radius: 16px; background: var(--navy); color: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.35s;
}
.dl-badge:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(26,34,56,0.25); }
.dl-badge .glyph { font-size: 28px; }
.dl-badge .bt { text-align: left; }
.dl-badge .s1 { font-size: 10px; opacity: 0.7; }
.dl-badge .s2 { font-size: 16px; font-weight: 800; }

/* ════════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════════ */
.footer { background: var(--navy); color: #fff; padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; margin-bottom: 16px; }
.footer-logo .mark { width: 36px; height: 36px; border-radius: 10px; background: rgba(212,165,116,0.15); display: grid; place-items: center; color: var(--gold); font-size: 20px; }
.footer-tag { font-size: 14px; color: rgba(255,255,255,0.6); max-width: 280px; line-height: 1.6; }
.footer-col h5 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.5); }

/* ─── Lang switch ─── */
.lang-switch {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: flex; background: #fff; border-radius: 100px; padding: 5px;
  box-shadow: 0 10px 30px rgba(26,34,56,0.18); border: 1px solid var(--hairline);
}
.lang-switch button {
  border: none; background: transparent; padding: 8px 16px; border-radius: 100px;
  font-family: var(--font); font-size: 13px; font-weight: 700; color: var(--ink-soft);
  cursor: pointer; transition: all 0.3s;
}
.lang-switch button.active { background: var(--navy); color: #fff; }

/* ─── Legal pages ─── */
.legal { max-width: 800px; margin: 0 auto; padding: 140px 24px 80px; }
.legal h1 { font-size: 40px; margin-bottom: 12px; }
.legal .updated { font-size: 14px; color: var(--ink-soft); margin-bottom: 40px; }
.legal h2 { font-size: 22px; margin: 36px 0 14px; color: var(--navy); }
.legal p, .legal li { font-size: 15px; color: #3d4757; line-height: 1.7; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal a { color: var(--rose-deep); font-weight: 600; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px; font-weight: 700; color: var(--gold-deep); }

/* ─── Galerie packs evenements ─── */
.packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pack-card {
  position: relative; border-radius: 24px; overflow: hidden; min-height: 420px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.pack-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,34,56,0.92) 0%, rgba(26,34,56,0.4) 45%, transparent 75%);
  transition: opacity 0.5s;
}
.pack-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(26,34,56,0.28); }
.pack-card:hover::after { opacity: 0.85; }
.pack-overlay { position: relative; z-index: 2; padding: 28px; color: #fff; }
.pack-tag { font-size: 10px; font-weight: 800; letter-spacing: 2.5px; color: var(--gold-light); }
.pack-overlay h3 { font-size: 28px; margin: 8px 0 10px; color: #fff; }
.pack-overlay p { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.85); }

/* ─── Temoignages ─── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  padding: 32px; border-radius: 22px; background: #fff;
  border: 1px solid var(--hairline); box-shadow: 0 14px 40px rgba(26,34,56,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 24px 54px rgba(26,34,56,0.12); }
.testi-seals { color: var(--gold); font-size: 17px; letter-spacing: 3px; margin-bottom: 16px; }
.testi-card p { font-size: 15px; line-height: 1.6; color: var(--ink); font-weight: 500; margin-bottom: 18px; }
.testi-author { font-size: 12px; font-weight: 800; letter-spacing: 1px; color: var(--gold-deep); text-transform: uppercase; }

/* ─── FAQ accordeon ─── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--hairline); border-radius: 16px; background: var(--cream-2); overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: var(--gold); }
.faq-q {
  width: 100%; border: none; background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; font-family: var(--font); font-size: 16px; font-weight: 700;
  color: var(--navy); text-align: left;
}
[dir="rtl"] .faq-q { text-align: right; }
.faq-ic { font-size: 24px; font-weight: 400; color: var(--gold-deep); transition: transform 0.35s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 24px 22px; font-size: 15px; line-height: 1.65; color: var(--ink-soft); }

/* ─── WhatsApp flottant ─── */
.wa-float {
  position: fixed; bottom: 90px; right: 24px; z-index: 91;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: wapulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 14px 38px rgba(37,211,102,0.6); }
@keyframes wapulse { 0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,0.45); } 50% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0.12); } }

/* ─── Halo souris hero ─── */
.hero-cursor {
  position: fixed; width: 400px; height: 400px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(212,86,122,0.08), transparent 70%);
  transform: translate(-50%, -50%); z-index: 0; opacity: 0; transition: opacity 0.4s;
}

/* ════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════════════════════════════ */
@keyframes rise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.phone.front { animation: floaty 6s ease-in-out infinite; }
.phone.behind { animation: floaty 6s ease-in-out infinite 0.5s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════ */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .phones { min-height: 520px; margin-top: 20px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .feature, .feature.reverse .feat-visual { grid-template-columns: 1fr; order: 0; }
  .feature .feat-visual { order: -1; }
  .trust-grid { grid-template-columns: 1fr; }
  .packs-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .pro-band-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 540px) {
  .wrap { padding: 0 18px; }
  .nav { padding: 14px 18px; }
  .section-pad { padding: 72px 0; }
  .cats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pro-band { padding: 44px 28px; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .phone { width: 230px; }
  .phone.behind { display: none; }
  .phone.front { transform: none; }
}
