.features-bar {
  background: var(--darker-bg);
  padding: 12px 0;
}

.features-bar .container {
  max-width: 1200px;
}

.features-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0;
}

.feature-number {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 50px;
  color: var(--gold);
  width: 70px;
  text-align: center;
  line-height: 1;
}

.feature-text {
  width: 220px;
}

.feature-text h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  line-height: 1.4;
}

.feature-text p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  color: var(--white);
  line-height: 1.3;
}

.feature-divider {
  font-size: 30px;
  color: var(--white);
  opacity: 0.5;
  padding: 0 10px;
}

@media (max-width: 1200px) {
  .features-list {
    gap: 15px;
  }

  .feature-text {
    width: 180px;
  }
}

@media (max-width: 1024px) {
  .features-list {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .feature-divider {
    transform: rotate(90deg);
  }
}
