.why-boton-section {
  padding: 6rem 1.5rem;
  color: white;
  background: transparent;
}

.why-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .why-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.why-title {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(to right, #06b6d4, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .why-title {
    font-size: 3rem;
    text-align: left;
  }
}

.why-list {
  border-left: 4px solid #a855f7;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-item {
  position: relative;
  padding-left: 1rem;
}

.why-dot {
  position: absolute;
  top: 0.5rem;
  left: -2.3rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #a855f7;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.8);
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .why-content {
    flex-direction: row;
    align-items: center;
  }
}

.why-content img {
  width: 56px;
  height: 56px;
}

.why-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #d8b4fe;
  margin-bottom: 0.25rem;
}

.why-content p {
  color: #a1a1aa;
  font-size: 0.95rem;
  max-width: 40rem;
}

/* BOT Image */
.why-image {
  display: none;
}

@media (min-width: 1024px) {
  .why-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }

  .why-image img {
    width: 650px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.6));
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
