﻿:root{
  --bleu:#061b2d;
  --bleu2:#0b2d48;
  --vert:#6fb51f;
  --vert-clair:#9ad63b;
  --blanc:#ffffff;
  --gris:#f5f7f8;
  --texte:#102033;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--texte);
  background:#fff;
  line-height:1.6;
}

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

.topbar{
  background:var(--bleu);
  color:#fff;
  padding:9px 5%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  font-size:14px;
}

.header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:10;
  box-shadow:0 2px 14px rgba(0,0,0,.08);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  padding:18px 5%;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  font-size:24px;
  color:var(--bleu);
}

.logo-badge{
  background:linear-gradient(135deg,var(--vert),#0d7cbb);
  color:#fff;
  width:54px;
  height:54px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:900;
}

.logo span strong{
  color:var(--vert);
}

.menu{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
}

.menu a:hover{
  color:var(--vert);
}

.btn{
  display:inline-block;
  background:var(--vert);
  color:#fff;
  padding:14px 22px;
  border-radius:6px;
  font-weight:900;
  text-transform:uppercase;
  border:0;
  cursor:pointer;
}

.btn.secondary{
  background:transparent;
  border:2px solid #fff;
}

.hero{
  min-height:560px;
  background:
    linear-gradient(90deg,rgba(6,27,45,.96),rgba(6,27,45,.72),rgba(6,27,45,.25)),
    none;
  background-size:cover;
  background-position:center;
  color:#fff;
  display:flex;
  align-items:center;
  padding:70px 5%;
}

.hero-content{
  max-width:760px;
}

.hero h1{
  font-size:52px;
  line-height:1.08;
  margin:0 0 24px;
  text-transform:uppercase;
}

.hero h1 span{
  color:var(--vert-clair);
}

.hero p{
  font-size:20px;
  max-width:680px;
}

.hero-actions{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:30px;
}

.section{
  padding:65px 5%;
}

.section.light{
  background:var(--gris);
}

.section-title{
  text-align:center;
  max-width:850px;
  margin:0 auto 38px;
}

.section-title small{
  color:var(--vert);
  font-weight:900;
  text-transform:uppercase;
}

.section-title h2{
  color:var(--bleu);
  font-size:34px;
  line-height:1.2;
  margin:6px 0 0;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.card{
  background:#fff;
  border:1px solid #e2e8ec;
  border-radius:10px;
  padding:28px;
  box-shadow:0 8px 22px rgba(6,27,45,.08);
}

.card-icon{
  font-size:42px;
  color:var(--vert);
  margin-bottom:12px;
}

.card h3{
  margin:0 0 10px;
  color:var(--bleu);
}

.band{
  background:var(--bleu);
  color:#fff;
  padding:26px 5%;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.band-item{
  display:flex;
  gap:14px;
  align-items:center;
  font-weight:700;
}

.about{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:36px;
  align-items:center;
}

.fake-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.fake-img{
  min-height:160px;
  border-radius:10px;
  background:linear-gradient(135deg,#dfe8ec,#6fb51f);
}

.cta{
  background:linear-gradient(135deg,var(--bleu),var(--bleu2));
  color:#fff;
  border-radius:10px;
  padding:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.cta h2{
  margin:0;
  font-size:30px;
}

.footer{
  background:var(--bleu);
  color:#fff;
  padding:45px 5% 18px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.4fr;
  gap:28px;
}

.footer h3{
  margin-top:0;
}

.footer a{
  display:block;
  margin:6px 0;
  color:#dbe8ef;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.18);
  margin-top:30px;
  padding-top:14px;
  text-align:center;
  color:#cbd8df;
}

.menu-btn{
  display:none;
  background:var(--bleu);
  color:#fff;
  border:0;
  padding:11px 14px;
  border-radius:6px;
  font-weight:800;
}

@media(max-width:900px){
  .nav{
    flex-wrap:wrap;
  }

  .menu-btn{
    display:block;
  }

  .menu{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:flex-start;
  }

  .menu.open{
    display:flex;
  }

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

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

  .grid,
  .band,
  .about,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .section{
    padding:45px 5%;
  }
}

.contact-form{
  display:grid;
  gap:10px;
}

.contact-form label{
  font-weight:800;
  color:var(--bleu);
  margin-top:8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:13px 14px;
  border:1px solid #d4dde3;
  border-radius:8px;
  font:inherit;
  background:#fff;
}

.contact-form textarea{
  min-height:150px;
  resize:vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline:2px solid rgba(111,181,31,.25);
  border-color:var(--vert);
}

.contact-form button{
  margin-top:12px;
}

.legal-page .section-title p{
  max-width:760px;
  margin:10px auto 0;
}

.legal-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:28px;
}

.legal-grid .card{
  min-height:260px;
}

.legal-subtitle{
  margin-top:50px;
}

.legal-cta{
  margin-top:34px;
}

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

.service-card{
  display:block;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(6,27,45,.14);
  border-color:var(--vert);
}

.card-link{
  display:inline-block;
  margin-top:12px;
  color:var(--vert);
  font-weight:900;
  text-transform:uppercase;
  font-size:13px;
}

.cgv-box{
  margin-top:20px;
  background:#fff;
  border:1px solid #e2e8ec;
  border-radius:10px;
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  box-shadow:0 8px 22px rgba(6,27,45,.08);
}

.cgv-box h3{
  margin:0 0 6px;
  color:var(--bleu);
  text-transform:uppercase;
}

.cgv-box p{
  margin:0;
}

@media(max-width:900px){
  .cgv-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

.hero-label{
  display:inline-block;
  color:var(--vert-clair);
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:14px;
}

.six-cards{
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}

.prestation-card{
  padding:24px 18px;
}

.prestation-card ul{
  list-style:none;
  padding:0;
  margin:18px 0 0;
}

.prestation-card li{
  margin:9px 0;
  font-size:14px;
  color:#344657;
}

.prestation-card li::before{
  content:"✓";
  color:var(--vert);
  font-weight:900;
  margin-right:8px;
}

.reassurance-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.reassurance-item{
  background:#fff;
  padding:24px;
  border-radius:10px;
  border:1px solid #e2e8ec;
  box-shadow:0 8px 22px rgba(6,27,45,.06);
}

.cta h2 span{
  color:var(--vert-clair);
}

.cta-actions{
  display:grid;
  gap:14px;
  align-items:center;
}

.quick-contact{
  margin-top:20px;
  background:linear-gradient(135deg,var(--bleu),var(--bleu2));
  color:#fff;
  border-radius:10px;
  padding:28px 34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.quick-contact h2{
  margin:0 0 6px;
  color:#fff;
}

.quick-contact p{
  margin:0;
}

.quick-contact .secondary{
  border:2px solid rgba(255,255,255,.7);
}

@media(max-width:1200px){
  .six-cards{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:900px){
  .six-cards,
  .reassurance-grid{
    grid-template-columns:1fr;
  }
}

.sectors-grid{
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.sector-card{
  text-align:center;
  min-height:240px;
}

.sector-card .card-icon{
  margin-left:auto;
  margin-right:auto;
  font-size:48px;
}

.sector-card h3{
  position:relative;
  padding-bottom:12px;
}

.sector-card h3::after{
  content:"";
  width:34px;
  height:2px;
  background:var(--vert);
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
}

.compact-section{
  padding-top:20px;
  padding-bottom:20px;
}

.info-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  background:#fff;
  border-radius:12px;
  padding:28px;
  border:1px solid #e2e8ec;
  box-shadow:0 8px 22px rgba(6,27,45,.06);
}

.info-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
}

.info-item h3{
  margin:0 0 8px;
  color:var(--vert);
}

.info-item p{
  margin:0;
}

.zone-layout{
  display:grid;
  grid-template-columns:0.85fr 1.6fr;
  gap:30px;
  align-items:stretch;
}

.zone-layout h2{
  color:var(--bleu);
  font-size:36px;
  line-height:1.15;
}

.check-list{
  list-style:none;
  padding:0;
  margin:18px 0;
}

.check-list li{
  margin:9px 0;
}

.check-list li::before{
  content:"✓";
  color:var(--vert);
  font-weight:900;
  margin-right:10px;
}

.map-placeholder{
  min-height:360px;
  border-radius:12px;
  background:
    radial-gradient(circle at center, rgba(111,181,31,.18) 0 33%, transparent 34%),
    linear-gradient(135deg,#e9f1ee,#f8faf9);
  border:1px solid #d9e4df;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--bleu);
  padding:30px;
  position:relative;
  overflow:hidden;
}

.map-placeholder::before{
  content:"";
  width:330px;
  height:330px;
  border:3px dashed var(--vert);
  border-radius:50%;
  position:absolute;
  opacity:.7;
}

.map-placeholder strong{
  background:var(--bleu);
  color:#fff;
  padding:10px 16px;
  border-radius:999px;
  z-index:1;
  margin-bottom:12px;
}

.map-placeholder span{
  z-index:1;
  max-width:520px;
}

.map-circle{
  position:absolute;
  top:46px;
  background:var(--vert);
  color:#fff;
  padding:5px 12px;
  border-radius:999px;
  font-weight:900;
  z-index:1;
}

@media(max-width:1200px){
  .sectors-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:900px){
  .sectors-grid,
  .info-split,
  .zone-layout{
    grid-template-columns:1fr;
  }

  .info-item{
    flex-direction:column;
  }

  .map-placeholder{
    min-height:280px;
  }
}

.engagement-layout{
  display:grid;
  grid-template-columns:0.85fr 1.6fr;
  gap:34px;
  align-items:start;
}

.engagement-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.mini-card{
  text-align:center;
  min-height:180px;
  padding:22px 16px;
}

.mini-card .card-icon{
  margin-left:auto;
  margin-right:auto;
}

.story-layout{
  display:grid;
  grid-template-columns:0.8fr 1.4fr;
  gap:34px;
  align-items:center;
}

.story-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.story-card{
  display:block;
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(6,27,45,.10);
  border:1px solid #e2e8ec;
}

.story-card strong{
  display:block;
  background:var(--bleu);
  color:#fff;
  text-align:center;
  padding:16px;
  font-size:20px;
}

.values-section{
  padding-top:35px;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  background:#fff;
  border:1px solid #e2e8ec;
  border-radius:12px;
  padding:26px;
  box-shadow:0 8px 22px rgba(6,27,45,.06);
}

.value-item{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  align-items:start;
  border-right:1px solid #e2e8ec;
  padding-right:16px;
}

.value-item:last-child{
  border-right:0;
}

.value-item .card-icon{
  margin:0;
}

.value-item h3{
  margin:0 0 4px;
  color:var(--bleu);
}

.value-item p{
  margin:0;
  font-size:14px;
}

@media(max-width:1200px){
  .engagement-cards{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:900px){
  .engagement-layout,
  .story-layout,
  .story-cards,
  .values-grid{
    grid-template-columns:1fr;
  }

  .value-item{
    border-right:0;
    border-bottom:1px solid #e2e8ec;
    padding-bottom:16px;
  }

  .value-item:last-child{
    border-bottom:0;
  }
}

.contact-info-section{
  padding-bottom:25px;
}

.contact-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.contact-card{
  text-align:center;
  min-height:190px;
}

.contact-card .card-icon{
  margin-left:auto;
  margin-right:auto;
  font-size:42px;
}

.contact-card strong{
  font-size:20px;
  color:var(--vert);
}

.contact-main-section{
  padding-top:25px;
}

.contact-layout{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:24px;
  align-items:start;
}

.contact-layout h2{
  color:var(--bleu);
  text-transform:uppercase;
  font-size:22px;
  margin-top:0;
  position:relative;
  padding-bottom:12px;
}

.contact-layout h2::after{
  content:"";
  width:48px;
  height:3px;
  background:var(--vert);
  position:absolute;
  left:0;
  bottom:0;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.contact-map{
  min-height:330px;
  border-radius:10px;
  background:
    radial-gradient(circle at center, rgba(6,27,45,.10) 0 4%, transparent 5%),
    linear-gradient(135deg,#edf3ef,#fbfbf8);
  border:1px solid #dfe7e2;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  position:relative;
  overflow:hidden;
  margin-bottom:18px;
}

.contact-map::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(35deg, transparent 48%, rgba(111,181,31,.18) 49%, rgba(111,181,31,.18) 51%, transparent 52%),
    linear-gradient(120deg, transparent 48%, rgba(6,27,45,.10) 49%, rgba(6,27,45,.10) 51%, transparent 52%);
  background-size:120px 120px;
}

.contact-map strong{
  position:relative;
  z-index:1;
  background:var(--bleu);
  padding:12px 18px;
  border-radius:999px;
  box-shadow:0 8px 18px rgba(6,27,45,.22);
}

.location-note{
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:#f5f7f8;
  border-radius:10px;
  padding:22px;
  border:1px solid #e2e8ec;
}

.location-note .card-icon{
  margin:0;
  flex:0 0 auto;
}

.location-note h3{
  margin:0 0 6px;
}

.location-note p{
  margin:0;
}

@media(max-width:1000px){
  .contact-cards{
    grid-template-columns:repeat(2,1fr);
  }

  .contact-layout{
    grid-template-columns:1fr;
  }
}

@media(max-width:650px){
  .contact-cards,
  .form-row{
    grid-template-columns:1fr;
  }
}

.logo-img{
  display:block;
  width:210px;
  max-width:100%;
  height:auto;
}

.logo{
  flex-shrink:0;
}

.footer-logo{
  display:block;
  width:190px;
  max-width:100%;
  height:auto;
  margin-bottom:16px;
}

.hero-logo-watermark,
.hero::after{
  opacity: 0.04 !important;
}

.hero::after,
.hero-logo-watermark,
.hero-bg-logo,
.hero-watermark{
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  background-image: none !important;
}

.hero{
  background-image: linear-gradient(120deg, rgba(5,31,47,0.96), rgba(18,77,44,0.96)) !important;
}

.hero::before,
.hero::after{
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

.form-retour{
  margin-bottom:18px;
  padding:14px 16px;
  border-radius:14px;
  font-weight:700;
}

.form-retour.success{
  background:#e8f8df;
  color:#235f12;
  border:1px solid rgba(126,217,31,.45);
}

.form-retour.error{
  background:#fff0f0;
  color:#8a1f1f;
  border:1px solid rgba(220,60,60,.35);
}

.map-card{
  background:#ffffff;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(5,31,47,.12);
  border:1px solid rgba(5,31,47,.08);
}

.map-card iframe{
  display:block;
  width:100%;
  height:360px;
  border:0;
}

.map-card-content{
  padding:24px 26px;
}

.map-card-content h3{
  margin:0 0 10px;
  color:#051f2f;
}

.map-card-content p{
  margin:0 0 10px;
  color:#31424d;
  line-height:1.6;
}

.map-card-content p:last-child{
  margin-bottom:0;
  color:#7ed91f;
  font-size:1.1rem;
}


.card-icon{
  width:54px;
  height:54px;
  border-radius:18px;
  background:linear-gradient(135deg,#7ed91f,#38b46b);
  box-shadow:0 12px 24px rgba(126,217,31,.25);
  position:relative;
  flex:0 0 auto;
}

.card-icon::before{
  content:"";
  position:absolute;
  inset:13px;
  border-radius:10px;
  background:rgba(255,255,255,.22);
}

.card-icon::after{
  content:"✓";
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  font-size:28px;
  font-weight:900;
  line-height:1;
}

.top-info{
  display:inline-flex;
  align-items:center;
  gap:7px;
}

.top-info::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:999px;
  background:#7ed91f;
  box-shadow:0 0 0 4px rgba(126,217,31,.16);
  flex:0 0 auto;
}

.service-card .card-icon{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  height:auto;
  margin:0 0 14px;
  background:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
}

.service-icon-img{
  display:block;
  width:82px;
  height:82px;
  object-fit:contain;
  margin:0 auto 10px;
}

.service-card{
  overflow:hidden;
}

.service-card .card-icon{
  min-height:105px !important;
  padding-top:8px;
  padding-bottom:4px;
  overflow:visible !important;
}

.service-card .card-icon img,
.service-icon-img{
  width:92px !important;
  height:92px !important;
  max-width:92px !important;
  max-height:92px !important;
  object-fit:contain !important;
  object-position:center center !important;
}

.service-card .card-icon{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  width:100% !important;
  min-height:120px !important;
  height:120px !important;
  padding:0 !important;
  margin:0 0 12px !important;
  overflow:visible !important;
}

.service-card .card-icon img.service-icon-img{
  display:block !important;
  width:96px !important;
  height:auto !important;
  max-width:96px !important;
  max-height:none !important;
  object-fit:unset !important;
  object-position:center !important;
}

.service-card .card-icon{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  width:100% !important;
  height:110px !important;
  min-height:110px !important;
  margin:0 0 14px !important;
  padding:0 !important;
  overflow:visible !important;
  background:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
}

.service-card .card-icon::before,
.service-card .card-icon::after{
  display:none !important;
  content:none !important;
}

.service-card .card-icon img.service-icon-img,
.service-icon-img{
  display:block !important;
  width:105px !important;
  height:105px !important;
  max-width:105px !important;
  max-height:105px !important;
  object-fit:contain !important;
}

.home-hero{
  position:relative;
  background:
    linear-gradient(90deg, rgba(5,31,47,.96) 0%, rgba(5,31,47,.86) 38%, rgba(5,31,47,.35) 68%, rgba(5,31,47,.10) 100%),
    url("../images/hero-photo.png") center right / cover no-repeat !important;
  min-height:510px;
}

.home-hero .hero-content{
  position:relative;
  z-index:2;
  max-width:680px;
}

@media(max-width:900px){
  .home-hero{
    background:
      linear-gradient(120deg, rgba(5,31,47,.96), rgba(18,77,44,.88)),
      url("../images/hero-photo.png") center center / cover no-repeat !important;
  }
}

.home-hero{
  background:
    linear-gradient(90deg, rgba(5,31,47,.98) 0%, rgba(5,31,47,.94) 42%, rgba(5,31,47,.72) 68%, rgba(5,31,47,.55) 100%),
    url("../images/hero-photo.png") center right / cover no-repeat !important;
  min-height:500px;
}

.home-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 75% 35%, rgba(126,217,31,.10), transparent 32%),
    linear-gradient(180deg, rgba(5,31,47,.08), rgba(5,31,47,.30));
  z-index:1;
  pointer-events:none;
}

.home-hero .hero-content{
  position:relative;
  z-index:2;
}

.about-gallery{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:12px;
}

.about-gallery img{
  width:100%;
  height:170px;
  object-fit:cover;
  display:block;
  border-radius:12px;
  box-shadow:0 10px 24px rgba(5,31,47,.14);
}

.about-gallery img:nth-child(1){
  object-position:center center;
}

.about-gallery img:nth-child(2){
  object-position:center center;
}

.about-gallery img:nth-child(3){
  object-position:center center;
}

.about-gallery img:nth-child(4){
  object-position:center center;
}

@media(max-width:800px){
  .about-gallery{
    grid-template-columns:1fr;
  }

  .about-gallery img{
    height:210px;
  }
}


.home-hero{
  background:
    linear-gradient(90deg, rgba(5,31,47,.94) 0%, rgba(5,31,47,.82) 36%, rgba(5,31,47,.42) 62%, rgba(5,31,47,.12) 100%),
    url("../images/hero-photo.png") center right / cover no-repeat !important;
}

.home-hero::before{
  background:
    radial-gradient(circle at 75% 35%, rgba(126,217,31,.05), transparent 32%),
    linear-gradient(180deg, rgba(5,31,47,.02), rgba(5,31,47,.12)) !important;
}

.nav a.active{
  color:#2f7d1d !important;
  font-weight:800;
  position:relative;
}

.nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:3px;
  border-radius:999px;
  background:#7ed91f;
}

.prestation-card .card-icon,
.service-card .card-icon{
  background:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
}

.prestation-card .card-icon::before,
.prestation-card .card-icon::after,
.service-card .card-icon::before,
.service-card .card-icon::after{
  content:none !important;
  display:none !important;
}

.prestation-card .card-icon img,
.service-card .card-icon img{
  position:relative !important;
  z-index:2 !important;
}

/* Correction icônes page Prestations */
.prestations-grid .card-icon,
.reassurance-grid .card-icon{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:100% !important;
  height:96px !important;
  min-height:96px !important;
  margin:0 0 16px !important;
  padding:0 !important;
  background:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
  overflow:visible !important;
}

.prestations-grid .card-icon::before,
.prestations-grid .card-icon::after,
.reassurance-grid .card-icon::before,
.reassurance-grid .card-icon::after{
  content:none !important;
  display:none !important;
}

.prestations-grid .card-icon img.service-icon-img,
.reassurance-grid .card-icon img.service-icon-img{
  display:block !important;
  width:78px !important;
  height:78px !important;
  max-width:78px !important;
  max-height:78px !important;
  object-fit:contain !important;
  margin:0 auto !important;
  position:static !important;
  transform:none !important;
}

.prestations-grid h3,
.reassurance-grid h3{
  margin-top:0 !important;
  clear:both !important;
}

.reassurance-card{
  align-items:flex-start !important;
}

.reassurance-card .card-icon{
  flex:0 0 96px !important;
  width:96px !important;
  height:96px !important;
  min-height:96px !important;
  margin:0 18px 0 0 !important;
}

.reassurance-card .card-icon img.service-icon-img{
  width:68px !important;
  height:68px !important;
  max-width:68px !important;
  max-height:68px !important;
}

body{
  background:
    radial-gradient(circle at top left, rgba(126,217,31,.08), transparent 32%),
    linear-gradient(180deg, #f7faf6 0%, #eef4ef 100%) !important;
}

main,
.section,
.page-section{
  background:transparent !important;
}

.services,
.about,
.sectors,
.contact-section,
.legal-section,
.prestations-section{
  background:transparent !important;
}

.card,
.service-card,
.prestation-card,
.reassurance-card,
.contact-card,
.sector-card,
.legal-card{
  background:#ffffff !important;
}

/* Correction icônes page Secteurs */
.sectors-grid .card-icon,
.sector-card .card-icon{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:100% !important;
  height:96px !important;
  min-height:96px !important;
  margin:0 0 16px !important;
  padding:0 !important;
  background:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
  overflow:visible !important;
}

.sectors-grid .card-icon::before,
.sectors-grid .card-icon::after,
.sector-card .card-icon::before,
.sector-card .card-icon::after{
  content:none !important;
  display:none !important;
}

.sectors-grid .card-icon img.service-icon-img,
.sector-card .card-icon img.service-icon-img{
  display:block !important;
  width:78px !important;
  height:78px !important;
  max-width:78px !important;
  max-height:78px !important;
  object-fit:contain !important;
  margin:0 auto !important;
  position:static !important;
  transform:none !important;
}

/* Suppression icône provisoire page Secteurs */
.sector-card .card-icon,
.sectors-grid .card-icon{
  background:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
}

.sector-card .card-icon::before,
.sector-card .card-icon::after,
.sectors-grid .card-icon::before,
.sectors-grid .card-icon::after{
  content:none !important;
  display:none !important;
}

/* Si une vraie image est dans card-icon, on supprime totalement l'ancienne coche provisoire */
.card-icon:has(img)::before,
.card-icon:has(img)::after{
  content:none !important;
  display:none !important;
}

.card-icon:has(img){
  background:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
}

/* Alignement des 2 blocs info page Secteurs */
.sector-info{
  display:grid !important;
  grid-template-columns:repeat(2, 1fr) !important;
  gap:24px !important;
  align-items:stretch !important;
}

.sector-info .card{
  display:flex !important;
  align-items:center !important;
  gap:18px !important;
  height:100% !important;
}

.sector-info .card-icon{
  flex:0 0 78px !important;
  width:78px !important;
  height:78px !important;
  min-width:78px !important;
  min-height:78px !important;
  margin:0 !important;
  padding:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.sector-info .card-icon img.service-icon-img{
  width:62px !important;
  height:62px !important;
  max-width:62px !important;
  max-height:62px !important;
  object-fit:contain !important;
  margin:0 !important;
}

.sector-info h3{
  margin:0 0 8px !important;
}

.sector-info p{
  margin:0 !important;
}

@media(max-width:800px){
  .sector-info{
    grid-template-columns:1fr !important;
  }
}

/* Ajustement fin des 2 icônes info page Secteurs */
.sector-info .card{
  align-items:flex-start !important;
  padding:28px 30px !important;
}

.sector-info .card-icon{
  flex:0 0 88px !important;
  width:88px !important;
  height:88px !important;
  min-width:88px !important;
  min-height:88px !important;
  margin:8px 18px 0 0 !important;
}

.sector-info .card-icon img.service-icon-img{
  width:72px !important;
  height:72px !important;
  max-width:72px !important;
  max-height:72px !important;
}

.sector-info .card h3,
.sector-info .card p{
  position:relative !important;
  z-index:2 !important;
}

/* Alignement réel des 2 blocs info page Secteurs */
.info-split{
  display:grid !important;
  grid-template-columns:repeat(2, 1fr) !important;
  gap:28px !important;
  align-items:stretch !important;
}

.info-split .info-item{
  display:grid !important;
  grid-template-columns:90px 1fr !important;
  column-gap:18px !important;
  align-items:center !important;
  padding:28px 30px !important;
}

.info-split .info-item .card-icon{
  grid-column:1 !important;
  grid-row:1 / span 2 !important;
  width:78px !important;
  height:78px !important;
  min-width:78px !important;
  min-height:78px !important;
  margin:0 !important;
  padding:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
}

.info-split .info-item .card-icon img.service-icon-img{
  width:70px !important;
  height:70px !important;
  max-width:70px !important;
  max-height:70px !important;
  object-fit:contain !important;
  margin:0 !important;
}

.info-split .info-item h3{
  grid-column:2 !important;
  margin:0 0 8px !important;
}

.info-split .info-item p{
  grid-column:2 !important;
  margin:0 !important;
}

@media(max-width:800px){
  .info-split{
    grid-template-columns:1fr !important;
  }
}

  width:min(1180px, calc(100% - 56px)) !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Correction bandeaux CTA avant footer - Prestations / Secteurs / Contact */
body:not(:has(.apropos-hero)) .quick-contact{
  background:transparent !important;
  padding:28px 0 !important;
}

body:not(:has(.apropos-hero)) .quick-contact-box{
  width:min(1180px, calc(100% - 56px)) !important;
  margin-left:auto !important;
  margin-right:auto !important;
  background:linear-gradient(135deg,#051f2f,#08324a) !important;
  color:#ffffff !important;
  border-radius:16px !important;
  padding:28px 34px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:24px !important;
  box-shadow:0 18px 40px rgba(5,31,47,.18) !important;
  box-sizing:border-box !important;
}

body:not(:has(.apropos-hero)) .quick-contact-box h2,
body:not(:has(.apropos-hero)) .quick-contact-box h3,
body:not(:has(.apropos-hero)) .quick-contact-box p{
  color:#ffffff !important;
  margin-top:0 !important;
}

body:not(:has(.apropos-hero)) .quick-contact-box .btn{
  flex:0 0 auto !important;
  color:#ffffff !important;
}

body:not(:has(.apropos-hero)) .quick-contact-box .btn.secondary{
  background:transparent !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,.75) !important;
}

body:not(:has(.apropos-hero)) .quick-contact-box .btn.secondary:hover{
  background:#ffffff !important;
  color:#051f2f !important;
}

@media(max-width:800px){
  body:not(:has(.apropos-hero)) .quick-contact-box{
    width:min(100% - 32px, 1180px) !important;
    flex-direction:column !important;
    align-items:flex-start !important;
  }
}

/* Correction réelle des bandeaux quick-contact cassés */
.quick-contact{
  width:min(1180px, calc(100% - 56px)) !important;
  margin:28px auto !important;
  background:linear-gradient(135deg,#051f2f,#08324a) !important;
  color:#ffffff !important;
  border-radius:16px !important;
  padding:28px 34px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:24px !important;
  box-shadow:0 18px 40px rgba(5,31,47,.18) !important;
  box-sizing:border-box !important;
}

.quick-contact h2,
.quick-contact h3,
.quick-contact p{
  color:#ffffff !important;
  margin-top:0 !important;
}

.quick-contact .btn{
  flex:0 0 auto !important;
  color:#ffffff !important;
}

.quick-contact .btn.secondary{
  background:transparent !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,.75) !important;
}

.quick-contact .btn.secondary:hover{
  background:#ffffff !important;
  color:#051f2f !important;
}

@media(max-width:800px){
  .quick-contact{
    width:min(100% - 32px, 1180px) !important;
    flex-direction:column !important;
    align-items:flex-start !important;
  }
}

/* Icônes page Contact */
.contact-card .card-icon,
.map-card-content .card-icon{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:82px !important;
  height:82px !important;
  min-width:82px !important;
  min-height:82px !important;
  margin:0 0 16px !important;
  padding:0 !important;
  background:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
}

.contact-card .card-icon img.service-icon-img,
.map-card-content .card-icon img.service-icon-img{
  width:68px !important;
  height:68px !important;
  max-width:68px !important;
  max-height:68px !important;
  object-fit:contain !important;
}

.contact-card .card-icon::before,
.contact-card .card-icon::after,
.map-card-content .card-icon::before,
.map-card-content .card-icon::after{
  content:none !important;
  display:none !important;
}

/* ===============================
   FIX CTA + ICONES CONTACT
   =============================== */

/* Bandeaux quick-contact réellement visibles */
div.quick-contact{
  width:min(1180px, calc(100% - 56px)) !important;
  margin:28px auto !important;
  background:linear-gradient(135deg,#051f2f,#08324a) !important;
  color:#ffffff !important;
  border-radius:16px !important;
  padding:28px 34px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:24px !important;
  box-shadow:0 18px 40px rgba(5,31,47,.18) !important;
  box-sizing:border-box !important;
  border:none !important;
}

div.quick-contact h2,
div.quick-contact h3,
div.quick-contact p{
  color:#ffffff !important;
  margin-top:0 !important;
}

div.quick-contact .btn{
  flex:0 0 auto !important;
  color:#ffffff !important;
}

div.quick-contact .btn.secondary{
  background:transparent !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,.75) !important;
}

div.quick-contact .btn.secondary:hover{
  background:#ffffff !important;
  color:#051f2f !important;
}

/* Cartes haut de page Contact : icônes bien centrées */
.contact-cards .contact-card .card-icon,
.contact-card .card-icon{
  width:100% !important;
  height:82px !important;
  min-height:82px !important;
  margin:0 0 18px !important;
  padding:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
  overflow:visible !important;
}

.contact-cards .contact-card .card-icon img.service-icon-img,
.contact-card .card-icon img.service-icon-img{
  display:block !important;
  width:62px !important;
  height:62px !important;
  max-width:62px !important;
  max-height:62px !important;
  object-fit:contain !important;
  margin:0 auto !important;
  position:static !important;
  transform:none !important;
}

/* Bloc sous la carte Contact : icône à gauche, texte à droite */
.location-note{
  display:grid !important;
  grid-template-columns:86px 1fr !important;
  gap:18px !important;
  align-items:center !important;
  padding:24px 26px !important;
}

.location-note .card-icon{
  width:72px !important;
  height:72px !important;
  min-width:72px !important;
  min-height:72px !important;
  margin:0 !important;
  padding:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
}

.location-note .card-icon img.service-icon-img{
  width:62px !important;
  height:62px !important;
  max-width:62px !important;
  max-height:62px !important;
  object-fit:contain !important;
  margin:0 !important;
}

.location-note h3{
  margin:0 0 8px !important;
}

.location-note p{
  margin:0 !important;
}

/* Supprime toute ancienne coche/pastille sur les vraies icônes */
.card-icon:has(img)::before,
.card-icon:has(img)::after{
  content:none !important;
  display:none !important;
}

@media(max-width:800px){
  div.quick-contact{
    width:min(100% - 32px, 1180px) !important;
    flex-direction:column !important;
    align-items:flex-start !important;
  }

  .location-note{
    grid-template-columns:70px 1fr !important;
  }
}

/* FIX DÉFINITIF CTA bas de page */
div[data-cta-fix="true"]{
  background:#051f2f !important;
  background-image:linear-gradient(135deg,#051f2f,#08324a) !important;
  color:#ffffff !important;
}

div[data-cta-fix="true"] h2,
div[data-cta-fix="true"] h3,
div[data-cta-fix="true"] p,
div[data-cta-fix="true"] span{
  color:#ffffff !important;
}

div[data-cta-fix="true"] .btn{
  color:#ffffff !important;
  flex:0 0 auto !important;
}

div[data-cta-fix="true"] .btn.secondary{
  background:transparent !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,.8) !important;
}

div[data-cta-fix="true"] .btn.secondary:hover{
  background:#ffffff !important;
  color:#051f2f !important;
}

@media(max-width:800px){
  div[data-cta-fix="true"]{
    width:min(100% - 32px, 1180px) !important;
    flex-direction:column !important;
    align-items:flex-start !important;
  }
}

/* ==================================================
   HEADER GLOBAL FINAL - harmonisation toutes pages
   ================================================== */

header{
  background:#ffffff !important;
}

.topbar{
  background:#051f2f !important;
  height:38px !important;
  min-height:38px !important;
  max-height:38px !important;
  padding:0 !important;
  overflow:hidden !important;
}

.topbar-content{
  width:min(1180px, calc(100% - 56px)) !important;
  height:38px !important;
  min-height:38px !important;
  max-height:38px !important;
  margin:0 auto !important;
  padding:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:24px !important;
  box-sizing:border-box !important;
}

.topbar-content span{
  line-height:38px !important;
  font-size:0.9rem !important;
}

.navbar{
  width:min(1180px, calc(100% - 56px)) !important;
  margin:0 auto !important;
  padding:26px 0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:28px !important;
  box-sizing:border-box !important;
}

.logo{
  display:flex !important;
  align-items:center !important;
  flex:0 0 auto !important;
}

.logo-img{
  width:300px !important;
  max-width:300px !important;
  height:auto !important;
  display:block !important;
}

.nav{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:28px !important;
  flex:1 1 auto !important;
  min-width:0 !important;
}

.nav a{
  font-size:0.9rem !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  letter-spacing:0 !important;
  white-space:nowrap !important;
}

.navbar > .btn{
  flex:0 0 auto !important;
  padding:17px 24px !important;
  font-size:0.9rem !important;
  font-weight:900 !important;
  white-space:nowrap !important;
}

@media(max-width:1000px){
  .navbar{
    flex-wrap:wrap !important;
  }

  .nav{
    order:3 !important;
    width:100% !important;
    flex-wrap:wrap !important;
  }

  .logo-img{
    width:240px !important;
    max-width:240px !important;
  }
}
