.business-plans-tiers__wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.business-plans-tiers__container {
  max-width: 1424px;
  width: 100%;
}

.business-plans-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 cards per row */
  gap: 24px;
  justify-content: center;
  justify-items: center;
  max-width: 1360px;
  margin: 0 auto;
}

.business-plans-tier {
  background: #e8e9e6;
  border-radius: 10px;
  width: 240px;
  text-align: center;
  padding-top: 40px;
  height: 476px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier-icon img {
  max-width: 60px;
  height: auto;
  margin-bottom: 20px;
}

.tier-title {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

.portal-software-button {
  display: inline-block;
  padding: 10px 36px;
  border: 1px solid #007aff;
  border-radius: 30px;
  background: transparemt;
  color: #007aff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.portal-software-button:hover {
  background: #A0AEC0;
  color: #007aff;
  text-decoration: none;.
  transition: all 0.3s ease;
}
@media (max-width: 1560px) {
  .business-plans-tiers {
    overflow: hidden;
  }

}

@media (max-width: 1440px) {
  .business-plans-tiers {
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
  }
}

@media (max-width: 1200px) {
  .business-plans-tiers {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .business-plans-tiers {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-plans-tier {
    width: 90%; 
  }
}

@media (max-width: 600px) {
  .business-plans-tiers {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .business-plans-tier {
    width: 100%;
    padding: 30px 20px;
    height: auto; /* let height adjust automatically */
  }