/* HERO bleu centré */
.sd-hero{
  background: var(--brand-blue);
  color:#fff;
  padding:64px 0;
}
.sd-hero h1{
  margin:0;
  text-align:center;
  font-size:30px;
  font-weight:950;
}

/* Intro */
.sd-intro{
  background:#fff;
  padding:56px 0 40px;
}
.sd-intro__row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}
.sd-intro__left{
  display:flex;
  gap:14px;
  align-items:flex-start;
  max-width:720px;
}
.sd-intro__icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(11,99,198,.10);
  color: var(--brand-blue-2);
  flex: 0 0 auto;
  margin-top:2px;
}
.sd-intro__left h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 950;
    line-height: 1.25;
}
.sd-intro__left p {
    margin: 14px 0 0;
    font-size: 17.5px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 560px;
}
.sd-intro__right{
  flex:0 0 auto;
  margin-top:8px;
}

/* Bouton CTA petit (comme capture) */
.sd-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:12px;
  font-weight:900;
  font-size:12px;
  background: var(--brand-green);
  color:#0b1b09;
  border:0;
  box-shadow: 0 10px 20px rgba(139,197,63,.20);
}
.sd-btn:hover{ transform: translateY(-1px); }

/* Bloc axes + image */
.sd-split{
  background:#fff;
  padding:10px 0 54px;
}
.sd-split__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
}

/* Carte gradient */
.axes-card{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(139,197,63,.95) 0%, rgba(11,99,198,.95) 100%);
  padding:22px 22px 16px;
  color:#fff;
  min-height: 330px;
}
.axes-card h3{
  margin:0 0 14px;
  font-size:16px;
  font-weight:950;
}
.axes-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.axes-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,.22);
}
.axes-item:first-child{
  border-top:0;
  padding-top:0;
}
.axes-dot{
  width:18px;
  height:18px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:2px solid rgba(255,255,255,.75);
  margin-top:2px;
  font-size:10px;
}
.axes-txt{
  flex:1;
}
.axes-txt b {
    display: block;
    font-size: 19px;
    font-weight: 950;
    line-height: 1.3;
}
.axes-txt span {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .85);
}

/* Image à droite */
.sd-photo{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid var(--line);
  background:#e5e7eb;
}
.sd-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height: 330px;
}

/* Trust bar (réutilise tes couleurs) */
.trustbar{
  background: var(--brand-blue);
  color:#fff;
  padding:22px 0;
}
.trustbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.trustbar__label{
  font-size:12px;
  font-weight:900;
  opacity:.95;
}
.trustbar__logos{
  display:flex;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
  justify-content:flex-end;
  opacity:.9;
}
.logo-item{
  font-size:12px;
  font-weight:900;
  display:flex;
  align-items:center;
  gap:8px;
}

/* Autres domaines */
.other{
  background: var(--bg);
  padding:56px 0 60px;
}
.other__kicker{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color: var(--brand-blue);
  font-weight:900;
  font-size:12px;
  margin-bottom:10px;
}
.other__bar{
  width:2px;
  height:16px;
  background: var(--brand-green);
}
.other h2{
  margin:0 0 26px;
  text-align:center;
  font-size:28px;
  font-weight:950;
  line-height:1.2;
}

/* grille 3 + 2 centrées comme capture */
.other__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.other__grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
  max-width: 720px;
  margin:16px auto 0;
}
.od-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 14px;
  padding:18px 16px;
  text-align:center;
}
.od-ico{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  margin:0 auto 10px;
}
.od-ico--green{ background: rgba(139,197,63,.18); color:#2d6a1b; }
.od-ico--blue{ background: rgba(11,99,198,.14); color: var(--brand-blue-2); }
.od-card h3 {
    margin: 0 0 6px;
    font-size: 19px;
    font-weight: 950;
    line-height: 1.15;
}
.od-card p {
    margin: 0;
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.6;
}

/* CTA discussion (comme tes pages) */
.cta{
  position:relative;
  min-height:240px;
  overflow:hidden;
}
.cta__img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
}
.cta__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,99,198,.82) 0%, rgba(11,99,198,.35) 100%);
}
.cta__content{
  position:relative;
  min-height:240px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:14px;
  color:#fff;
}
.cta__content h2{
  margin:0;
  font-size:34px;
  font-weight:950;
}

/* Responsive */
@media (max-width: 980px){
  .sd-split__grid{ grid-template-columns: 1fr; }
  .sd-intro__row{ flex-direction:column; align-items:flex-start; }
  .other__grid{ grid-template-columns: repeat(2, 1fr); }
  .other__grid2{ grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 640px){
  .sd-hero h1{ font-size:24px; }
  .other__grid{ grid-template-columns: 1fr; }
}
