.whyme {
  padding: 80px 0;
  background: var(--slate);
  color: #fff;
}
.whyme .section-title,
.whyme .section-sub {
  color: #fff;
}
.whyme-content {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}
.whyme-media {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--green), var(--sky));
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.whyme-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.whyme-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.whyme-list li {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 500;
}

@media (max-width: 860px) {
  .whyme-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .whyme {
    padding: 60px 0;
  }
}