.solutions-section {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0;
  overflow: hidden;
  background: #fafbfa;
}

@keyframes slideRight {
  from {
    transform: translate(-50%, -50%) translateX(-200px);
  }
  to {
    transform: translate(-50%, -50%) translateX(0);
  }
}

.solutions-bg-text {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 12vw;
  color: #e9f0ee;
  font-weight: bolder;
  letter-spacing: 0.1em;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  /* No transform or animation here, JS will handle it */
}

.solutions-content {
  position: relative;
  z-index: 2;
  font-size: 2.2rem;
  text-align: center;
  max-width: 900px;
  color: #222;
  font-weight: 400;
}

.solutions-content .highlight {
  color: #12a89d;
  font-weight: 700;
}

.solutions-content .italic {
  font-style: italic;
}

.solutions-lighter{
  font-weight: 100;

}