/* =========================
   POWER BI PAGE
   ========================= */

.pb-hero,
.pb-do,
.pb-method,
.pb-final-cta{
  margin-top:18px;
  border-radius:18px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.pb-hero{
  color:#fff;
}

.pb-hero-overlay{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:center;
  padding:34px 60px;
  min-height:420px;

}

.pb-hero-left h1{
  margin:0 0 34px;
  font-size:56px;
  line-height:1.02;
  font-weight:700;
  text-shadow:0 10px 30px rgba(0,0,0,.35);
}

.pb-hero-left h1 span{
  display:block;
  font-size:32px;
  font-weight:600;
  color:rgba(255,255,255,.95);
}

.pb-lead{
  margin:0 0 10px;
  font-size:22px;
  font-weight:500;
  color:rgba(255,255,255,.92);
  line-height:1.35;
}

.pb-sublead{
  margin:0 0 18px;
  font-size:17px;
  color:rgba(255,255,255,.84);
  font-weight:500;
}

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

.pb-hero-points{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  font-weight:700;
  color:rgba(255,255,255,.92);
}

.pb-hero-right{
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
}

.pb-hero-right img{
  width:100%;
  max-width:560px;
  height:auto;
  display:block;
}

/* Section head */
.pb-section-head{
  text-align:center;
  margin-bottom:20px;
}

.pb-section-head.left{
  text-align:left;
}

.pb-section-head h2{
  margin:0 0 8px;
  font-size:34px;
  font-weight:900;
  color:#103552;
}

.pb-section-head .sub{
  margin:0;
  color:#4f6273;
  font-size:18px;
  font-weight:500;
}

/* Ce que nous faisons */
.pb-do{
  padding:28px 22px 30px;
  background-color:#eef4f8;
}

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

.pb-card{
  background:rgba(255,255,255,.93);
  border:1px solid rgba(11,44,68,.08);
  border-radius:16px;
  padding:18px;
  box-shadow:0 14px 28px rgba(0,0,0,.10);
}

.pb-card h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
  color:#12385a;
}

.pb-card p{
  margin:0;
  color:#4f6273;
  line-height:1.55;
  font-weight:500;
}

/* Exemples de rendus */
.pb-renders{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  align-items:center;

  background:#fff;
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:22px;
}



.pb-renders-left h2{
  margin:0 0 16px;
  font-size:32px;
  font-weight:900;
  color:#103552;
}

.pb-render-card{
  background:#f7f9fb;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(11,44,68,.08);
}

.pb-render-card img{
  width:100%;
  height:auto;
  display:block;
}

.pb-render-caption{
  padding:12px 14px;
  font-weight:800;
  color:#24394d;
}

.pb-renders-right img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
}

/* Méthode */
.pb-method{
  padding:28px 22px 30px;
  background-color:#eef4f8;
}

.pb-method-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:16px;
}

.pb-step{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(11,44,68,.08);
  border-radius:16px;
  padding:16px;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow:0 14px 28px rgba(0,0,0,.08);
}

.pb-step-number{
  width:46px;
  height:46px;
  border-radius:50%;
  flex:0 0 46px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#35a84a,#1e6f2c);
  color:#fff;
  font-size:22px;
  font-weight:900;
  box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.pb-step-text strong{
  display:block;
  color:#153a59;
  font-size:18px;
  font-weight:900;
}

.pb-step-text span{
  display:block;
  color:#4f6273;
  margin-top:4px;
  font-weight:600;
}

/* CTA final */
.pb-final-cta{
  color:#fff;
}

.pb-final-overlay{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:center;
  padding:28px 40px;
  min-height:250px;

}

.pb-final-left h2{
  margin:0 0 10px;
  font-size:30px;
  
  line-height:1.06;
  text-shadow:0 10px 28px rgba(0,0,0,.35);
}

.pb-final-left p{
  margin:0 0 18px;
  color:rgba(255,255,255,.86);
  font-size:18px;
  font-weight:500;
}

.pb-final-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.pb-final-right{
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
}

.pb-final-right img{
  width:100%;
  max-width:460px;
  height:auto;
  display:block;
}

/* Responsive */
@media (max-width: 1000px){
  .pb-hero-overlay,
  .pb-renders,
  .pb-final-overlay{
    grid-template-columns:1fr;
  }

  .pb-cards{
    grid-template-columns:1fr;
  }

  .pb-method-steps{
    grid-template-columns:1fr 1fr;
  }

  .pb-hero-left h1{
    font-size:42px;
  }

  .pb-hero-left h1 span{
    font-size:38px;
  }

  .pb-final-left h2{
    font-size:34px;
  }
}

@media (max-width: 700px){
  .pb-method-steps{
    grid-template-columns:1fr;
  }

  .pb-hero-actions,
  .pb-final-actions,
  .pb-hero-points{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
}