*{box-sizing:border-box}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:#f5f5f5;
  color:#111;
  line-height:1.65;
}

a{
  color:#111;
  text-decoration:none;
}

header{
  background:#111;
  color:#fff;
  padding:18px 0;
}

.wrap{
  width:min(1100px,92%);
  margin:0 auto;
}

.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.brand{
  font-size:24px;
  font-weight:700;
}

.brand small{
  display:block;
  font-size:13px;
  font-weight:400;
  opacity:.85;
  margin-top:4px;
}

nav a{
  color:#fff;
  margin-right:16px;
  font-size:14px;
}

nav a:last-child{
  margin-right:0;
}

.hero{
  background:#fff;
  padding:56px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:48px;
  align-items:center; /* 🔥 centre verticalement */
}
.hero-left{
  min-width:0;
}

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

h1{
  font-size:42px;
  line-height:1.15;
  margin:0 0 18px;
}

h2{
  font-size:28px;
  margin:0 0 18px;
}

h3{
  font-size:22px;
  margin:0 0 12px;
}

p{
  margin:0 0 16px;
}

.btn{
  display:inline-block;
  background:#e85c2b;
  color:#fff;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  margin-top:10px;
  border:none;
  cursor:pointer;
}

.btn-outline{
  display:inline-block;
  border:2px solid #111;
  color:#111;
  padding:12px 20px;
  border-radius:999px;
  font-weight:700;
  margin-top:10px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:10px;
}

.card{
  background:#fff;
  padding:24px;
  border-radius:18px;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}

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

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

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

section{
  padding:52px 0;
}

.light{
  background:#fff;
}

footer{
  background:#0a0a0a;
  color:#fff;
  padding:28px 0;
  font-size:14px;
}

.form input,
.form textarea{
  width:100%;
  padding:14px;
  border:1px solid #ccc;
  border-radius:12px;
  margin-bottom:14px;
  font:inherit;
}

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

.kpis{
  display:flex;
  gap:34px;
  flex-wrap:wrap;
  margin-top:26px;
  margin-bottom:28px;
}

.kpi{
  background:transparent;
  padding:0;
  border-radius:0;
  font-weight:700;
}

.hero-photo{
  width:100%;
  min-height:360px;
  border-radius:24px;
  background:linear-gradient(135deg,#d9d9d9,#f2f2f2);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#555;
  font-weight:700;
  padding:20px;
}

/* 🔥 ajuste la position verticale fine */
.photo-lower{
  margin-top:0; /* on enlève le décalage */
}

.real-photo{
  background:none;
  padding:0;
  overflow:hidden;
}

.real-photo img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  display:block;
  border-radius:24px;
}

.full-marquee{
  width:100%;
  overflow:hidden;
  background:#efefef;
  padding:12px 0;
  margin-bottom:24px;
}

.full-marquee-track{
  display:flex;
  width:max-content;
  white-space:nowrap;
  animation:defilement-secteurs 25s linear infinite;
  font-size:15px;
  font-weight:700;
  color:#222;
}

.full-marquee-track span{
  padding-right:60px;
}

@keyframes defilement-secteurs{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

.city-links a{
  display:inline-block;
  margin:8px 10px 0 0;
  padding:10px 14px;
  background:#fff;
  border-radius:999px;
  font-size:14px;
}

.signature{
  margin-top:8px;
  max-width:340px;
}

.signature img{
  width:100%;
  max-width:340px;
  height:auto;
  display:block;
  filter:contrast(1.25);
}

.rsac{
  font-size:12px;
  color:#555;
  margin-top:4px;
  text-align:center;
  width:100%;
  line-height:1.3;
}

.hero-left{
  text-align:center;
}