/* M-000247-J12-F25-B — pages métiers */
.trade-page-main{
  background:#fff;
}

.trade-page-hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:#071f48;
}

.trade-page-hero__media{
  position:absolute;
  inset:0;
}

.trade-page-hero__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(4,24,58,.94) 0%,rgba(4,24,58,.82) 50%,rgba(4,24,58,.38) 100%);
}

.trade-page-hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.trade-page-hero__content{
  position:relative;
  z-index:1;
  min-height:500px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:780px;
  padding-block:96px;
}

.trade-page-breadcrumb{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin:0 0 28px;
  color:rgba(255,255,255,.78);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.trade-page-breadcrumb a{
  color:#fff;
  text-decoration:none;
}

.trade-page-kicker{
  margin:0 0 14px;
  color:#86c95c;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.trade-page-hero h1{
  max-width:760px;
  margin:0;
  font-size:clamp(42px,6vw,72px);
  line-height:.98;
  letter-spacing:-.045em;
}

.trade-page-hero__lead{
  max-width:700px;
  margin:24px 0 0;
  color:rgba(255,255,255,.9);
  font-size:clamp(17px,2vw,21px);
  line-height:1.65;
}

.trade-page-section{
  padding-block:clamp(64px,8vw,108px);
}

.trade-page-section--soft{
  background:#f5f7fa;
}

.trade-page-intro{
  display:grid;
  grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
  gap:clamp(36px,7vw,108px);
  align-items:start;
}

.trade-page-intro__copy{
  color:#4e5c70;
  font-size:19px;
  line-height:1.75;
}

.trade-page-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  margin-top:42px;
}

.trade-page-card{
  min-height:190px;
  padding:28px;
  border:1px solid #dfe5eb;
  border-radius:16px;
  background:#fff;
  box-shadow:0 14px 34px rgba(5,30,65,.055);
}

.trade-page-card h3{
  margin:0 0 12px;
  color:#0c2b5b;
  font-size:20px;
}

.trade-page-card p{
  margin:0;
  color:#627086;
  line-height:1.65;
}

.trade-page-process{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
  margin-top:42px;
  counter-reset:step;
}

.trade-page-step{
  position:relative;
  min-height:230px;
  padding:28px;
  border-radius:16px;
  color:#fff;
  background:#0b2b5c;
}

.trade-page-step__number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  margin-bottom:30px;
  border-radius:50%;
  color:#071f48;
  background:#86c95c;
  font-weight:900;
}

.trade-page-step h3{
  margin:0 0 12px;
  font-size:21px;
}

.trade-page-step p{
  margin:0;
  color:rgba(255,255,255,.76);
  line-height:1.6;
}

.trade-page-standards{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin:38px 0 0;
  padding:0;
  list-style:none;
}

.trade-page-standards li{
  position:relative;
  padding:22px 22px 22px 58px;
  border:1px solid #dfe5eb;
  border-radius:14px;
  color:#33445d;
  background:#fff;
  line-height:1.55;
}

.trade-page-standards li::before{
  content:"✓";
  position:absolute;
  left:20px;
  top:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:25px;
  height:25px;
  border-radius:50%;
  color:#fff;
  background:#5b972f;
  font-weight:900;
}

.trade-page-faq{
  display:grid;
  gap:14px;
  margin-top:40px;
}

.trade-page-faq details{
  border:1px solid #dfe5eb;
  border-radius:14px;
  background:#fff;
}

.trade-page-faq summary{
  cursor:pointer;
  padding:22px 58px 22px 22px;
  color:#0c2b5b;
  font-weight:800;
  list-style:none;
}

.trade-page-faq summary::-webkit-details-marker{
  display:none;
}

.trade-page-faq details p{
  margin:0;
  padding:0 22px 22px;
  color:#627086;
  line-height:1.7;
}

.trade-page-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

@media (max-width:1024px){
  .trade-page-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .trade-page-process{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .trade-page-hero__content{
    min-height:430px;
    padding-block:72px;
  }

  .trade-page-hero__media::after{
    background:linear-gradient(90deg,rgba(4,24,58,.94),rgba(4,24,58,.74));
  }

  .trade-page-intro{
    grid-template-columns:1fr;
    gap:26px;
  }

  .trade-page-grid,
  .trade-page-process,
  .trade-page-standards{
    grid-template-columns:1fr;
  }

  .trade-page-card,
  .trade-page-step{
    min-height:0;
  }
}

@media (max-width:390px){
  .trade-page-hero h1{
    font-size:39px;
  }

  .trade-page-card,
  .trade-page-step{
    padding:22px;
  }
}
