/* HERO */
.page-hero{
  background: var(--brand-blue);
  color:#fff;
  padding:60px 0;
  overflow:hidden;
}
.page-hero__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.page-hero h1{
  margin:0;
  font-size:34px;
  font-weight:900;
}
.page-hero__icon{
  width:190px;
  height:120px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  display:grid;
  place-items:center;
  outline: 3px solid rgba(255,255,255,.12);
}

/* NEWS */
.news{
  background: var(--bg);
  padding:44px 0 46px;
}
.news-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.ncard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
  display:flex;
  flex-direction:column;
}
.ncard__img{
  width:100%;
  height:190px;
  object-fit:cover;
}
.ncard__body{
  padding:18px 18px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height: 280px;
}
.ncard__date{
  font-size:11px;
  font-weight:800;
  color: var(--brand-blue);
}
.ncard__title{
  margin:0;
  font-size:14px;
  font-weight:950;
  line-height:1.25;
}
.ncard__text{
  margin:0;
  font-size:11.5px;
  color: var(--muted);
  line-height:1.75;
}
.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:140px;
  padding:10px 14px;
  border-radius:12px;
  font-weight:900;
  font-size:12px;
  background:#fff;
  border:2px solid transparent;
  margin-top:8px;
}
.btn-outline--blue{ border-color: var(--brand-blue); color:#111827; }
.btn-outline--green{ border-color: var(--brand-green); color:#111827; }
.btn-outline:hover{ transform: translateY(-1px); }

/* EXPERTISE (même design que tes autres pages) */
.expertise{
  background: var(--bg);
  padding:56px 0 60px;
}
.kicker{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.center-kicker{ justify-content:center; }
.kicker__bar{ width:3px; height:16px; background:var(--brand-green); border-radius:99px; }
.kicker__text{ font-size:12px; font-weight:900; color: var(--brand-blue); }
.expertise__title{
  text-align:center;
  margin:10px 0 26px;
  font-size:30px;
  font-weight:950;
}
.expertise__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}
.ecard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px 14px;
  text-align:center;
}
.ecard--active{ box-shadow: var(--shadow); }
.ecard__ico{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  margin:0 auto 10px;
}
.ecard__ico--green{ background:rgba(139,197,63,.18); color:#2d6a1b; }
.ecard__ico--blue{ background:rgba(11,99,198,.14); color:var(--brand-blue-2); }
.ecard h3{ margin:0 0 8px; font-size:13px; font-weight:950; line-height:1.15; }
.ecard p{ margin:0; font-size:11.5px; color:var(--muted); line-height:1.65; }
.expertise__btn{ display:flex; justify-content:center; margin-top:18px; }

/* TRUSTBAR */
.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; 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; }

/* FAQ */
.faq{
  background:#fff;
  padding:56px 0 60px;
}
.faq__kicker{
  color: var(--brand-blue);
  font-weight:900;
  font-size:12px;
  text-align:center;
}
.faq__title{
  margin:10px 0 26px;
  text-align:center;
  font-size:32px;
  font-weight:950;
}
.faq__list{
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq__item{
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq__item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-weight:900;
  font-size:14px;
  color:#0f172a;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__icon{
  width:28px;
  height:28px;
  border-radius:999px;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  color: var(--brand-blue);
  flex:0 0 auto;
}
.faq__content{
  margin-top:12px;
  font-size:12.5px;
  color: var(--muted);
  line-height:1.8;
  max-width: 840px;
}
.faq__item[open] .faq__icon i{ transform: rotate(45deg); }

/* Responsive */
@media (max-width: 980px){
  .news-grid{ grid-template-columns: 1fr; }
  .expertise__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .page-hero__inner{ flex-direction:column; align-items:flex-start; }
  .page-hero__icon{ align-self:flex-end; }
  .expertise__grid{ grid-template-columns: 1fr; }
  .faq__title{ font-size:26px; }
}
