
/* DigiTrustly homepage certification process — v1.0 */
#dt-home-process{
  background:#f7fbff;
  border-top:1px solid #dbe7f3;
  border-bottom:1px solid #dbe7f3;
  padding:34px 0 38px;
}
#dt-home-process .dtp-wrap{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
}
#dt-home-process .dtp-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
  margin-bottom:20px;
}
#dt-home-process .dtp-eyebrow{
  margin:0 0 5px;
  color:#146ce5;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
}
#dt-home-process h2{
  margin:0;
  color:#0b2850;
  font-size:30px;
  line-height:1.1;
  letter-spacing:-.02em;
}
#dt-home-process .dtp-price{
  margin:0;
  color:#58708a;
  font-size:14px;
  text-align:right;
}
#dt-home-process .dtp-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:48px;
}
#dt-home-process .dtp-step{
  position:relative;
  min-height:106px;
  padding:18px 20px;
  display:flex;
  align-items:center;
  gap:15px;
  background:#fff;
  border:1px solid #cfdeed;
  border-radius:17px;
  box-shadow:0 8px 22px rgba(9,38,79,.045);
}
#dt-home-process .dtp-step:not(:last-child)::after{
  content:"›";
  position:absolute;
  right:-26px;
  top:50%;
  transform:translate(50%,-50%);
  color:#8da6bf;
  font-size:34px;
  font-weight:900;
}
#dt-home-process .dtp-num{
  flex:0 0 40px;
  width:40px;
  height:40px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#146ce5;
  color:#fff;
  font-size:17px;
  font-weight:900;
}
#dt-home-process .dtp-copy{
  color:#0b2850;
  font-size:16px;
  line-height:1.25;
  font-weight:850;
}
#dt-home-process .dtp-note{
  margin:16px 0 0;
  color:#60758d;
  font-size:13px;
}
@media(max-width:900px){
  #dt-home-process .dtp-grid{grid-template-columns:1fr 1fr;gap:14px}
  #dt-home-process .dtp-step:not(:last-child)::after{display:none}
  #dt-home-process .dtp-head{align-items:start;flex-direction:column}
  #dt-home-process .dtp-price{text-align:left}
}
@media(max-width:560px){
  #dt-home-process .dtp-wrap{width:min(100% - 24px,1180px)}
  #dt-home-process .dtp-grid{grid-template-columns:1fr}
}
