:root{
  --mv-grey:#9da4ae;
  --mv-red:#b41412;
  --mv-dark:#111;
  --mv-bg:#f5f6f8;
  --mv-card:#ffffff;
  --mv-radius:18px;
}

body{
  background-color: var(--mv-bg);
  font-family: "Corbel", Arial, sans-serif;
  color: var(--mv-dark);
}

a{
  color: var(--mv-dark);
  text-decoration: none;
}
a:hover{
  text-decoration: none;
  opacity: .95;
}

p{
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

h1, h2{
  margin: 0;
}

div{
  margin-top: 0;
}

/* Boutons */
.btn-cta{
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  margin: 6px;
}

/* HERO */
.hero{
  background: linear-gradient(180deg, var(--mv-red), #7f0f0d);
  color: #fff;
  padding: 48px 0 24px 0;
}

.hero-inner{
  max-width: 1100px;
}

.hero-title{
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 10px;
}

.hero-subtitle{
  font-size: 18px;
  font-weight: 600;
  opacity: .95;
  margin-bottom: 12px;
}

.hero-cta{
  margin: 14px 0 18px 0;
}

.hero-badges{
  margin-top: 10px;
}

.badge-item{
  padding: 10px 8px;
}

.icone{
  width: 72px;
  height: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
}

/* Sections */
.section{
  padding: 38px 0;
}

.section-alt{
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.section-title{
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--mv-dark);
}

.section-text{
  font-size: 18px;
  font-weight: 600;
  color: rgba(0,0,0,.78);
  line-height: 1.5;
}

.section-signature{
  margin-top: 12px;
  font-size: 18px;
  font-weight: 900;
}

.section-signature span{
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  color: rgba(0,0,0,.65);
}

/* Surface carte photo+texte */
.card-surface{
  background: var(--mv-card);
  border-radius: var(--mv-radius);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

.section-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cartes prestations */
.presta-card{
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: var(--mv-card);
  border-radius: var(--mv-radius);
  box-shadow: 0 12px 22px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  height: 100%;
}

.presta-card:hover{
  transform: translateY(-2px);
  transition: 160ms ease;
}

.presta-title{
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.presta-desc{
  font-size: 14px;
  font-weight: 700;
  color: rgba(0,0,0,.66);
  margin-top: 3px;
}

/* Zone */
.zone-card{
  background: var(--mv-card);
  border-radius: var(--mv-radius);
  padding: 16px 10px;
  box-shadow: 0 12px 22px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
}

footer{
  color: white;
}

/* Scroll to top (ton code, conservé) */
#scroll_to_top{
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 50px;
  right: 30px;
}
#scroll_to_top img{
  width: 50px;
}

/* Responsive */
@media (max-width: 576px){
  .hero-title{ font-size: 26px; }
  .icone{ width: 64px; }
  p{ font-size: 17px; }
}

/* Topbar */
.mv-topbar{
  background: #111;
  color: rgba(255,255,255,.9);
  font-size: 14px;
}
.mv-topbar i{ margin-right: 6px; opacity: .9; }
.mv-topbar-left span{ margin-right: 6px; }
.mv-sep{ opacity: .55; margin: 0 8px; }
.mv-topbar-link{
  color: rgba(255,255,255,.92);
  margin-left: 14px;
  font-weight: 800;
}
.mv-topbar-link:hover{ color: #fff; text-decoration: none; }

/* Navbar */
.mv-logo{
  max-width: 105px;
  height: auto;
}
.mv-navbar .nav-link{
  font-weight: 800;
  letter-spacing: .2px;
}
.mv-btn-pill{
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
}

/* Footer */
.mv-footer-title{
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 10px;
}
.mv-footer-text{
  color: rgba(255,255,255,.78);
  font-weight: 600;
  line-height: 1.5;
}
.mv-footer-list li{
  margin: 10px 0;
  color: rgba(255,255,255,.86);
  font-weight: 650;
}
.mv-footer-list i{
  width: 22px;
  opacity: .9;
}
.mv-footer-link{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 800;
}
.mv-footer-link:hover{ color: #fff; }
.mv-footer-sep{ border-color: rgba(255,255,255,.12); }
.mv-footer-small{ color: rgba(255,255,255,.7); font-weight: 650; }

/* Mobile: topbar plus compacte */
@media (max-width: 576px){
  .mv-topbar-left{ display: none; }
  .mv-topbar-right{ width: 100%; display: flex; justify-content: space-between; }
}

.mv-topbar{
  background-color: #111 !important;
  color: #ffffff !important;
}

.mv-topbar *{
  color: #ffffff !important;
}

.mv-topbar a{
  color: #ffffff !important;
  font-weight: 700;
}

.mv-topbar a:hover{
  color: #f1f1f1 !important;
}

/* Cartes prestations avec photo */
.presta-card3{
  display: block;
  background: #fff;
  border-radius: var(--mv-radius);
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  height: 100%;
  transition: 160ms ease;
}
.presta-card3:hover{ transform: translateY(-2px); }

.presta-card-photo{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.presta-card-body{
  padding: 14px 16px 16px 16px;
}

.presta-card-head{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.presta-card3 .presta-ico{
  width: 44px;
  margin: 0;
  filter: none;
}

@media (max-width: 576px){
  .presta-card-photo{ height: 155px; }
}