.what-title {
  font-size: 28px;
  letter-spacing: 2px;
  font-weight: 700;
}

.what-subtitle {
  font-size: 20px;
  font-weight: 500;
  max-width: 700px;
}

.what-image {
  position: relative;
  width: 90%;
  padding-top: 90%; /* 1:1 */
  transition: transform 0.6s ease;
}

.what-image img {
  position: absolute;
  inset: 0;
  width: 90%;
  height: 90%;
  object-fit: cover;
  transition: transform 0.5s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20);
}
/*
.what-item:hover .what-image img {
  transform: scale(1.05);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}*/

.image-title {
  position: absolute;
  top: 0;
  left: 0;

  width: 90%;
  padding: 14px 20px;

  background: rgba(255, 255, 255, 0.6); /* putih transparan 60% */
  backdrop-filter: blur(2px); /* opsional */

  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
 
}


.what-content {
  display: flex;
  gap: 15px; /* sebelumnya 30px */
  align-items: flex-start;
}


.what-number {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  min-width: 70px;

  color: rgba(0, 0, 0, 0.8); /* watermark */
  position: relative;
  top: -6px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
 
}



.what-text p {
  font-size: 24px;
  line-height: 1.6;
  max-width: 620px;
}

.what-text ul {
     font-size: 18px;
  padding-left: 26px;
  margin-top: 15px;
}

.what-text li {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .what-number {
    font-size: 48px;
  }

    .what-item .col-lg-4 {
    justify-content: center;
  }

.what-image {
  max-width: 400px;   /* aman di mobile */
  width: 100%;
}

}

