/* ===== Platform / Ecosystem section ===== */

.platform-section {
  background-color: #eef5ff; /* very light blue like screenshot */
}

.platform-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
}


/* Card style */
.platform-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

/* Card heading */
.platform-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

/* Bullet list */
.platform-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #4b5563;
}

.platform-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
}

/* Blue dot bullets */
.platform-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2563eb; /* blue dot */
}

/* Responsive tweak */
@media (max-width: 767.98px) {
  .platform-title {
    font-size: 1.8rem;
  }

  .platform-card {
    padding: 20px 22px;
  }
}
