.benefits .container {
  margin-top: 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 60px;

}

.benefit-card {
  padding: 35px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  transition: .35s;

}

.benefit-card:hover {
  transform: translateY(-10px);

}

.icon {
  font-size: 2.5rem;
  margin-bottom: 20px;

}

.comments {
  margin-top: 60px;
}

#comment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: auto;
  align-items: center;

}

#comment-form #name,
#comment-form textarea {
  padding: 18px;
  border-radius: 18px;
  background: #171717;
  color: white;
  border: 1px solid var(--border);
  width: 80%;

}

#comment-form textarea {
  resize: none;
  height: 120px;

}

#comment-form .message {
  color: red;
}

.rating {
  display: flex;
  gap: 25px;

}

.comments-grid {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-bottom: 15px;
  scroll-snap-type: x mandatory;

}

.comment {
  width: 200px;
  scroll-snap-align: center;
  padding: 5px;
  border-radius: 18px;
  background: #1717176a;
  border: 1px solid var(--border);
}



.comment-stars {
  color: #FFD54A;
  font-size: 1.8rem;
  margin-bottom: 0px;

}

.comment-name {
  font-weight: bold;
  padding: 5px 0;

}


.comment p {
  white-space: pre-wrap;
  overflow-wrap: break-word;
  font-weight: 400;
  line-height: 1.6rem;
}




.comments-grid::-webkit-scrollbar {
  display: none;

}