.pain {
  padding: 80px 24px;
  background: var(--dark);
  position: relative;
}

.section-label {
  font-family: "Syne", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 10vw, 64px);
  line-height: 1;
  margin-bottom: 32px;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: #c5bfb5;
  transition: border-color 0.2s;
}

.pain-item:hover {
  border-color: rgba(255, 77, 0, 0.3);
}

.pain-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
