.engagement-section {
  margin: 0 auto;
  padding: 100px 0;
}

/* ── Header ── */
.engagement-header {
  text-align: center;
    margin-bottom: 70px;
}

.engagement-label {
  display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 6px;
    line-height: 28px;
}

.engagement-title {
  font-size: 38px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 6px 0;
    line-height: 54px;
}

.engagement-subtitle {
  font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
    line-height: 28px;
    max-width: 853px;
    width: 100%;
    margin: 0 auto;
    font-weight: 400;
}

/* ── Steps Grid ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
}

/* ── Step ── */
.step-number {
  display: block;
    font-size: 36px;
    font-weight: 600;
    color: #0D5AFF;
    line-height: 48px;
    margin-bottom: 20px;
}

.step-title {
      font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 8px;
    line-height: 28px;
}

.step-text {
  font-size: 14px;
  color: #374151;
  line-height: 23px;
  font-weight: 400;
  margin: 0;
}

/* ── Responsive: Engagement ── */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .engagement-section {
    padding: 56px 20px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 420px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
