/* Strengths block — стили под rab2 (фон как rb-bg-black, заголовок белый) */
.rb-section.strengths-section {
  padding: 4rem 0;
  background: #000;
}

.strengths-section .strengths-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
}

.strengths-list {
  max-width: 900px;
  margin: 0 auto;
}

.strength-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: #000;
  border-radius: 14px;
  border: 1px solid #fff;
  transition: border-color 0.2s, transform 0.2s;
}

.strength-item:hover {
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateX(6px);
}

.strength-number {
  font-size: 2rem;
  font-weight: 800;
  color: #186AFF;
  flex-shrink: 0;
  min-width: 52px;
  text-align: center;
}

.strength-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: #fff;
  font-weight: 600;
}

.strength-content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  font-size: 0.9375rem;
  margin: 0;
}

.strength-content .highlight {
  color: #635bff;
  font-weight: 700;
}

@media (max-width: 767px) {
  .strength-item {
    flex-direction: column;
    gap: 0.75rem;
  }
  .strength-number {
    font-size: 1.5rem;
    min-width: auto;
  }
}
