Préparation à un contrôle URSSAF

Préparation à un contrôle URSSAF

Anticipez sereinement votre prochain contrôle

Étapes de préparation

  • Réunir les documents nécessaires
  • Vérifier la conformité des déclarations
  • Organiser les informations de manière accessible

Documents à préparer

  • Bulletins de paie
  • Contrats de travail
  • Déclarations sociales
  • Registres du personnel

Déroulement du contrôle

  1. Notification du contrôle
  2. Analyse des documents
  3. Entretien de restitution
  4. Régularisations éventuelles

FAQ

Vous recevez une notification écrite, sauf en cas de contrôle inopiné.

Oui, un expert-comptable ou un avocat peut vous assister.

Besoin d’aide ? Contactez-nous pour un accompagnement personnalisé.






body {
font-family: ‘Segoe UI’, sans-serif;
background: #f2f4f8;
margin: 0;
padding-top: 60px;
}

header, section, footer {
background: #fff;
max-width: 800px;
margin: 30px auto;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

h1, h2 {
color: #005a9c;
}

.navbar {
position: fixed;
top: 0;
width: 100%;
background: #005a9c;
display: flex;
justify-content: center;
gap: 30px;
padding: 10px 0;
z-index: 1000;
}

.navbar a {
color: white;
text-decoration: none;
font-weight: bold;
transition: transform 0.2s;
}

.navbar a:hover {
transform: scale(1.1);
text-decoration: underline;
}

.faq-question {
background: #e0ecff;
border: none;
padding: 15px;
width: 100%;
text-align: left;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
border-radius: 8px;
margin-bottom: 5px;
transition: background 0.3s;
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
background: #f9f9f9;
padding: 0 15px;
border-left: 3px solid #005a9c;
margin-bottom: 15px;
border-radius: 4px;
}

.faq-question.active + .faq-answer {
max-height: 200px;
padding-top: 10px;
padding-bottom: 10px;
}

#topBtn {
position: fixed;
bottom: 30px;
right: 30px;
background: #005a9c;
color: white;
border: none;
border-radius: 50%;
font-size: 18px;
padding: 12px 16px;
cursor: pointer;
display: none;
box-shadow: 0 2px 6px rgba(0,0,0,0.2);
transition: background 0.3s;
}

#topBtn:hover {
background: #004080;
}
// FAQ interaction
document.querySelectorAll(‘.faq-question’).forEach(button => {
button.addEventListener(‘click’, () => {
button.classList.toggle(‘active’);
const answer = button.nextElementSibling;
if (answer.style.maxHeight) {
answer.style.maxHeight = null;
} else {
answer.style.maxHeight = answer.scrollHeight + « px »;
}
});
});

// Bouton « Retour en haut »
const topBtn = document.getElementById(‘topBtn’);

window.onscroll = () => {
topBtn.style.display = (document.documentElement.scrollTop > 300) ? ‘block’ : ‘none’;
};

topBtn.onclick = () => {
window.scrollTo({ top: 0, behavior: ‘smooth’ });
};