/* ======================================
   PAGES CSS – KHUSUS KONTEN HALAMAN
====================================== */

/* === CONTAINER UMUM === */
.mi-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* === HERO UMUM === */
.mi-hero {
  background: #111827;
  color: #ffffff;
  padding: 120px 0;
}

.mi-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.mi-hero p {
  max-width: 720px;
}

/* === SECTION === */
.mi-section {
  padding: 80px 0;
}

.mi-light {
  background: #f9fafb;
}

/* === GRID === */
.mi-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .mi-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* === CARD === */
.mi-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: #0f172a;
  transition: all .25s ease;
}

.mi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* === ICON DALAM CARD === */
.mi-card i {
  font-size: 34px;
  color: #2563eb;
  margin-bottom: 16px;
  display: block;
}

/* === EXPERT === */
.expert-card {
  text-align: center;
  padding: 28px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
}

.expert-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

/* === CLIENTS === */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.mi-card i {
  font-size: 36px;
  color: #2563eb;
  margin-bottom: 18px;
  display: block;
}

.mi-card:hover i {
  color: #0f172a;
}
