<!-- Chart.js CDN (à mettre UNE seule fois par page) -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<section class="blog-post">
<h1>Est-ce que le secteur de la comptabilité recrute ?</h1>
<blockquote class="tldr">
<strong>56 300</strong> projets d’embauche comptables en 2024 (BMO)<br>
<strong>73 %</strong> des recruteurs Finance déclarent une pénurie (MEOS Q4-24)<br>
<strong>Hireos</strong> divise votre time-to-hire par 3,7
</blockquote>
<h2>La pénurie en un graphique</h2>
<canvas id="hireos-demand-offer" height="180"></canvas>
<h2>➡️ Comment Hireos neutralise la tension</h2>
<table>
<thead><tr><th>Frein marché</th><th>Solution Hireos</th><th>Gain €</th></tr></thead>
<tbody>
<tr><td>Cycle 3 mois</td><td>Data + Chasse → 3 sem.</td><td>-10 000 €</td></tr>
<tr><td>Taux d’échec 25 %</td><td>Matching soft-skills → 9 %</td><td>-11 000 €</td></tr>
<tr><td>Marque employeur faible</td><td>Campagnes LinkedIn co-brandées</td><td>+40 % candidats</td></tr>
</tbody>
</table>
</section>
<script>
(() => {
const ctx = document.getElementById('hireos-demand-offer');
new Chart(ctx, {
type: 'bar',
data: {
labels: ['Projets de recrutement', 'Candidats disponibles'],
datasets: [{
data: [56300, 30000],
backgroundColor: ['#412451', '#F3C063'],
borderRadius: 6
}]
},
options: {
indexAxis: 'y',
plugins: { legend: { display: false } },
scales: {
x: { grid: { display: false } },
y: { grid: { display: false }, ticks: { font: { weight: 'bold' } } }
}
}
});
})();
</script>