
.aplt-insights {
  background: #f5f5f7; /* abu terang ala Apple */
  padding: 140px 24px;
}

.aplt-insights-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aplt-insight {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.aplt-insight:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.aplt-insight h3 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  margin: 0 0 16px;
}

.aplt-insight p {
  font-size: 17px;
  line-height: 1.6;
  color: #424245;
  margin: 0 0 20px;
}

.aplt-link {
  font-size: 17px;
  color: #0071e3;
  text-decoration: none;
  font-weight: 500;
}

.aplt-link:hover {
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 1068px) {
  .aplt-insights-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .aplt-insights {
    padding: 100px 24px;
  }
}

/* Mobile */
@media (max-width: 734px) {
  .aplt-insights {
    padding: 80px 24px;
  }
  .aplt-insights-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .aplt-insight {
    padding: 32px 28px;
  }
}
