
:root{
  --bg:#f4f7fb;
  --ink:#0b1220;
  --muted:#64748b;
  --navy:#07111f;
  --navy-2:#0e1d33;
  --blue:#1d4ed8;
  --blue-2:#173b8f;
  --orange:#ff6b18;
  --orange-2:#f97316;
  --green:#10b981;
  --white:#ffffff;
  --line:#e2e8f0;
  --shadow:0 18px 45px rgba(15,23,42,.12);
  --radius:24px;
}

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

html{scroll-behavior:smooth}

body{
  font-family:Inter,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.65;
  font-size:16px;
}

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

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1180px,calc(100% - 40px));
  margin-inline:auto;
}

.topbar{
  background:#f8fafc;
  color:#0f172a;
  border-bottom:1px solid var(--line);
  font-size:14px;
  font-weight:700;
}

.topbar-inner{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.topbar strong{
  color:#020617;
}

.header{
  background:#081120;
  color:white;
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 8px 25px rgba(2,6,23,.18);
}

.nav{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.logo{
  display:flex;
  flex-direction:column;
  gap:2px;
  font-size:22px;
  font-weight:900;
  letter-spacing:-.04em;
  color:white;
}

.logo small{
  font-size:12px;
  color:#cbd5e1;
  font-weight:700;
  letter-spacing:0;
}

.menu{
  display:flex;
  align-items:center;
  gap:20px;
  color:#e2e8f0;
  font-size:15px;
  font-weight:850;
}

.menu a{
  opacity:.9;
  transition:.2s ease;
}

.menu a:hover{
  opacity:1;
  color:white;
}

.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 20px;
  border-radius:999px;
  background:var(--orange);
  color:white;
  font-weight:900;
  box-shadow:0 14px 28px rgba(249,115,22,.28);
}

.hero{
  position:relative;
  overflow:hidden;
  color:white;
  background:
    radial-gradient(circle at 80% 20%, rgba(249,115,22,.22), transparent 28%),
    radial-gradient(circle at 12% 12%, rgba(37,99,235,.34), transparent 30%),
    linear-gradient(135deg,#07111f 0%,#10244a 55%,#123b7a 100%);
  padding:92px 0 72px;
}

.hero:after{
  content:"";
  position:absolute;
  inset:auto -120px -160px auto;
  width:420px;
  height:420px;
  background:rgba(255,255,255,.08);
  border-radius:50%;
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:42px;
  align-items:center;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:0 13px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  color:#f8fafc;
  font-size:13px;
  font-weight:900;
  backdrop-filter:blur(10px);
}

.hero h1{
  max-width:860px;
  font-size:clamp(38px,5.2vw,72px);
  line-height:1.02;
  letter-spacing:-.07em;
  margin:0 0 20px;
}

.hero p{
  max-width:700px;
  color:#dbeafe;
  font-size:19px;
  margin-bottom:26px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:28px;
}

.btn,
.btn-primary,
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  font-weight:900;
  transition:.2s ease;
}

.btn-primary{
  background:var(--orange);
  color:white;
  box-shadow:0 15px 30px rgba(249,115,22,.28);
}

.btn-primary:hover,
.nav-cta:hover{
  transform:translateY(-2px);
  background:#fb5a0a;
}

.btn-secondary{
  background:white;
  color:#0f172a;
  border:1px solid rgba(255,255,255,.3);
}

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

.stat{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.15);
}

.stat strong{
  display:block;
  font-size:22px;
  line-height:1;
}

.stat span{
  display:block;
  margin-top:7px;
  color:#dbeafe;
  font-size:13px;
  font-weight:700;
}

.hero-card{
  background:rgba(255,255,255,.11);
  border:1px solid rgba(255,255,255,.18);
  border-radius:30px;
  padding:28px;
  box-shadow:0 28px 65px rgba(2,6,23,.25);
  backdrop-filter:blur(18px);
}

.hero-card h3{
  font-size:28px;
  letter-spacing:-.04em;
  margin-bottom:8px;
}

.hero-card p{
  font-size:15px;
  margin-bottom:18px;
}

.searchbox{
  background:white;
  color:#0f172a;
  border-radius:22px;
  padding:20px;
}

.searchbox strong{
  display:block;
  margin-bottom:12px;
  font-size:15px;
}

.quick-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.quick-links a{
  display:block;
  padding:12px 13px;
  border-radius:14px;
  background:#f1f5f9;
  color:#0f172a;
  font-weight:850;
  font-size:14px;
  transition:.2s ease;
}

.quick-links a:hover{
  background:#e0edff;
  color:#1d4ed8;
}

.section{
  padding:74px 0;
}

.section-title{
  max-width:780px;
  margin-bottom:32px;
}

.eyebrow{
  display:inline-block;
  margin-bottom:10px;
  color:var(--orange);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.10em;
}

h2{
  color:#0f172a;
  font-size:clamp(30px,4vw,48px);
  line-height:1.08;
  letter-spacing:-.045em;
  margin-bottom:12px;
}

.section-title p{
  color:var(--muted);
  font-size:17px;
}

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

.card{
  position:relative;
  overflow:hidden;
  background:white;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:0 8px 22px rgba(15,23,42,.06);
  transition:.22s ease;
}

.card:before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg,var(--orange),var(--blue));
  opacity:0;
  transition:.22s ease;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.card:hover:before{
  opacity:1;
}

.icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:16px;
  margin-bottom:16px;
  background:#fff7ed;
  color:var(--orange);
  font-size:24px;
}

.card h3{
  font-size:23px;
  line-height:1.15;
  letter-spacing:-.03em;
  margin-bottom:10px;
}

.card p,
.card li{
  color:#475569;
}

.card ul{
  padding-left:18px;
  margin:14px 0;
}

.card-link{
  display:inline-flex;
  margin-top:6px;
  font-weight:900;
  color:var(--blue);
}

.dark-section{
  background:#07111f;
  color:white;
}

.dark-section h2{
  color:white;
}

.dark-section .section-title p{
  color:#cbd5e1;
}

.dark-section .card{
  background:#0f1d33;
  border-color:rgba(255,255,255,.10);
}

.dark-section .card h3{
  color:white;
}

.dark-section .card p,
.dark-section .card li{
  color:#cbd5e1;
}

.pill-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.pill-link{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  background:white;
  border:1px solid var(--line);
  color:#0f172a;
  font-weight:900;
  box-shadow:0 6px 14px rgba(15,23,42,.04);
  transition:.2s ease;
}

.pill-link:hover{
  background:#0f172a;
  color:white;
  transform:translateY(-2px);
}

.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:38px;
  border-radius:30px;
  background:
    radial-gradient(circle at 88% 20%, rgba(255,255,255,.24), transparent 28%),
    linear-gradient(135deg,#ff6b18,#1d4ed8);
  color:white;
  box-shadow:0 20px 50px rgba(29,78,216,.22);
}

.cta-band h2{
  color:white;
  margin-bottom:6px;
}

.cta-band p{
  color:#ffedd5;
}

.faq{
  display:grid;
  gap:14px;
}

.faq-item{
  background:white;
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px 22px;
  box-shadow:0 7px 18px rgba(15,23,42,.04);
}

.faq-item h3{
  font-size:18px;
  margin-bottom:6px;
}

.faq-item p{
  color:#475569;
}

.footer{
  background:#07111f;
  color:#cbd5e1;
  padding:52px 0;
  margin-top:30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:26px;
}

.footer h3,
.footer h4{
  color:white;
  margin-bottom:12px;
}

.footer a{
  display:block;
  color:#e2e8f0;
  margin:7px 0;
  font-weight:700;
}

.footer a:hover{
  color:white;
}

.breadcrumb{
  margin-bottom:18px;
  color:#64748b;
  font-weight:800;
}

.breadcrumb a{
  color:var(--blue);
}

.content-page{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:28px;
  align-items:start;
}

.article{
  background:white;
  border:1px solid var(--line);
  border-radius:30px;
  padding:38px;
  box-shadow:0 10px 25px rgba(15,23,42,.05);
}

.article h1{
  font-size:clamp(36px,5vw,58px);
  line-height:1.05;
  letter-spacing:-.055em;
  margin-bottom:18px;
}

.article h2{
  font-size:clamp(26px,3vw,36px);
  margin-top:34px;
}

.article p{
  margin-bottom:14px;
  color:#334155;
}

.sidebar{
  position:sticky;
  top:116px;
}

.side-card{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  margin-bottom:18px;
  box-shadow:0 8px 18px rgba(15,23,42,.05);
}

.side-card h3{
  margin-bottom:12px;
  font-size:20px;
}

.side-card a{
  display:block;
  padding:9px 0;
  color:#1d4ed8;
  font-weight:900;
  border-bottom:1px solid #eef2f7;
}

.side-card a:last-child{
  border-bottom:0;
}

.side-card .btn-primary{
  color:white;
  text-align:center;
  margin-top:12px;
}

.floating-call{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:200;
  display:none;
  background:var(--orange);
  color:white;
  padding:14px 18px;
  border-radius:999px;
  font-weight:900;
  box-shadow:0 16px 34px rgba(249,115,22,.35);
}



/* Images contenu pages services, pages villes et futures pages SEO */
.sgl-content-image{
  max-width:360px;
  margin:40px auto;
}

.sgl-content-image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
  box-shadow:0 8px 24px rgba(15,23,42,.10);
}

.sgl-content-image--wide{
  max-width:520px;
}

.sgl-content-image--small{
  max-width:300px;
}

.sgl-content-image figcaption{
  margin-top:10px;
  text-align:center;
  color:#64748b;
  font-size:14px;
  line-height:1.5;
}

@media(max-width:640px){
  .sgl-content-image,
  .sgl-content-image--wide,
  .sgl-content-image--small{
    max-width:100%;
    margin:30px auto;
  }
}

@media(max-width:980px){
  .menu{display:none}
  .hero-grid,
  .content-page,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .cards{
    grid-template-columns:1fr;
  }
  .stats{
    grid-template-columns:1fr 1fr;
  }
  .sidebar{
    position:static;
  }
}

@media(max-width:640px){
  .container{
    width:min(100% - 28px,1180px);
  }
  .topbar-inner{
    justify-content:center;
    text-align:center;
  }
  .nav{
    min-height:74px;
  }
  .logo{
    font-size:18px;
  }
  .nav-cta{
    padding:0 14px;
    min-height:42px;
  }
  .hero{
    padding:58px 0 48px;
  }
  .hero h1{
    letter-spacing:-.045em;
  }
  .hero p{
    font-size:16px;
  }
  .quick-links{
    grid-template-columns:1fr;
  }
  .stats{
    grid-template-columns:1fr;
  }
  .section{
    padding:52px 0;
  }
  .article{
    padding:26px;
  }
  .cta-band{
    padding:28px;
  }
  .floating-call{
    display:inline-flex;
  }
}
/* V3 additions */
.top-phone,.nav-phone,.footer-phone{font-weight:900;color:inherit}
.nav-actions{display:flex;align-items:center;gap:12px}
.nav-phone{color:#e2e8f0}
.check-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:20px 0 26px}
.check-list span{background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.16);border-radius:14px;padding:10px 12px;font-weight:900;color:#f8fafc}
.hero-phone{display:flex;justify-content:center;align-items:center;margin-top:18px;background:#ff6b18;color:white;border-radius:999px;padding:13px 18px;font-weight:900}
.brand-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.brand-grid a{background:white;border:1px solid #e2e8f0;border-radius:18px;padding:18px;font-weight:900;color:#0f172a;box-shadow:0 8px 18px rgba(15,23,42,.05)}
.brand-grid a:hover{background:#07111f;color:white}
@media(max-width:980px){.nav-phone{display:none}.brand-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.check-list{grid-template-columns:1fr}.brand-grid{grid-template-columns:1fr}.nav-actions{gap:8px}}