/* ===== TEAM POWER (НАША СИЛА) ===== */
.tp{
  background:#fff;
  padding: 70px 16px 80px;
  color:#111;
}

.tp__container{
  max-width: 1200px;
  margin: 0 auto;
}

/* breadcrumbs */
.tp-bc{
  display:flex;
  align-items:center;
  justify-content: center;
  gap:10px;
  font-size:14px;
  color:#666;
  margin-bottom: 26px;
}
.tp-bc__link{
  color:#666;
  text-decoration:none;
}
.tp-bc__link:hover{ color:#ff5417; }
.tp-bc__sep{ opacity:.6; }
.tp-bc__current{ color:#ff5417; }
.tp-bc__home{ margin-right:6px; }

/* header */
.tp-head{
  text-align:center;
  position: relative;
  margin-bottom: 42px;
}

.tp-head__kicker{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom: 14px;
}

.tp-head__line{
  width: 54px;
  height: 2px;
  background:#ff5417;
  display:block;
}

.tp-head__brand{
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.tp-head__ghost{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  font-size: clamp(48px, 9vw, 110px);
  font-weight: 800;
  letter-spacing:.06em;
  color:#000;
  opacity:.05;
  user-select:none;
  pointer-events:none;
  white-space:nowrap;
}

.tp-head__title{
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing:.02em;
  margin: 0;
}

/* grid */
.tp-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px 60px;
  align-items:start;
}

/* item */
.tp-item{
  display:flex;
  align-items:flex-end;
  gap: 18px;
}

.tp-item__icon{
  width: 78px;
  height: 78px;
  border-radius: 18px;
  background: linear-gradient(135deg,#ff2a2a,#ff7a00);
  display:grid;
  place-items:center;
  flex: 0 0 78px;
}

.tp-item__icon img{
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.tp-item__num{
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color:#111;
  display:flex;
  align-items:flex-end;
  gap: 10px;
}

.tp-item__dash{
  font-size: 44px;
  font-weight: 700;
  transform: translateY(-2px);
}

.tp-item__label{
  margin-top: 6px;
  font-size: 18px;
  color:#8b97a6;
}

/* ===== RESPONSIVE ===== */

/* ноут/планшет */
@media (max-width: 980px){
  .tp-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 34px;
  }
  .tp-item__num{ font-size: 52px; }
}

/* телефон (как на скрине) */
@media (max-width: 520px){
  .tp{ padding: 56px 14px 70px; }

  .tp-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }

  .tp-item{
    flex-direction: column;
    align-items:center;
    text-align:center;
    gap: 14px;
  }

  .tp-item__icon{
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  .tp-item__num{
    font-size: 48px;
    justify-content:center;
  }

  .tp-item__label{
    font-size: 14px;
  }
  .tp-head__ghost {
    display: none;
  }
}
