/* ===============================
   FEATURE SECTION (IX PREFIX)
================================ */

.ix-feature-section {
  background: #000000;
  padding-right: 16px;
  padding-bottom: 80px;
  padding-left: 16px;
  font-family: 'Inter', system-ui, sans-serif;
  margin-top: 20px;
}

.ix-feature-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
}

.ix-feature-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.ix-feature-subtitle {
  text-align: center;
  font-size: 15px;
  color: #a3b0c3;
  margin-bottom: 48px;
}

.ix-feature-subtitle span {
  color: #ff6a00;
  font-weight: 600;
}

/* GRID */
.ix-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.ix-feature-card {
  background: #181818;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ix-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
.ix-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.12);
  color: #ff6a00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

/* TEXT */
.ix-feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.ix-feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ix-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  /* GRID JADI 2 KOLOM */
  .ix-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* CARD */
  .ix-feature-item {
    text-align: center;
    padding: 16px 10px;
  }

  /* ICON */
  .ix-feature-icon {
    margin: 0 auto 10px auto;
  }

  /* TEXT */
  .ix-feature-item h3 {
    font-size: 14px;
    text-align: center;
  }

  /* TEXT */
  .ix-feature-card h3 {
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
  }

  .ix-feature-item p {
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
  }
}

