/* ══════════════════════════════════════════
   ENTRESOEUR — STYLESHEET v2 (Brand Refresh)
   ══════════════════════════════════════════ */

:root {
  --primary:    #5C3D7A;
  --primary-dk: #4A2E63;
  --primary-lt: #EDE6F5;
  --lavender:   #D6C5E8;
  --rose:       #F5C6D6;
  --rose-light: #FFE6ED;
  --creme:      #FFF5E6;
  --gold:       #E1C48A;
  --sage:       #CFE3D2;
  --lilas:      #BEB7E6;
  --dark:       #3D2B52;
  --text:       #4A3866;
  --muted:      #9B8AAB;
  --border:     #EDE6F5;
  --white:      #FFFFFF;
  --success:    #3A8E5C;
  --radius:     16px;
  --shadow:     0 4px 24px rgba(92,61,122,.08);
  --shadow-lg:  0 12px 48px rgba(92,61,122,.14);
  --transition: .25s ease;
  --bg:         #FDFAFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
input, select, textarea, button { font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--primary-lt); }
::-webkit-scrollbar-thumb { background: var(--lavender); border-radius: 99px; }

/* ── LUCIDE ICONS ── */
[data-lucide] {
  width: 16px; height: 16px;
  stroke: currentColor; stroke-width: 1.8;
  fill: none; vertical-align: middle;
  display: inline-block; flex-shrink: 0;
}
.nav-arrow { width: 12px !important; height: 12px !important; }
.icon-lg { width: 22px !important; height: 22px !important; }
.icon-xl { width: 28px !important; height: 28px !important; }

/* ══════════════ HEADER ══════════════ */
#header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(253,250,255,.95);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(92,61,122,.06);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: .85rem 2rem;
  flex-wrap: nowrap;
}
.logo {
  display: flex; align-items: center;
  white-space: nowrap; flex-shrink: 0; text-decoration: none;
}
.logo-img {
  height: 58px; width: auto;
  object-fit: contain; display: block;
}
@media (max-width: 680px) { .logo-img { height: 48px; } }
.footer-brand .logo-img { filter: none !important; height: 80px; }

/* NAV */
.main-nav {
  display: flex; align-items: center; gap: .2rem;
  flex: 1; flex-wrap: wrap;
}
.nav-link {
  padding: .45rem .8rem; border-radius: 99px;
  font-size: .855rem; font-weight: 500; color: var(--text);
  transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-lt); }
.nav-sos { color: var(--primary) !important; font-weight: 600; }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 230px; padding: .5rem;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: var(--transition);
  z-index: 999;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: .7rem;
  padding: .6rem .9rem; border-radius: 10px;
  font-size: .85rem; color: var(--text);
  transition: var(--transition);
}
.dropdown-menu a [data-lucide] { color: var(--primary); }
.dropdown-menu a:hover { background: var(--primary-lt); color: var(--primary); }

/* HEADER ACTIONS */
.header-actions { display: flex; align-items: center; gap: .6rem; margin-left: auto; flex-shrink: 0; }
.btn-outline-sm {
  padding: .42rem 1rem; border: 1.5px solid var(--lavender);
  border-radius: 99px; font-size: .82rem; font-weight: 500;
  color: var(--primary); transition: var(--transition);
}
.btn-outline-sm:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary-sm {
  padding: .42rem 1rem; background: var(--primary);
  border-radius: 99px; font-size: .82rem; font-weight: 600;
  color: var(--white); transition: var(--transition);
}
.btn-primary-sm:hover { background: var(--primary-dk); }
.btn-deposer-header {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1.1rem; font-size: .8rem;
  white-space: nowrap;
}
.btn-deposer-header [data-lucide] { width: 14px; height: 14px; }
@media (max-width: 680px) {
  .btn-deposer-header { font-size: .72rem; padding: .42rem .8rem; }
  .btn-deposer-header span { display: none; }
}

/* ── Pro card badge Nouveau ── */
.pro-badge-new {
  display: inline-flex; align-items: center; gap: .25rem;
  background: var(--primary-lt); color: var(--primary);
  font-size: .72rem; font-weight: 700;
  padding: .15rem .55rem; border-radius: 99px;
}
.pro-badge-new [data-lucide] { width: 11px; height: 11px; }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  flex-shrink: 0; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--primary); border-radius: 2px; transition: var(--transition);
}

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #F3EBF9 0%, #FAF0F5 45%, #FFF5E6 100%);
  padding: 5rem 2rem 2.5rem;
  display: flex; flex-direction: column; align-items: center;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}
/* Decorative blobs */
.hero::before {
  content: ''; position: absolute;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,197,232,.45) 0%, transparent 70%);
  top: -120px; left: -80px; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,198,214,.4) 0%, transparent 70%);
  bottom: -60px; right: -60px; pointer-events: none;
}
.hero-content {
  position: relative; max-width: 780px; text-align: center; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--primary-lt); color: var(--primary);
  padding: .38rem 1rem; border-radius: 99px;
  font-size: .8rem; font-weight: 600; margin-bottom: 1.3rem;
  border: 1px solid var(--lavender);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--dark); line-height: 1.2; margin-bottom: 1rem;
}
.hero h1 em { font-style: italic; color: var(--primary); }
.hero-sub { color: var(--muted); font-size: 1rem; margin-bottom: 2rem; }

/* SEARCH BOX */
.hero-search-box {
  display: flex; gap: .6rem; flex-wrap: wrap;
  background: var(--white); border-radius: var(--radius);
  padding: .6rem; box-shadow: var(--shadow-lg);
  margin-bottom: 1.4rem;
  border: 1px solid var(--border);
}
.search-field {
  display: flex; align-items: center; gap: .5rem;
  flex: 1; min-width: 160px;
  background: var(--bg); border-radius: 10px; padding: .55rem .9rem;
}
.search-field [data-lucide] { color: var(--primary); }
.search-field input { border: none; background: none; outline: none; font-size: .9rem; width: 100%; color: var(--text); }
.search-field input::placeholder { color: var(--muted); }
.btn-search {
  background: var(--primary); color: #fff;
  border: none; border-radius: 99px; padding: .65rem 1.6rem;
  font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap;
  font-size: .9rem;
}
.btn-search:hover { background: var(--primary-dk); }

/* ── AUTOCOMPLETE DROPDOWN ── */
.ac-wrap { position: relative; flex: 1; min-width: 160px; display: flex; }
.ac-wrap .search-field { width: 100%; flex: 1; }
.autocomplete-list {
  position: fixed; /* attaché au body — échappe à tous les stacking contexts */
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; box-shadow: 0 8px 32px rgba(99,102,241,.18);
  list-style: none; margin: 0; padding: 6px 0;
  z-index: 999999; max-height: 260px; overflow-y: auto;
  display: none;
}
.autocomplete-list.open { display: block; }
.autocomplete-item {
  padding: .52rem 1.1rem; font-size: .88rem; cursor: pointer;
  color: var(--text); transition: background .12s;
  border-radius: 8px; margin: 1px 6px;
}
.autocomplete-item:hover,
.autocomplete-item.ac-active { background: var(--primary-lt); color: var(--primary); }
.autocomplete-item strong { color: var(--primary); font-weight: 700; }
.autocomplete-list::-webkit-scrollbar { width: 5px; }
.autocomplete-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }

/* ══════════════════════════════════════════
   BANNIÈRES PARTENAIRES
   ══════════════════════════════════════════ */
.partner-banner-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: .8rem 2rem;
  text-align: center;
}
.partner-label {
  display: inline-block;
  font-size: .62rem; font-weight: 600; letter-spacing: .07em;
  color: #bbb; text-transform: uppercase;
  margin-bottom: .35rem;
}
.partner-banner-link {
  display: block;
  border-radius: 10px; overflow: hidden;
  transition: transform .2s ease;
  border: 1px solid var(--border);
}
.partner-banner-link:hover { transform: translateY(-2px); }
.partner-banner-img {
  width: 100%; height: auto;
  display: block;
}
@media (max-width: 680px) {
  .partner-banner-wrap { padding: .6rem 1rem; }
}

/* HERO TAGS */
.hero-tags { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.hero-tags span {
  background: var(--white); color: var(--primary);
  padding: .3rem .9rem; border-radius: 99px;
  font-size: .8rem; cursor: pointer; transition: var(--transition);
  border: 1px solid var(--lavender); font-weight: 500;
}
.hero-tags span:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* STATS */
.hero-stats {
  position: relative; z-index: 1;
  display: flex; gap: 0; margin-top: 3rem; width: 100%;
  max-width: 860px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.stat {
  flex: 1; text-align: center; padding: 1.2rem 1rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-n {
  display: block; font-size: 1.8rem; font-weight: 700;
  color: var(--primary); font-family: 'Playfair Display', serif;
}
.stat-l { font-size: .75rem; color: var(--muted); font-weight: 500; }

/* ══════════════ EXPLORE / MAP SECTION ══════════════ */
.explore-section {
  padding: 3rem 2rem; max-width: 1400px; margin: 0 auto;
}
.explore-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem;
}
.explore-header h2 { font-size: 1.6rem; color: var(--dark); font-family: 'Playfair Display', serif; }
.tab-bar { display: flex; gap: .4rem; }
.tab-btn {
  display: flex; align-items: center; gap: .4rem;
  padding: .5rem 1.2rem; border-radius: 99px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: .85rem; font-weight: 500; cursor: pointer; transition: var(--transition);
  color: var(--muted);
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* EXPLORE BODY */
.explore-body {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 1rem; height: 620px;
}

/* FILTERS PANEL */
.filters-panel {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 1.2rem;
  overflow-y: auto; display: flex; flex-direction: column; gap: 1.2rem;
}
.filter-group { display: flex; flex-direction: column; gap: .5rem; }
.filter-group > label {
  font-size: .8rem; font-weight: 700; color: var(--dark);
  display: flex; align-items: center; gap: .4rem;
}
.filter-group > label [data-lucide] { color: var(--primary); }
.filter-group select {
  padding: .5rem .7rem; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: .83rem; color: var(--text);
  background: var(--bg); outline: none; transition: var(--transition);
}
.filter-group select:focus { border-color: var(--primary); }

.checkbox-group { display: flex; flex-direction: column; gap: .3rem; }
.checkbox-group label, .toggle-label {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; cursor: pointer; color: var(--text);
}
.checkbox-group input[type=checkbox] { accent-color: var(--primary); }

/* RANGE */
.range-wrap { display: flex; flex-direction: column; gap: .3rem; }
.range-wrap input[type=range] { accent-color: var(--primary); width: 100%; }
.range-wrap span { font-size: .78rem; font-weight: 700; color: var(--primary); }

/* TOGGLE SWITCH */
.toggle-switch {
  position: relative; display: inline-block;
  width: 34px; height: 18px; background: var(--border);
  border-radius: 99px; transition: var(--transition); flex-shrink: 0;
}
.toggle-switch::after {
  content: ''; position: absolute;
  width: 14px; height: 14px; background: #fff;
  border-radius: 50%; top: 2px; left: 2px; transition: var(--transition);
}
input:checked + .toggle-switch { background: var(--primary); }
input:checked + .toggle-switch::after { transform: translateX(16px); }
.toggle-label input { display: none; }
.toggle-label.mb { margin-bottom: .5rem; }

.btn-reset-filters {
  padding: .45rem; border: 1.5px solid var(--border);
  border-radius: 99px; background: none; cursor: pointer;
  font-size: .8rem; color: var(--muted); transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.btn-reset-filters:hover { border-color: var(--primary); color: var(--primary); }
.filter-result-count {
  font-size: .82rem; font-weight: 700; color: var(--primary);
  text-align: center; background: var(--primary-lt);
  padding: .4rem; border-radius: 99px;
}

/* CARDS COL */
.cards-col {
  overflow: hidden; display: flex; flex-direction: column;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--bg);
}
.cards-scroll { overflow-y: auto; padding: .8rem; display: flex; flex-direction: column; gap: .7rem; height: 100%; }

/* JOB CARD */
.job-card {
  background: var(--white); border-radius: 14px;
  border: 1.5px solid var(--border); padding: 1rem;
  cursor: pointer; transition: var(--transition);
  position: relative;
}
.job-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.job-card.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(92,61,122,.12); }
.job-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: .5rem; }
.job-logo {
  font-size: 1.5rem; width: 42px; height: 42px; border-radius: 12px;
  background: var(--primary-lt); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.job-title { font-size: .88rem; font-weight: 600; color: var(--dark); line-height: 1.3; }
.job-company { font-size: .78rem; color: var(--muted); }
.badge-contract {
  padding: .2rem .65rem; border-radius: 99px;
  font-size: .72rem; font-weight: 600; white-space: nowrap;
}
.badge-CDI { background: #E6F4ED; color: #2D7A55; }
.badge-CDD { background: #FFF3E0; color: #C07020; }
.badge-Freelance { background: #EDE9F8; color: #5142AA; }
.badge-Alternance { background: var(--rose-light); color: var(--primary); }
.badge-Stage { background: #F3E5F5; color: #7B1FA2; }
.badge-Interim { background: #FFF8E1; color: #B07800; }
.badge-Student { background: #E3F2FD; color: #1565C0; }
.badge-Saisonnier { background: #E8F5E9; color: #2E7D32; border: 1px solid #C8E6C9; }
.badge-default { background: var(--primary-lt); color: var(--primary); }

.job-meta { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.job-meta-item { display: flex; align-items: center; gap: .3rem; font-size: .76rem; color: var(--muted); }
.job-meta-item [data-lucide] { color: var(--primary); width: 12px; height: 12px; }
.job-tags { display: flex; gap: .3rem; flex-wrap: wrap; margin-top: .5rem; }
.tag-hijab {
  background: var(--rose-light); color: var(--primary);
  border-radius: 99px; padding: .15rem .55rem;
  font-size: .7rem; font-weight: 600;
  display: flex; align-items: center; gap: .25rem;
}
.tag-remote { background: #E8F5EE; color: #2D7A55; border-radius: 99px; padding: .15rem .55rem; font-size: .7rem; font-weight: 600; }
.job-date { font-size: .7rem; color: var(--muted); margin-top: .4rem; }

/* MAP COL */
.map-col { position: relative; border-radius: var(--radius); overflow: hidden; }
#map { width: 100%; height: 100%; }
.map-legend {
  position: absolute; bottom: 12px; left: 12px; z-index: 999;
  background: var(--white); border-radius: 12px; padding: .5rem .8rem;
  display: flex; gap: .8rem; box-shadow: var(--shadow); font-size: .75rem;
  border: 1px solid var(--border);
}
.legend-item { display: flex; align-items: center; gap: .35rem; color: var(--text); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-emploi { background: var(--primary); }
.dot-pro { background: var(--gold); }
.dot-service { background: var(--success); }

/* MAP POPUP */
.leaflet-popup-content-wrapper { border-radius: 14px !important; box-shadow: var(--shadow-lg) !important; }
.map-popup { padding: .2rem; }
.map-popup h4 { font-size: .88rem; color: var(--dark); margin-bottom: .2rem; }
.map-popup .mp-co { font-size: .78rem; color: var(--muted); }
.map-popup .mp-badges { display: flex; gap: .3rem; flex-wrap: wrap; margin-top: .4rem; }
.mp-badge { padding: .15rem .5rem; border-radius: 99px; font-size: .7rem; font-weight: 600; }
.mp-badge.contract { background: var(--rose-light); color: var(--primary); }
.mp-badge.hijab { background: var(--primary-lt); color: var(--primary); }
.mp-badge.salary { background: #E8F5EE; color: var(--success); }
.mp-btn { display: block; margin-top: .5rem; text-align: center; padding: .35rem; background: var(--primary); color: #fff; border-radius: 99px; font-size: .78rem; font-weight: 600; }

/* ══════════════ DEPOSIT SECTION ══════════════ */
.deposit-section {
  background: linear-gradient(145deg, var(--primary-lt) 0%, #fff 60%, var(--creme) 100%);
  padding: 3.5rem 2rem;
}
.deposit-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.deposit-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--dark); margin-bottom: 1rem; }
.deposit-text p { color: var(--muted); margin-bottom: 1.5rem; }
.deposit-benefits { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.deposit-benefits li { display: flex; align-items: center; gap: .6rem; font-size: .9rem; }
.deposit-benefits li [data-lucide] { color: var(--success); }
.deposit-form {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 2rem;
  box-shadow: var(--shadow);
}
.deposit-form h3 { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--dark); font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .8rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: .6rem .9rem; border: 1.5px solid var(--border);
  border-radius: 12px; font-size: .88rem; color: var(--text);
  transition: var(--transition); background: var(--bg); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); background: var(--white);
}
.form-group textarea { resize: vertical; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary); color: #fff;
  padding: .75rem 1.8rem; border-radius: 99px;
  font-weight: 600; transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dk); transform: translateY(-1px); box-shadow: var(--shadow); }
.full-w { width: 100%; justify-content: center; }

/* ══════════════ FAQ SECTION ══════════════ */
.faq-section { padding: 3.5rem 2rem; max-width: 900px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header.light { color: var(--white); }
.section-badge {
  display: inline-block; background: var(--primary-lt); color: var(--primary);
  padding: .3rem 1rem; border-radius: 99px; font-size: .78rem; font-weight: 700;
  margin-bottom: .8rem; letter-spacing: .02em;
}
.section-badge.alt { background: rgba(255,255,255,.2); color: var(--white); }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--dark); margin-bottom: .6rem; }
.section-header.light h2 { color: var(--white); }
.section-header p { color: var(--muted); }
.section-header.light p { color: rgba(255,255,255,.8); }

.faq-tabs { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.faq-tab-btn {
  padding: .5rem 1.2rem; border-radius: 99px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: .85rem; font-weight: 500; cursor: pointer; transition: var(--transition);
  color: var(--muted);
}
.faq-tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.faq-tab-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ACCORDION */
.faq-container { display: flex; flex-direction: column; gap: .6rem; }
.faq-item {
  background: var(--white); border-radius: 14px;
  border: 1.5px solid var(--border); overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: var(--lavender); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.4rem; cursor: pointer; gap: 1rem;
  font-weight: 600; font-size: .92rem; color: var(--dark);
}
.faq-q .faq-icon { color: var(--primary); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .2s ease;
  font-size: .88rem; color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 1.4rem 1.2rem; }

/* ══════════════ NOTRE IDENTITÉ ══════════════ */
.identite-section {
  padding: 3.5rem 2rem;
  background: var(--bg);
  overflow: hidden;
}
.identite-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 3rem;
}
.identite-header { text-align: center; }
.identite-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark); margin-bottom: 1rem;
}
.identite-header h2 em { font-style: italic; color: var(--primary); }
.identite-header p { color: var(--muted); max-width: 580px; margin: 0 auto 2rem; font-size: .97rem; line-height: 1.7; }

.identite-text { display: flex; flex-direction: column; align-items: center; }

/* Valeurs */
.identite-values {
  display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center;
}
.identite-value {
  display: flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 99px; padding: .45rem 1.1rem;
  font-size: .85rem; font-weight: 600; color: var(--text);
  transition: var(--transition);
}
.identite-value:hover { border-color: var(--primary); color: var(--primary); }
.val-icon { color: var(--primary); display: flex; }
.val-icon [data-lucide] { width: 16px; height: 16px; }

/* Grille photos mosaïque */
.identite-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  grid-template-rows: 240px 240px;
  gap: .75rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.id-photo { overflow: hidden; border-radius: 14px; position: relative; }
.id-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.id-photo:hover img { transform: scale(1.05); }

/* Disposition mosaïque */
.id-photo:nth-child(1) { grid-column: 1; grid-row: 1 / 3; border-radius: 20px 14px 14px 20px; }
.id-photo:nth-child(2) { grid-column: 2; grid-row: 1; }
.id-photo:nth-child(3) { grid-column: 3; grid-row: 1; }
.id-photo:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
.id-photo:nth-child(5) { grid-column: 4; grid-row: 1; }
.id-photo:nth-child(6) { grid-column: 4; grid-row: 2; border-radius: 14px 20px 20px 14px; }

/* Overlay subtil au hover */
.id-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,43,82,.18) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.id-photo:hover::after { opacity: 1; }

.btn-text { display: inline-flex; align-items: center; gap: .4rem; color: var(--primary); font-size: .84rem; font-weight: 600; transition: var(--transition); }
.btn-text:hover { gap: .6rem; }

@media (max-width: 860px) {
  .identite-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .id-photo:nth-child(1) { grid-column: 1; grid-row: 1; border-radius: 14px; }
  .id-photo:nth-child(2) { grid-column: 2; grid-row: 1; }
  .id-photo:nth-child(3) { grid-column: 1; grid-row: 2; }
  .id-photo:nth-child(4) { grid-column: 2; grid-row: 2; }
  .id-photo:nth-child(5) { grid-column: 1; grid-row: 3; }
  .id-photo:nth-child(6) { grid-column: 2; grid-row: 3; border-radius: 14px; }
}
@media (max-width: 560px) {
  .identite-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }
  .id-photo { grid-column: 1 !important; border-radius: 14px !important; }
  .id-photo:nth-child(n) { grid-row: auto; }
}

/* ══════════════ SOS SECTION ══════════════ */
.sos-section {
  background: var(--dark); padding: 3.5rem 2rem;
}
.sos-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.sos-badge {
  display: inline-block; background: #C0392B; color: #fff;
  padding: .3rem .9rem; border-radius: 99px; font-size: .78rem; font-weight: 700;
  margin-bottom: 1rem;
}
.sos-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: #fff; margin-bottom: 1rem; }
.sos-text p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; line-height: 1.7; }
.sos-contact { display: flex; flex-direction: column; gap: .4rem; }
.sos-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary); color: #fff; padding: .75rem 1.6rem;
  border-radius: 99px; font-weight: 600; font-size: 1rem; width: fit-content;
  transition: var(--transition);
}
.sos-phone:hover { background: var(--primary-dk); }
.sos-hours { color: rgba(255,255,255,.5); font-size: .82rem; }
.sos-form {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-lg);
}
.sos-form h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 1.2rem; font-weight: 700; }
.btn-sos {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: #C0392B; color: #fff; border: none;
  padding: .75rem; border-radius: 99px; font-weight: 600; cursor: pointer;
  transition: var(--transition); font-size: .92rem;
}
.btn-sos:hover { background: #A93226; }

/* ── SOS Info Mode (no form) ── */
.sos-inner.sos-info-mode {
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}
.sos-icon-wrap {
  width: 80px; height: 80px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sos-icon-wrap [data-lucide] { width: 38px; height: 38px; color: #F5C6D6; }
.sos-info-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: #fff; margin-bottom: 1rem;
}
.sos-lead { color: rgba(255,255,255,.8); line-height: 1.75; margin-bottom: 2rem; font-size: 1rem; }
.sos-penalties {
  display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.8rem;
}
.sos-penalty-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,.07);
  border-left: 3px solid #F5C6D6;
  border-radius: 8px;
  padding: 1rem 1.2rem;
}
.penalty-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.penalty-icon [data-lucide] { width: 18px; height: 18px; color: #F5C6D6; }
.sos-penalty-card strong {
  display: block; color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: .15rem;
}
.sos-penalty-card span { color: rgba(255,255,255,.6); font-size: .83rem; }
.sos-article {
  color: rgba(255,255,255,.35); font-size: .75rem;
  font-style: italic; margin-bottom: 1.8rem;
}
.sos-actions {
  display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.5rem;
}
.btn-sos-action {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .7rem 1.4rem; border-radius: 99px;
  font-size: .85rem; font-weight: 600;
  text-decoration: none; transition: var(--transition);
}
.btn-sos-primary {
  background: var(--primary); color: #fff;
}
.btn-sos-primary:hover { background: var(--primary-dk); color: #fff; }
.btn-sos-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
}
.btn-sos-outline:hover {
  border-color: var(--primary); color: var(--primary);
  background: rgba(255,255,255,.04);
}
.btn-sos-action [data-lucide] { width: 15px; height: 15px; }
.sos-note {
  display: flex; align-items: flex-start; gap: .5rem;
  color: rgba(255,255,255,.5); font-size: .82rem; line-height: 1.6;
}
.sos-note [data-lucide] { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }
.sos-note strong { color: rgba(255,255,255,.75); }
@media (max-width: 600px) {
  .sos-inner.sos-info-mode { grid-template-columns: 1fr; }
  .sos-icon-wrap { width: 56px; height: 56px; }
  .sos-icon-wrap [data-lucide] { width: 26px; height: 26px; }
  .sos-info-content h2 { font-size: 1.5rem; }
}

/* ══════════════ TÉMOIGNAGES ══════════════ */
.temoignages-section { padding: 3.5rem 2rem; background: var(--primary-lt); }
.temoignages-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.temoignage-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow); position: relative;
  border-top: 4px solid var(--lavender);
}
.temo-quote {
  font-size: 4rem; line-height: 1; color: var(--primary);
  opacity: .12; font-family: Georgia, serif; position: absolute;
  top: 1rem; left: 1.5rem;
}
.temoignage-card > p { color: var(--text); font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.temo-author { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.temo-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--lilas));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.temo-author > div:nth-child(2) strong { display: block; font-size: .9rem; color: var(--dark); }
.temo-author > div:nth-child(2) span { font-size: .78rem; color: var(--muted); }
.stars { color: var(--gold); font-size: .9rem; margin-left: auto; }

/* ══════════════ EVENTS ══════════════ */
.events-section { padding: 3.5rem 2rem; max-width: 1100px; margin: 0 auto; }
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.event-card {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  padding: 1.4rem; border: 1.5px solid var(--border);
  transition: var(--transition);
}
.event-card:hover { border-color: var(--lavender); box-shadow: var(--shadow); }
.featured-event {
  grid-column: span 2;
  background: linear-gradient(145deg, var(--primary-lt), var(--white));
  border-color: var(--lavender);
}
.event-date {
  background: var(--primary); color: #fff;
  border-radius: 14px; padding: .6rem 1rem;
  text-align: center; min-width: 60px; flex-shrink: 0;
}
.event-date span { display: block; font-size: 1.6rem; font-weight: 700; line-height: 1; }
.event-date { font-size: .75rem; font-weight: 500; }
.event-info { flex: 1; }
.event-tag {
  display: inline-block; background: var(--primary-lt); color: var(--primary);
  padding: .15rem .65rem; border-radius: 99px; font-size: .72rem; font-weight: 700;
  margin-bottom: .4rem;
}
.event-info h3 { font-size: .95rem; color: var(--dark); margin-bottom: .4rem; font-weight: 600; }
.event-info p { font-size: .8rem; color: var(--muted); margin-bottom: .8rem; }
.btn-outline {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .42rem 1rem; border: 1.5px solid var(--primary);
  border-radius: 99px; color: var(--primary); font-size: .82rem; font-weight: 600;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ══════════════ NEWSLETTER ══════════════ */
.newsletter-section {
  background: var(--dark); padding: 3rem 2rem; text-align: center;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.nl-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.newsletter-inner h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; margin-bottom: .6rem; }
.newsletter-inner > p { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
.nl-form { display: flex; gap: .5rem; }
.nl-form input {
  flex: 1; padding: .75rem 1rem; border-radius: 99px;
  border: none; font-size: .9rem; outline: none;
  color: var(--dark);
}
.nl-form button {
  background: var(--primary); color: #fff;
  border: none; border-radius: 99px; padding: .75rem 1.6rem;
  font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.nl-form button:hover { background: var(--primary-dk); }
.nl-note { font-size: .76rem; color: rgba(255,255,255,.35); margin-top: .8rem; }

/* ══════════════ FOOTER ══════════════ */
.footer { background: var(--primary-lt); padding: 4rem 2rem 1rem; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--lavender);
}
.footer-brand .logo { margin-bottom: .8rem; }
.footer-brand .logo-img { filter: none !important; }
.footer-brand p { color: var(--muted); font-size: .84rem; line-height: 1.6; margin-bottom: 1rem; }
.socials { display: flex; gap: .7rem; }
.socials a {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--lavender); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: var(--transition);
}
.socials a svg { width: 16px; height: 16px; }
.socials a:hover { background: var(--primary); color: #fff; }
.footer-col h4 { color: var(--dark); font-size: .88rem; margin-bottom: 1rem; font-weight: 700; }
.footer-col a {
  display: block; color: var(--muted);
  font-size: .82rem; margin-bottom: .5rem; transition: var(--transition);
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  max-width: 1200px; margin: 1.5rem auto 0;
  text-align: center; color: var(--muted); font-size: .78rem;
}

/* ══════════════ TOAST ══════════════ */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--dark); color: #fff;
  padding: .9rem 1.5rem; border-radius: 14px;
  font-size: .88rem; box-shadow: var(--shadow-lg);
  transform: translateY(120%); opacity: 0; transition: var(--transition);
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid #C0392B; }

/* ══════════════ PRO CARDS ══════════════ */
.pro-card {
  background: var(--white); border-radius: 14px;
  border: 1.5px solid var(--border); padding: 1rem;
  cursor: pointer; transition: var(--transition);
}
.pro-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(225,196,138,.25); }
.pro-header { display: flex; align-items: center; gap: .7rem; margin-bottom: .6rem; }
.pro-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #E8C97A);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
}
.pro-name { font-size: .88rem; font-weight: 600; color: var(--dark); }
.pro-title { font-size: .76rem; color: var(--muted); }
.pro-stars { color: var(--gold); font-size: .78rem; }
.pro-info { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: .3rem; }
.pro-info [data-lucide] { color: var(--gold); }
.pro-specialties { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .5rem; }
.pro-spec-tag { background: var(--creme); color: #8A6030; border-radius: 99px; padding: .15rem .55rem; font-size: .7rem; font-weight: 600; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .explore-body { grid-template-columns: 220px 1fr; grid-template-rows: auto auto; }
  .map-col { grid-column: span 2; height: 320px; }
  .droits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 880px) {
  .explore-body { grid-template-columns: 1fr; height: auto; }
  .cards-col { height: 350px; }
  .map-col { grid-column: span 1; height: 340px; }
  .filters-panel { flex-direction: row; flex-wrap: wrap; height: auto; max-height: none; }
  .filter-group { min-width: 160px; flex: 1; }
  .deposit-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .featured-event { grid-column: span 1; }
  .droits-grid { grid-template-columns: 1fr; }
  .sos-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 680px) {
  /* ── Header mobile ── */
  .header-inner { flex-wrap: nowrap; padding: .7rem 1rem; gap: .75rem; justify-content: space-between; }
  .main-nav {
    display: none; position: fixed; top: 60px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: flex-start;
    padding: .8rem 1rem 1.2rem;
    box-shadow: 0 8px 24px rgba(92,61,122,.1);
    gap: .2rem; z-index: 999; max-height: calc(100vh - 60px); overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .header-actions { display: flex; align-items: center; gap: 0; }
  .header-actions .btn-deposer-header { display: none; }
  .hamburger { display: flex !important; margin-left: 0; }
  #header { position: sticky; }
  .hamburger span { width: 24px; height: 2.5px; }

  /* ── Hero mobile ── */
  .hero { padding: 3rem 1rem 1.5rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero-search-box { flex-direction: column; gap: .5rem; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: .5rem; justify-content: center; }
  .stat { border-right: none; border-bottom: none; padding: .4rem .8rem; }

  /* ── Sections mobile ── */
  .explore-section, .faq-section,
  .deposit-section, .identite-section, .sos-section,
  .temoignages-section, .blog-section, .resources-section { padding: 2.5rem 1rem; }

  /* ── Forms mobile ── */
  .nl-form { flex-direction: column; gap: .6rem; }
  .nl-form input, .nl-form button { width: 100%; border-radius: 10px !important; }
  .deposit-inner { grid-template-columns: 1fr !important; gap: 1.5rem; }

  /* ── Cards mobile ── */
  .tab-bar { overflow-x: auto; padding-bottom: .25rem; -webkit-overflow-scrolling: touch; }
  .cats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: .75rem; }
  .job-card, .pro-card { padding: 1rem; }

  /* ── Modal mobile ── */
  .modal-overlay { align-items: flex-end; }
  .modal-box { border-radius: 20px 20px 0 0; max-height: 90vh; }
  .modal-profile-wrap { grid-template-columns: 1fr !important; }
  .modal-contact-card { order: -1; }

  /* ── Buttons mobile ── */
  .btn-postuler { font-size: .72rem; padding: .4rem .7rem; }
  .job-card-footer { flex-wrap: wrap; gap: .4rem; }
}

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* Scroll-triggered fade */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.stagger-1 { transition-delay: .08s !important; }
.stagger-2 { transition-delay: .16s !important; }
.stagger-3 { transition-delay: .24s !important; }
.stagger-4 { transition-delay: .32s !important; }
.stagger-5 { transition-delay: .40s !important; }

/* Hero badge float */
.hero-badge { animation: float 3.5s ease-in-out infinite; }

/* Pulse ring on new badges */
.badge-new {
  position: relative;
}
.badge-new::after {
  content: ''; position: absolute;
  inset: 0; border-radius: 99px;
  background: var(--primary); opacity: .35;
  animation: pulseRing 1.8s ease-out infinite;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   CATEGORIES BLOCK
   ══════════════════════════════════════════ */
.categories-section {
  background: var(--white);
  padding: 3rem 2rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.categories-inner { max-width: 1200px; margin: 0 auto; }
.cats-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--dark);
  margin-bottom: 2rem;
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  padding: 1.4rem .8rem; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--bg);
  cursor: pointer; transition: var(--transition);
  text-align: center;
}
.cat-card:hover {
  border-color: var(--lavender);
  background: var(--primary-lt);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.cat-card:hover .cat-icon { background: var(--primary); color: #fff; }
.cat-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--primary-lt); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cat-icon [data-lucide] { width: 22px !important; height: 22px !important; }
.cat-label { font-size: .8rem; font-weight: 600; color: var(--dark); line-height: 1.3; }
.cat-count { font-size: .72rem; color: var(--muted); }

@media (max-width: 900px) { .cats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .cats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ══════════════════════════════════════════
   TAG CATÉGORIE (remplace badge inclusif)
   ══════════════════════════════════════════ */
.tag-category {
  background: #F3EEF9; color: var(--primary);
  border-radius: 99px; padding: .15rem .55rem;
  font-size: .7rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: .25rem;
}
.tag-category [data-lucide] { width: 10px; height: 10px; }

/* ══════════════════════════════════════════
   MODAL DETAIL
   ══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(30,10,50,.5); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
  display: flex; justify-content: flex-end;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-panel {
  width: min(680px, 100vw);
  height: 100vh; overflow-y: auto;
  background: var(--white);
  box-shadow: -12px 0 48px rgba(92,61,122,.18);
  transform: translateX(100%); transition: transform .38s cubic-bezier(.22,1,.36,1);
  position: relative;
}
.modal-overlay.open .modal-panel { transform: translateX(0); }
.modal-close-btn {
  position: sticky; top: 0; float: right; z-index: 10;
  margin: 1rem; background: var(--white); border: 1.5px solid var(--border);
  border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--muted);
  transition: var(--transition); box-shadow: var(--shadow);
}
.modal-close-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.modal-body { padding: 0 2rem 3rem; }

/* Modal meta bar */
.modal-meta-bar {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding: .9rem 0; border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem; font-size: .78rem; color: var(--muted);
  clear: both;
}
.modal-meta-bar span strong { color: var(--primary); }
.modal-meta-bar a { color: var(--primary); font-weight: 600; }

/* Modal profile header */
.modal-profile-wrap {
  display: grid; grid-template-columns: 1fr 200px; gap: 2rem;
  align-items: start; margin-bottom: 2rem;
}
.modal-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--dark); margin-bottom: 1.2rem; line-height: 1.3; }
.modal-desc { color: var(--text); font-size: .9rem; line-height: 1.8; }
.modal-desc p { margin-bottom: .8rem; }
.modal-desc ul { padding-left: 1.2rem; margin-bottom: .8rem; }
.modal-desc ul li { margin-bottom: .3rem; color: var(--text); }

/* Contact card */
.modal-contact-card {
  background: var(--primary-lt);
  border-radius: var(--radius); padding: 1.5rem;
  text-align: center; border: 1px solid var(--lavender);
  position: sticky; top: 70px;
}
.modal-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--lilas));
  color: #fff; font-size: 1.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; box-shadow: 0 4px 16px rgba(92,61,122,.3);
}
.modal-person-name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .2rem; }
.modal-person-loc { font-size: .8rem; color: var(--muted); margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; gap: .3rem; }
.btn-contact {
  width: 100%; background: var(--primary); color: #fff;
  border: none; border-radius: 99px; padding: .75rem;
  font-weight: 700; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .9rem; margin-bottom: .7rem;
}
.btn-contact:hover { background: var(--primary-dk); transform: translateY(-1px); }
.btn-contact-outline {
  width: 100%; background: transparent; color: var(--primary);
  border: 1.5px solid var(--lavender); border-radius: 99px; padding: .6rem;
  font-weight: 600; cursor: pointer; transition: var(--transition);
  font-size: .84rem;
}
.btn-contact-outline:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-postuler-modal { text-decoration: none; display: flex; align-items: center; justify-content: center; gap: .5rem; }
.btn-postuler-modal [data-lucide] { width: 15px; height: 15px; }

/* Bouton Postuler sur carte */
.job-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; margin-top: .4rem; flex-wrap: wrap;
}
.job-date { font-size: .75rem; color: var(--muted); display: flex; align-items: center; gap: .3rem; }
.btn-postuler {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--primary); color: #fff;
  padding: 5px 13px; border-radius: 99px;
  font-size: .75rem; font-weight: 700; text-decoration: none;
  transition: var(--transition); white-space: nowrap;
}
.btn-postuler:hover { background: var(--primary-dk); color: #fff; transform: translateY(-1px); }
.btn-postuler [data-lucide] { width: 12px; height: 12px; }

/* Modal sections */
.modal-section { margin-top: 2rem; }
.modal-section-title {
  font-size: .82rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem;
}
.modal-section-title [data-lucide] { color: var(--primary); }
.modal-exp-item {
  display: flex; gap: 1rem; margin-bottom: 1rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.modal-exp-icon {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--primary-lt); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.modal-exp-info strong { display: block; font-size: .88rem; color: var(--dark); }
.modal-exp-info span { font-size: .78rem; color: var(--muted); }
.modal-skills { display: flex; flex-wrap: wrap; gap: .4rem; }
.modal-skill-tag {
  background: var(--primary-lt); color: var(--primary);
  border-radius: 99px; padding: .25rem .75rem;
  font-size: .78rem; font-weight: 600;
}
.modal-lang-tag {
  background: #F3F0F8; color: var(--text);
  border-radius: 99px; padding: .25rem .75rem;
  font-size: .78rem; font-weight: 500;
}
.modal-dispo {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #EAF5EE; color: #2D7A55;
  padding: .4rem 1rem; border-radius: 99px; font-size: .82rem; font-weight: 600;
}

/* Similar profiles */
.similar-section { margin-top: 2.5rem; padding-top: 2rem; border-top: 2px solid var(--border); }
.modal-partner-banner { margin-top: 1.8rem; text-align: center; }
.modal-partner-label {
  display: inline-block; font-size: .62rem; font-weight: 600;
  letter-spacing: .07em; color: #bbb; text-transform: uppercase;
  margin-bottom: .4rem;
}
.modal-partner-banner a {
  display: block; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .2s ease;
}
.modal-partner-banner a:hover { transform: translateY(-2px); }
.modal-partner-banner img { width: 100%; height: auto; display: block; }
.similar-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.similar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.similar-card {
  border: 1.5px solid var(--border); border-radius: 14px;
  padding: .9rem; cursor: pointer; transition: var(--transition);
  display: flex; gap: .7rem; align-items: flex-start;
}
.similar-card:hover { border-color: var(--lavender); background: var(--primary-lt); }
.similar-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--lilas));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.similar-info strong { display: block; font-size: .82rem; color: var(--dark); line-height: 1.2; margin-bottom: .2rem; }
.similar-info span { font-size: .74rem; color: var(--muted); }
.similar-badge { display: inline-block; margin-top: .25rem; background: var(--primary-lt); color: var(--primary); border-radius: 99px; padding: .1rem .45rem; font-size: .68rem; font-weight: 600; }

@media (max-width: 600px) {
  .modal-profile-wrap { grid-template-columns: 1fr; }
  .modal-contact-card { position: static; }
  .similar-grid { grid-template-columns: 1fr; }
  .modal-body { padding: 0 1rem 2rem; }
}

/* ══════════════════════════════════════════
   BLOG SECTION
   ══════════════════════════════════════════ */
.blog-section { padding: 3.5rem 2rem; max-width: 1200px; margin: 0 auto; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.blog-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1.5px solid var(--border); background: var(--white);
  transition: var(--transition); cursor: pointer;
  display: block; text-decoration: none; color: inherit;
}
.blog-card:hover { border-color: var(--lavender); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 160px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--primary-lt), var(--rose-light));
}
.blog-thumb [data-lucide] { width: 52px; height: 52px; stroke-width: 1.5; }
.blog-body { padding: 1.2rem; }
.blog-tag {
  display: inline-block; background: var(--primary-lt); color: var(--primary);
  padding: .2rem .7rem; border-radius: 99px; font-size: .7rem; font-weight: 700;
  margin-bottom: .6rem;
}
.blog-title { font-size: .95rem; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: .5rem; }
.blog-excerpt { font-size: .8rem; color: var(--muted); line-height: 1.6; margin-bottom: .8rem; }
.blog-meta, .blog-footer { display: flex; align-items: center; justify-content: space-between; font-size: .74rem; color: var(--muted); }
.blog-date { font-size: .74rem; color: var(--muted); }
.blog-read { color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: .3rem; }

/* badge nouveau */
.badge-new-pill {
  display: inline-flex; align-items: center; gap: .3rem;
  background: #FFF3CD; color: #856404;
  border-radius: 99px; padding: .15rem .6rem;
  font-size: .7rem; font-weight: 700; border: 1px solid #FFEEBA;
}

/* Badge NEW sur les offres publiées via l'admin */
.job-badge-new {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  color: #fff; font-size: .62rem; font-weight: 800;
  letter-spacing: .04em; padding: .1rem .45rem;
  border-radius: 99px; vertical-align: middle;
  box-shadow: 0 2px 8px rgba(124,58,237,.35);
  animation: newPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes newPulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(124,58,237,.35); }
  50%       { box-shadow: 0 2px 16px rgba(124,58,237,.65); }
}

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   RESOURCES SECTION
   ══════════════════════════════════════════ */
.resources-section { padding: 3.5rem 2rem; max-width: 1200px; margin: 0 auto; }

/* Grille de catégories */
.res-categories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.res-cat-card {
  border-radius: var(--radius); border: 1.5px solid var(--border);
  background: var(--white); padding: 1.6rem 1.4rem;
  cursor: pointer; transition: var(--transition);
  display: flex; flex-direction: column; gap: .7rem;
  border-top: 3px solid var(--cat-color, var(--lavender));
}
.res-cat-card:hover {
  border-color: var(--cat-color, var(--lavender));
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.res-cat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: color-mix(in srgb, var(--cat-color, var(--lavender)) 12%, transparent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.res-cat-card h3 { font-size: .97rem; font-weight: 700; color: var(--dark); line-height: 1.35; }
.res-cat-card p  { font-size: .8rem; color: var(--muted); line-height: 1.6; flex: 1; }
.res-cat-footer  { display: flex; align-items: center; justify-content: space-between; margin-top: .3rem; }
.res-cat-count {
  font-size: .72rem; font-weight: 700;
  background: color-mix(in srgb, var(--cat-color, var(--lavender)) 12%, transparent);
  color: var(--cat-color, var(--primary));
  border-radius: 99px; padding: .2rem .65rem;
}

/* Vue articles — header */
.res-article-header { margin-bottom: 2rem; }
.btn-back-res {
  display: inline-flex; align-items: center; gap: .4rem;
  background: none; border: 1.5px solid var(--border);
  border-radius: 99px; padding: .45rem 1rem;
  font-size: .82rem; font-weight: 600; color: var(--primary);
  cursor: pointer; transition: var(--transition); margin-bottom: 1.5rem;
}
.btn-back-res:hover { background: var(--primary-lt); border-color: var(--lavender); }
.res-article-hero { text-align: center; padding: 1.5rem 1rem 0; }
.res-article-hero h2 { font-size: 1.8rem; color: var(--dark); margin: .5rem 0 .8rem; }
.res-article-hero p  { font-size: .95rem; color: var(--muted); max-width: 680px; margin: 0 auto; line-height: 1.7; }

/* Responsive */
@media (max-width: 860px) { .res-categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .res-categories-grid { grid-template-columns: 1fr; }
  .resources-section { padding: 2.5rem 1rem; }
  .res-article-hero h2 { font-size: 1.4rem; }
}

/* ══════════════════════════════════════════
   BLOG ARTICLE MODAL
   ══════════════════════════════════════════ */
.blog-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(30,10,50,.55);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  overflow-y: auto;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 2rem 1rem 4rem;
}
.blog-overlay.open { opacity: 1; pointer-events: all; }

.blog-article-panel {
  position: relative;
  background: #fff;
  width: 100%; max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(92,61,122,.22);
  overflow: hidden;
  transform: translateY(40px) scale(.97);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.blog-overlay.open .blog-article-panel { transform: translateY(0) scale(1); }

.blog-article-close {
  position: sticky; top: 1rem; left: 100%;
  float: right; margin: 1rem 1rem 0 0;
  width: 38px; height: 38px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.15); cursor: pointer;
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s; z-index: 10;
}
.blog-article-close:hover { background: rgba(255,255,255,.3); transform: rotate(90deg); }

.blog-article-body { padding: 0 0 3rem; }

/* Article hero banner */
.art-hero {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dk) 100%);
  padding: 2.5rem 2.5rem 2rem;
  color: #fff;
}
.art-hero-icon { margin-bottom: 1rem; display: flex; }
.art-hero-icon [data-lucide] { width: 64px; height: 64px; stroke-width: 1.4; opacity: .92; }
.art-tag-pill {
  display: inline-block; background: rgba(255,255,255,.18);
  border-radius: 20px; padding: .3rem .9rem; font-size: .72rem;
  font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 1rem; backdrop-filter: blur(4px);
}
.art-seo-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700; line-height: 1.25;
  margin-bottom: .8rem; color: #fff;
}
.art-meta-bar {
  display: flex; flex-wrap: wrap; gap: .6rem .8rem;
  font-size: .75rem; opacity: .85; align-items: center;
}
.art-meta-bar span { display: flex; align-items: center; gap: .3rem; }
.art-meta-desc {
  margin-top: 1rem; font-size: .88rem; line-height: 1.6;
  opacity: .9; max-width: 640px;
  border-top: 1px solid rgba(255,255,255,.2); padding-top: .9rem;
  font-style: italic;
}

/* Article content typography */
.art-content {
  padding: 2rem 2.5rem;
  font-size: .97rem; line-height: 1.85; color: var(--text);
}
.art-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--primary);
  margin: 2.2rem 0 .8rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--lavender);
  display: flex; align-items: center; gap: .5rem;
}
.art-content h2 .h2-icon { width: 18px; height: 18px; stroke-width: 2; flex-shrink: 0; }
.art-content p { margin: 0 0 1.1rem; }
.art-content ul, .art-content ol {
  margin: 0 0 1.2rem 1.4rem; padding: 0;
}
.art-content li { margin-bottom: .45rem; }
.art-content strong { color: var(--dark); }
.art-content .highlight-box {
  background: linear-gradient(135deg, var(--primary-lt), var(--creme));
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.2rem; margin: 1.4rem 0;
  font-size: .93rem;
}
.art-content .highlight-box strong { color: var(--primary); }
.art-content .tip-box {
  background: #EFF8F3; border-left: 4px solid #3A8E5C;
  border-radius: 0 12px 12px 0; padding: 1rem 1.2rem; margin: 1.4rem 0;
}
.art-content .tip-box::before { content: "→ "; font-size: .9rem; font-weight: 700; color: #3A8E5C; }
.art-content .checklist { list-style: none; margin-left: 0; }
.art-content .checklist li { padding-left: 1.4rem; position: relative; }
.art-content .checklist li::before { content: ""; position: absolute; left: 0; top: .4em; width: 10px; height: 10px; border-radius: 50%; background: var(--primary); opacity: .7; }
.art-content .warning-box {
  background: #FFF8E1; border-left: 4px solid #FF9800;
  border-radius: 0 12px 12px 0; padding: 1rem 1.2rem; margin: 1.4rem 0;
}
.art-content .warning-box::before { content: "! "; font-size: .9rem; font-weight: 900; color: #FF9800; }

/* Author / CTA block */
.art-author {
  margin: 0 2.5rem;
  background: var(--bg); border-radius: 16px;
  padding: 1.2rem 1.5rem; display: flex; gap: 1rem; align-items: center;
  border: 1px solid var(--border);
}
.art-author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--lilas));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.art-author-avatar [data-lucide] { width: 28px; height: 28px; color: #fff; }
.art-author-info strong { display: block; font-size: .92rem; color: var(--dark); }
.art-author-info span { font-size: .78rem; color: var(--muted); }

.art-cta {
  margin: 1.5rem 2.5rem 0;
  background: linear-gradient(145deg, var(--primary), var(--primary-dk));
  border-radius: 16px; padding: 1.5rem;
  text-align: center; color: #fff;
}
.art-cta h3 { font-size: 1.1rem; margin: 0 0 .5rem; }
.art-cta p { font-size: .85rem; opacity: .9; margin: 0 0 1rem; }
.art-cta a {
  display: inline-block; background: #fff; color: var(--primary);
  padding: .6rem 1.6rem; border-radius: 99px; font-weight: 700;
  font-size: .88rem; text-decoration: none; transition: transform .2s;
}
.art-cta a:hover { transform: scale(1.05); }

@media (max-width: 600px) {
  .art-hero { padding: 2rem 1.5rem 1.5rem; }
  .art-content { padding: 1.5rem; }
  .art-author { margin: 0 1.5rem; }
  .art-cta { margin: 1.5rem 1.5rem 0; }
}
