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

body{
    font-family:Inter,sans-serif;
    background:#fff;
    color:#0f172a;
}
.btn-close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.btn-close-popup:hover {
    color: #000;
}

/* Assurez-vous que le parent est en position relative */
.confirm-card {
    position: relative; /* Important pour que le bouton se positionne par rapport à la carte */
    padding: 30px;
    /* ... reste de vos styles existants ... */
}
.confirmation-wrapper {
    display: none; /* Caché par défaut */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.confirm-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
}
.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}
.pav_container {  padding: 40px 20px; max-width: 1200px; margin: auto; box-sizing: border-box; }
.pav_header { text-align: center; margin-bottom: 20px; }
.pav_subtitle { color: #2563eb; font-weight: bold; font-size: 0.7rem; letter-spacing: 1px; margin-bottom: 10px; }
.pav_title { font-size: 1.5rem; margin-top: 0; }

.pav_card-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.pav_card { border: 1px solid #e5e7eb; padding: 20px; border-radius: 16px; position: relative; overflow: hidden; background: #fff; }
.pav_icon { display:block;float:left;width:70px;font-size: 2.5rem; margin-bottom: 15px;position: relative;
  top: -10px; }

.pav_card h3 { margin: 0 0 5px 0; font-size: 1.5rem; }
.pav_list { list-style: none; padding: 0; margin: 20px 0; width:100%;}
.pav_list li { margin-bottom: 12px; display: flex; align-items: center; font-size: 15px; }

/* Puces de validation */
.pav_list li::before { content: "✓"; color: white; border-radius: 50%; width: 22px; height: 22px; display: inline-flex; justify-content: center; align-items: center; margin-right: 12px; font-size: 0.8rem; flex-shrink: 0; }
.pav_card-blue .pav_list li::before { background: #2563eb; }
.pav_card-green .pav_list li::before { background: #059669; }

.pav_link { display: inline-block; margin-top: 15px; color: #333; text-decoration: none; font-weight: bold;  font-size: 12px; }

/* Illustration fond (les images en bas à droite) */
.pav_bg-illustration {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 8rem;
  opacity: 0.1;
  pointer-events: none;
  transform: rotate(-10deg);
}

/* Responsive */
@media (max-width: 768px) {
  .pav_card-wrapper { grid-template-columns: 1fr; }
  .pav_bg-illustration { font-size: 6rem; }
}
/* HEADER */

.header{
    border-bottom:1px solid #edf2f7;
    background:#fff;
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:42px;
}

.logo h2{
    font-size:18px;
    color:#0f2d6b;
}

.logo span{
    font-size:11px;
    color:#64748b;
}

.nav-menu{
    display:flex;
    gap:35px;
}

.nav-menu a{
    text-decoration:none;
    color:#1e293b;
    font-size:15px;
}

.nav-buttons{
    display:flex;
    gap:15px;
}

/* BUTTONS */

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 28px;
    border-radius:10px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:#1d4ed8;
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 28px;
    border-radius:10px;
    border:1px solid #2563eb;
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-outline:hover{
    background:#2563eb;
    color:#fff;
}

/* HERO */

.hero{
    background:
    radial-gradient(circle at top left,#eef4ff 0%,#ffffff 70%);
    padding:10px 0;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.hero-left{
    flex:1;
}

.hero-right{
    flex:1;
}

.hero-right img{
    width:100%;
    display:block;
}

.badge{
    display:inline-block;
    /* padding:10px 16px; */
    border-radius:30px;
    background:#eef4ff;
    color:#2563eb;
    font-size:13px;
    font-weight:600;
    margin-bottom:10px;
}

.hero h1{
    font-size:30px;
    line-height:30px;
    margin-bottom:10px;
    font-weight:800;
}

.hero h1 span{
    color:#2563eb;
}

.hero p{
    font-size:15px;
    line-height:1.8;
    color:#64748b;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:40px;
}

.feature{
    text-align:center;
}

.icon{
    font-size:34px;
    margin-bottom:0px;
}

.feature h4{
    margin-bottom:6px;
    font-size:13px;
}

.feature p{
    font-size:13px;
    color:#64748b;
}

/* TABLET */

@media(max-width:992px){

    .hero-content{
        flex-direction:column;
        text-align:center;
    }

    .hero p{
        margin:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .features{
        grid-template-columns:repeat(2,1fr);
    }

    .nav-menu{
        display:none;
    }
}

/* MOBILE */

@media(max-width:768px){

    .hero{
        padding:50px 0;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .features{
        grid-template-columns:1fr;
    }

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-buttons{
        width:100%;
        flex-direction:column;
    }

    .btn-primary,
    .btn-outline{
        width:100%;
    }
}


.foot_container {background: radial-gradient(circle at center, #1e4b9e 0%, #05142d 100%);
  color: #ffffff;
  padding: 30px 10px; }
.foot_main { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; }

.foot_brand p { font-size: 0.9rem; opacity: 0.8; line-height: 1.5; }
.foot_logo { font-size: 1.1rem; font-weight: bold; margin-bottom: 5px; }

.foot_col h3 { font-size: 1rem; margin-bottom: 20px; }
.foot_col ul { list-style: none; padding: 0; }
.foot_col ul li { margin-bottom: 10px; }
.foot_col ul li a { color: #ccc; text-decoration: none; font-size: 0.9rem; }

.foot_socials { margin-top: 20px; display: flex; gap: 15px; }

.foot_bottom { 
  max-width: 1200px; margin: 40px auto 0; padding-top: 20px; 
  border-top: 1px solid #1e3a8a; display: flex; justify-content: space-between; font-size: 0.8rem; opacity: 0.7; 
}

/* Responsive */
@media (max-width: 900px) {
  .foot_main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .foot_main { grid-template-columns: 1fr; text-align: center; }
  .foot_bottom { flex-direction: column; gap: 10px; text-align: center; }
  .foot_socials { justify-content: center; }
}


.insc_container { 
  padding: 40px 20px; 
  /* font-family: sans-serif;  */
}

.insc_card {
  max-width: 900px;
  margin: 0 auto;
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  border: 1px solid #e2e8f0;
}

.insc_icon { font-size: 3rem; }

.insc_text h3 { margin: 0 0 5px 0; color: #1e293b; }
.insc_text p { margin: 0; color: #64748b; }

.insc_button {
  background-color: #2563eb;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  margin-left: auto; /* Pousse le bouton à droite */
}

/* Responsive : passage en colonne sur mobile */
@media (max-width: 768px) {
  .insc_card {
    flex-direction: column;
    text-align: center;
  }
  .insc_button { margin-left: 0; width: 100%; box-sizing: border-box; text-align: center; }
}
.bleu_stats-section {
/* Le dégradé radial part du centre vers l'extérieur */
  background: radial-gradient(circle at center, #1e4b9e 0%, #05142d 100%);
  color: #ffffff;
  padding: 30px 10px;
  /* font-family: sans-serif; */
  text-align: center;
}

.bleu_container { max-width: 1000px; margin: 0 auto; text-align: center; }

.bleu_main-title { 
  font-size: 0.9rem; 
  letter-spacing: 2px; 
  margin-bottom: 20px; 
  /* opacity: 0.8;  */
}
.serv_section {  padding: 40px 20px; max-width: 1200px; margin: auto; }
.serv_container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: center; }

/* Texte gauche */
.serv_subtitle { color: #2563eb; font-weight: bold; font-size: 0.9rem; margin-bottom: 10px; }
.serv_title { font-size: 2.5rem; margin-bottom: 20px; color: #111; }
.serv_text { color: #4b5563; line-height: 1.6; margin-bottom: 30px; }
.serv_button { background: #0047ff; color: white; padding: 15px 25px; border-radius: 8px; text-decoration: none; display: inline-block; font-weight: bold; }

/* Grille photos */
.serv_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.serv_card { position: relative; border-radius: 12px; overflow: hidden; height: 160px; }
.serv_card img { width: 100%; height: 100%; object-fit: cover; }

.serv_label {
  position: absolute; bottom: 15px; left: 15px;
  background: white; padding: 8px 15px; border-radius: 50px;
  display: flex; align-items: center; font-weight: bold; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.serv_label span { margin-right: 8px; }

/* Responsive */
@media (max-width: 900px) {
  .serv_container { grid-template-columns: 1fr; }
  .serv_grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .serv_grid { grid-template-columns: 1fr; }
}
.bleu_stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.bleu_stat-item { padding: 10px; }

.bleu_icon { font-size: 2.5rem; margin-bottom: 15px; }

.bleu_number { 
  font-size: 1rem; 
  font-weight: bold; 
  margin-bottom: 5px; 
}

.bleu_label { font-weight: bold; font-size: 1rem; margin-bottom: 10px; }

.bleu_desc { 
  font-size: 0.9rem; 
  /* opacity: 0.7;  */
  line-height: 1.4; 
}

/* Responsive : ajustement sur petit écran */
@media (max-width: 600px) {
  .bleu_stats-grid { grid-template-columns: 1fr 1fr; }
}


.fonc_container {  padding: 40px 0px; max-width: 95%; margin: auto; text-align: center; }
.fonc_header { margin-bottom: 50px; }
.fonc_subtitle { color: #2563eb; font-weight: bold; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 10px; }
.fonc_title { font-size: 25px; color: #1e293b; }

/* Grille adaptative */
.fonc_grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(13%, 1fr)); 
  gap: 40px; 
  align-items: start;
}

.fonc_item { display: flex; flex-direction: column; align-items: center; }
.fonc_icon { font-size: 3rem; color: #2563eb; margin-bottom: 20px; }
.fonc_item h3 { margin: 0 0 10px 0; font-size: 14px; color: #334155; }
.fonc_item p { color: #64748b; font-size: 0.9rem; line-height: 1.5; margin: 0; padding: 0 10px; }

/* Ajustements Responsive */
@media (max-width: 600px) {
  .fonc_grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .fonc_title { font-size: 1.5rem; }
}