/* КОМПОНЕНТ: ПОЧЕМУ ДОВЕРЯЮТ (trust) — общий блок, одинаковый на всех страницах */
.tr{
  --red:#A82319;--red-h:#8E1D14;
  --navy:#323232;
  --muted:#5b6a88;
  --line:#eeeeee;
  --card:#eeeeee;
  background:#fff;
  padding:64px 0;
  font-family:Inter,sans-serif;
}
.tr__wrap{width:100%;max-width:1280px;margin:0 auto;padding:0 40px}
.tr__layout{display:grid;grid-template-columns:300px 1fr;gap:40px;align-items:stretch}
.tr__photo{border-radius:20px;overflow:hidden;background:#f4f4f4;height:100%;min-height:340px}
.tr__photo img{width:100%;height:100%;object-fit:cover;display:block}
.tr__photo-ph{display:flex;flex-direction:column;align-items:center;gap:12px;color:#9a9a9a;padding:24px;text-align:center}
.tr__photo-ph span{font-size:12px;line-height:1.5}
.tr__photo-ph b{color:#7a7a7a}
@media(max-width:900px){.tr__layout{grid-template-columns:1fr}.tr__photo{display:none}}

.tr__h2{
  font-size:clamp(24px,2.6vw,36px);
  line-height:1.3;
  color:var(--navy);
  max-width:860px;
  margin-bottom:14px;
}
.tr__h2 strong{font-weight:800}
.tr__h2 span{font-weight:400}

.tr__sub{
  font-size:16px;color:var(--muted);line-height:1.6;
  max-width:100%;margin-bottom:44px;
}

.tr__grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.tr__card{
  background:#fff;
  border:1.5px solid #eeeeee;
  border-radius:16px;
  padding:16px 18px;
  display:flex;
  gap:12px;
  align-items:center;
  box-shadow:0 4px 18px rgba(50,50,50,.13), 0 1px 4px rgba(50,50,50,.07);
  transition:transform .18s ease-out,box-shadow .18s ease-out,border-color .18s ease-out;
}
.tr__card:hover{
  transform:translateY(-4px);
  border-color:#eeeeee;
  box-shadow:0 14px 32px rgba(50,50,50,.16),0 2px 8px rgba(50,50,50,.08);
}
.tr__card:hover .tr__icon,.tr__card:hover .tr__stat{
  transform:scale(1.08);
}
.tr__icon{
  flex:none;
  width:84px;height:84px;
  display:flex;align-items:center;justify-content:center;
  margin-top:1px;
  transition:transform .18s ease-out;
}
.tr__icon img{width:100%;height:100%;object-fit:contain;border-radius:50%}
.tr__stat{
  flex:none;
  width:42px;height:42px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  margin-top:1px;
  background:rgba(50,50,50,.06);
  border-radius:14px;
  transition:transform .18s ease-out;
}
.tr__stat-num{font-size:19px;font-weight:800;color:var(--red);line-height:1}
.tr__stat-label{font-size:9.5px;font-weight:700;color:var(--red);line-height:1;margin-top:2px;text-transform:lowercase}
.tr__body{}
.tr__title{
  font-size:15px;font-weight:700;color:var(--navy);
  margin-bottom:4px;line-height:1.25;
}
.tr__text{
  font-size:13px;color:var(--muted);line-height:1.55;
}

@media(max-width:1000px){
  .tr__grid{grid-template-columns:1fr 1fr}
}

@media(max-width:860px){
  .tr__wrap{padding:0 20px}
  .tr__grid{grid-template-columns:1fr 1fr}
}
@media(max-width:560px){
  .tr{padding:52px 0}
  .tr__grid{grid-template-columns:1fr}
}
