.page-wrapper {
  display: flex;
}

/* MAIN AREA */
.ks-wrapper {
  flex: 1;
  display: flex;
  gap: 60px;
  padding: 60px;
}

/* RADAR PANEL */
.ks-radar {
  width: 380px;
  min-height: 550px;
  background: linear-gradient(180deg, #5a4fa8, #7b4fa6);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.ks-radar canvas {
  max-width: 260px;
}

.ks-btn {
  padding: 12px 40px;
  border-radius: 30px;
  background: linear-gradient(90deg, #35d399, #10b981);
  color: white;
  font-weight: 600;
  text-decoration: none;
}

/* RIGHT SIDE */
.ks-content {
  flex: 1;
}

/* TITLE */
.ks-title {
  text-align: center;
  margin-bottom: 50px;
}

.ks-title span {
  background: linear-gradient(90deg, #35d399, #10b981);
  padding: 12px 40px;
  border-radius: 25px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* GRID */
.ks-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.ks-card {
  background: #0f172a;
  padding: 30px;
  border-radius: 22px;
  color: white;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.ks-card:hover {
  transform: translateY(-6px);
}

.ks-card-header {
  background: #9ca3af;
  padding: 12px;
  text-align: center;
  border-radius: 14px;
  margin-bottom: 20px;
  font-weight: 600;
}

.ks-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ks-card ul li {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.9;
}

.ks-enter {
  text-align: center;
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(90deg, #35d399, #10b981);
  text-decoration: none;
  color: white;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .ks-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .ks-wrapper {
    flex-direction: column;
  }
  .ks-products {
    grid-template-columns: 1fr;
  }
}
