/* ============================================
   SECTION: FITUR UNGGULAN
   Palet warna & font ngikutin identitas brand yang
   udah dipake di navbar & hero (navy #3E4D6E, oranye #FF8C00)
   ============================================ */

.features {
  padding: 96px 24px;
  background: #FFF9F0; /* krem lembut, kontras halus sama hero yang biru-gelap */
}

.features-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.features-title {
  font-family: 'Amaranth', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #3E4D6E;
  margin-bottom: 12px;
}

.features-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #555;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(62, 77, 110, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(62, 77, 110, 0.18);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.12);
  color: #FF8C00;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
}

.feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #3E4D6E;
  margin-bottom: 10px;
}

.feature-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-title {
    font-size: 32px;
  }
}
